
    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_47cae63de7dd8df223dca2f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_64e98ced1bf386158aa9f2b1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_079d609bbe2d33493efc6751.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_95a69d4a839a486a50b37716.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_26c241234f63b950ff890ebb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.173340;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_ce898e303a27b84a03bd3859.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_af02a38a274c51a268f9e8dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.800000px;}
.v1{vertical-align:52.015800px;}
.v3{vertical-align:57.600000px;}
.ls1{letter-spacing:-2.520000px;}
.ls2{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003600px;}
.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;}
}
.ws10d{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.760000px;}
.ws1{word-spacing:-11.634000px;}
.wsc9{word-spacing:-5.184000px;}
.ws1c{word-spacing:-5.040000px;}
.ws38{word-spacing:-4.848000px;}
.ws63{word-spacing:-4.512000px;}
.ws5e{word-spacing:-4.176000px;}
.ws32{word-spacing:-4.050000px;}
.wsfc{word-spacing:-3.888000px;}
.ws4c{word-spacing:-3.792000px;}
.ws9e{word-spacing:-3.552000px;}
.ws41{word-spacing:-3.504000px;}
.ws9d{word-spacing:-3.408000px;}
.ws68{word-spacing:-3.360000px;}
.wsd0{word-spacing:-3.216000px;}
.wsd7{word-spacing:-2.640000px;}
.wsbb{word-spacing:-2.448000px;}
.wsf0{word-spacing:-2.400000px;}
.ws8b{word-spacing:-2.352000px;}
.ws79{word-spacing:-2.304000px;}
.wsf2{word-spacing:-2.208000px;}
.wsa4{word-spacing:-2.112000px;}
.ws23{word-spacing:-2.070000px;}
.ws5b{word-spacing:-2.064000px;}
.ws106{word-spacing:-1.920000px;}
.ws3e{word-spacing:-1.872000px;}
.ws22{word-spacing:-1.845000px;}
.ws47{word-spacing:-1.824000px;}
.wsf9{word-spacing:-1.728000px;}
.wsee{word-spacing:-1.632000px;}
.ws112{word-spacing:-1.554000px;}
.wsdc{word-spacing:-1.536000px;}
.wsdb{word-spacing:-1.488000px;}
.wsec{word-spacing:-1.392000px;}
.ws37{word-spacing:-1.296000px;}
.wsc7{word-spacing:-1.248000px;}
.ws85{word-spacing:-1.200000px;}
.ws5f{word-spacing:-1.152000px;}
.wseb{word-spacing:-1.104000px;}
.wsc2{word-spacing:-1.008000px;}
.ws86{word-spacing:-0.960000px;}
.wsfb{word-spacing:-0.912000px;}
.ws4d{word-spacing:-0.864000px;}
.wsdf{word-spacing:-0.816000px;}
.ws31{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.672000px;}
.ws8a{word-spacing:-0.576000px;}
.ws81{word-spacing:-0.528000px;}
.ws113{word-spacing:-0.504000px;}
.ws4b{word-spacing:-0.480000px;}
.wsf8{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.405000px;}
.ws24{word-spacing:-0.360000px;}
.wsd8{word-spacing:-0.288000px;}
.ws3d{word-spacing:-0.192000px;}
.ws8c{word-spacing:-0.096000px;}
.ws2{word-spacing:0.000000px;}
.ws8e{word-spacing:0.144000px;}
.wsf4{word-spacing:0.192000px;}
.wsb3{word-spacing:0.240000px;}
.ws55{word-spacing:0.288000px;}
.ws7d{word-spacing:0.384000px;}
.ws80{word-spacing:0.432000px;}
.ws66{word-spacing:0.480000px;}
.ws2d{word-spacing:0.495000px;}
.ws40{word-spacing:0.528000px;}
.ws89{word-spacing:0.576000px;}
.ws3c{word-spacing:0.624000px;}
.wsa7{word-spacing:0.672000px;}
.ws110{word-spacing:0.714000px;}
.ws67{word-spacing:0.768000px;}
.wsaa{word-spacing:0.816000px;}
.wsdd{word-spacing:0.864000px;}
.ws44{word-spacing:0.912000px;}
.wsef{word-spacing:0.960000px;}
.ws8d{word-spacing:1.008000px;}
.ws50{word-spacing:1.056000px;}
.ws91{word-spacing:1.200000px;}
.ws56{word-spacing:1.248000px;}
.wsb6{word-spacing:1.296000px;}
.ws53{word-spacing:1.344000px;}
.wsb{word-spacing:1.395000px;}
.ws62{word-spacing:1.440000px;}
.ws1b{word-spacing:1.485000px;}
.wsc1{word-spacing:1.488000px;}
.ws87{word-spacing:1.584000px;}
.wse9{word-spacing:1.632000px;}
.ws5c{word-spacing:1.776000px;}
.ws3a{word-spacing:1.824000px;}
.ws59{word-spacing:1.872000px;}
.wsb7{word-spacing:1.920000px;}
.wsd6{word-spacing:1.968000px;}
.wse3{word-spacing:2.256000px;}
.ws10f{word-spacing:2.268000px;}
.ws60{word-spacing:2.304000px;}
.ws7a{word-spacing:2.352000px;}
.ws6b{word-spacing:2.400000px;}
.wsf5{word-spacing:2.448000px;}
.ws13{word-spacing:2.475000px;}
.ws36{word-spacing:2.496000px;}
.ws34{word-spacing:2.520000px;}
.wsc8{word-spacing:2.544000px;}
.ws4f{word-spacing:2.592000px;}
.wse4{word-spacing:2.640000px;}
.wsa1{word-spacing:2.688000px;}
.ws3f{word-spacing:2.784000px;}
.ws58{word-spacing:2.832000px;}
.wsc{word-spacing:2.925000px;}
.ws57{word-spacing:2.928000px;}
.wsc6{word-spacing:2.976000px;}
.wsf7{word-spacing:3.072000px;}
.ws96{word-spacing:3.120000px;}
.wsc0{word-spacing:3.216000px;}
.ws78{word-spacing:3.264000px;}
.ws7c{word-spacing:3.312000px;}
.wsc4{word-spacing:3.360000px;}
.ws64{word-spacing:3.408000px;}
.ws10{word-spacing:3.420000px;}
.ws39{word-spacing:3.456000px;}
.ws65{word-spacing:3.504000px;}
.ws35{word-spacing:3.552000px;}
.wsc5{word-spacing:3.600000px;}
.ws69{word-spacing:3.648000px;}
.ws46{word-spacing:3.696000px;}
.ws42{word-spacing:3.744000px;}
.ws101{word-spacing:3.792000px;}
.wscd{word-spacing:3.840000px;}
.wsd{word-spacing:3.870000px;}
.wsd5{word-spacing:3.888000px;}
.wsa8{word-spacing:3.984000px;}
.ws107{word-spacing:4.080000px;}
.wsea{word-spacing:4.128000px;}
.ws43{word-spacing:4.176000px;}
.wsa0{word-spacing:4.272000px;}
.wsa3{word-spacing:4.320000px;}
.wse0{word-spacing:4.416000px;}
.ws45{word-spacing:4.512000px;}
.wse8{word-spacing:4.608000px;}
.ws51{word-spacing:4.752000px;}
.wsbc{word-spacing:4.800000px;}
.ws7b{word-spacing:4.848000px;}
.ws88{word-spacing:4.896000px;}
.wsbd{word-spacing:4.944000px;}
.ws54{word-spacing:5.040000px;}
.ws97{word-spacing:5.088000px;}
.ws108{word-spacing:5.136000px;}
.ws5a{word-spacing:5.184000px;}
.wscf{word-spacing:5.328000px;}
.wsa5{word-spacing:5.376000px;}
.wse7{word-spacing:5.472000px;}
.ws9c{word-spacing:5.568000px;}
.wsf6{word-spacing:5.616000px;}
.ws29{word-spacing:5.670000px;}
.wsba{word-spacing:5.712000px;}
.wsca{word-spacing:5.904000px;}
.wsf3{word-spacing:5.952000px;}
.wsa6{word-spacing:6.000000px;}
.ws6c{word-spacing:6.096000px;}
.wsc3{word-spacing:6.192000px;}
.wsb1{word-spacing:6.336000px;}
.ws84{word-spacing:6.384000px;}
.wsac{word-spacing:6.432000px;}
.ws19{word-spacing:6.435000px;}
.ws102{word-spacing:6.528000px;}
.wsb9{word-spacing:6.672000px;}
.ws10b{word-spacing:6.720000px;}
.wsa2{word-spacing:6.816000px;}
.ws48{word-spacing:6.960000px;}
.ws7e{word-spacing:7.056000px;}
.ws27{word-spacing:7.065000px;}
.ws109{word-spacing:7.248000px;}
.ws61{word-spacing:7.344000px;}
.ws105{word-spacing:7.440000px;}
.wsbe{word-spacing:7.488000px;}
.wsa9{word-spacing:7.536000px;}
.ws1a{word-spacing:7.740000px;}
.wsbf{word-spacing:7.824000px;}
.ws99{word-spacing:7.872000px;}
.ws10e{word-spacing:7.896000px;}
.wsd9{word-spacing:7.968000px;}
.ws6d{word-spacing:8.016000px;}
.ws52{word-spacing:8.064000px;}
.ws4a{word-spacing:8.112000px;}
.wse1{word-spacing:8.256000px;}
.ws9b{word-spacing:8.304000px;}
.ws111{word-spacing:8.316000px;}
.wsed{word-spacing:8.352000px;}
.wsce{word-spacing:8.400000px;}
.ws49{word-spacing:8.544000px;}
.ws7f{word-spacing:8.592000px;}
.wsb8{word-spacing:8.640000px;}
.wse5{word-spacing:8.736000px;}
.ws30{word-spacing:8.775000px;}
.wsfd{word-spacing:8.832000px;}
.ws11{word-spacing:8.865000px;}
.wsa{word-spacing:9.315000px;}
.ws9a{word-spacing:9.408000px;}
.ws77{word-spacing:9.552000px;}
.ws15{word-spacing:9.720000px;}
.ws14{word-spacing:9.855000px;}
.wsb4{word-spacing:9.936000px;}
.ws100{word-spacing:10.080000px;}
.ws3b{word-spacing:10.128000px;}
.ws98{word-spacing:10.368000px;}
.wscc{word-spacing:10.464000px;}
.ws2a{word-spacing:10.575000px;}
.wsab{word-spacing:10.992000px;}
.ws104{word-spacing:11.136000px;}
.ws2e{word-spacing:11.340000px;}
.wsb5{word-spacing:11.520000px;}
.wsfa{word-spacing:11.568000px;}
.wsff{word-spacing:11.760000px;}
.wsda{word-spacing:11.808000px;}
.wscb{word-spacing:12.192000px;}
.ws10c{word-spacing:12.480000px;}
.ws12{word-spacing:12.870000px;}
.ws2f{word-spacing:13.455000px;}
.wsf1{word-spacing:13.968000px;}
.wsfe{word-spacing:14.016000px;}
.wsb0{word-spacing:14.160000px;}
.ws9f{word-spacing:14.208000px;}
.ws5d{word-spacing:14.352000px;}
.ws28{word-spacing:14.625000px;}
.ws4e{word-spacing:14.688000px;}
.wse6{word-spacing:14.832000px;}
.ws8f{word-spacing:14.928000px;}
.ws6e{word-spacing:15.024000px;}
.wse{word-spacing:15.660000px;}
.wsde{word-spacing:15.696000px;}
.wsb2{word-spacing:16.080000px;}
.ws10a{word-spacing:16.944000px;}
.ws21{word-spacing:17.280000px;}
.ws90{word-spacing:17.520000px;}
.ws18{word-spacing:17.910000px;}
.ws1f{word-spacing:19.575000px;}
.ws1d{word-spacing:20.745000px;}
.ws5{word-spacing:21.150000px;}
.ws8{word-spacing:22.095000px;}
.ws6{word-spacing:22.185000px;}
.ws7{word-spacing:22.230000px;}
.ws2b{word-spacing:22.770000px;}
.ws33{word-spacing:23.940000px;}
.ws26{word-spacing:24.075000px;}
.ws1e{word-spacing:25.110000px;}
.ws4{word-spacing:26.685000px;}
.ws17{word-spacing:27.045000px;}
.ws2c{word-spacing:27.090000px;}
.ws9{word-spacing:29.565000px;}
.ws16{word-spacing:32.400000px;}
.ws3{word-spacing:40.860000px;}
.ws20{word-spacing:40.950000px;}
.wsf{word-spacing:46.755000px;}
.wsd1{word-spacing:116.236800px;}
.wsad{word-spacing:239.665200px;}
.ws70{word-spacing:244.062000px;}
.ws71{word-spacing:251.255400px;}
.wse2{word-spacing:255.947400px;}
.wsae{word-spacing:258.721800px;}
.ws75{word-spacing:295.227600px;}
.ws94{word-spacing:318.985800px;}
.ws95{word-spacing:339.103200px;}
.ws6f{word-spacing:358.666800px;}
.ws76{word-spacing:376.732200px;}
.wsd2{word-spacing:390.853800px;}
.ws92{word-spacing:391.254600px;}
.ws82{word-spacing:413.845800px;}
.wsd3{word-spacing:432.575400px;}
.wsd4{word-spacing:454.528800px;}
.ws93{word-spacing:464.286000px;}
.ws72{word-spacing:484.251000px;}
.ws73{word-spacing:555.273000px;}
.wsaf{word-spacing:592.978200px;}
.ws83{word-spacing:647.416800px;}
.ws103{word-spacing:795.295800px;}
.ws74{word-spacing:805.077000px;}
._40{margin-left:-9.549600px;}
._3a{margin-left:-8.368200px;}
._35{margin-left:-5.066400px;}
._13{margin-left:-3.228000px;}
._0{margin-left:-2.196000px;}
._7{margin-left:-1.075200px;}
._4{width:1.341000px;}
._6{width:2.406000px;}
._8{width:3.541200px;}
._a{width:5.025600px;}
._5{width:6.489600px;}
._b{width:7.939200px;}
._2{width:9.202500px;}
._9{width:10.362300px;}
._14{width:11.884800px;}
._1{width:13.986000px;}
._3{width:15.129000px;}
._39{width:16.348800px;}
._1d{width:77.323200px;}
._3e{width:128.095800px;}
._1a{width:136.963200px;}
._24{width:149.106600px;}
._18{width:157.188000px;}
._e{width:160.781400px;}
._d{width:162.593400px;}
._f{width:172.730400px;}
._c{width:174.012000px;}
._22{width:184.656600px;}
._1b{width:194.611800px;}
._1c{width:209.295000px;}
._15{width:213.400800px;}
._19{width:231.163800px;}
._3b{width:293.215800px;}
._37{width:298.933800px;}
._31{width:305.744400px;}
._38{width:314.172600px;}
._2c{width:324.924000px;}
._32{width:326.931600px;}
._3f{width:337.375800px;}
._1f{width:340.592400px;}
._2f{width:348.580800px;}
._1e{width:368.617200px;}
._23{width:370.464000px;}
._16{width:389.904000px;}
._36{width:395.059800px;}
._30{width:407.856600px;}
._29{width:420.017400px;}
._11{width:429.739800px;}
._26{width:431.169600px;}
._2b{width:432.513000px;}
._25{width:435.146400px;}
._34{width:448.497000px;}
._2a{width:452.890800px;}
._28{width:459.105000px;}
._33{width:468.875400px;}
._2e{width:472.401000px;}
._27{width:479.482800px;}
._2d{width:512.721600px;}
._20{width:516.990000px;}
._17{width:572.497800px;}
._12{width:592.089600px;}
._21{width:611.905800px;}
._3c{width:624.415800px;}
._3d{width:710.815800px;}
._10{width:793.299000px;}
.fc1{color:rgb(150,197,191);}
.fc0{color:rgb(90,87,88);}
.fs6{font-size:24.000000px;}
.fs2{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:23.952750px;}
.y27{bottom:42.519750px;}
.y1e8{bottom:43.070100px;}
.y247{bottom:43.100850px;}
.ya7{bottom:45.283500px;}
.y76{bottom:45.425100px;}
.y274{bottom:45.538650px;}
.y164{bottom:46.455750px;}
.y196{bottom:47.749650px;}
.y26{bottom:48.088500px;}
.y20b{bottom:50.357550px;}
.y21e{bottom:54.250350px;}
.y1e7{bottom:57.470250px;}
.ya6{bottom:59.683500px;}
.y75{bottom:59.825250px;}
.y273{bottom:59.938500px;}
.y25{bottom:60.088500px;}
.y163{bottom:60.855750px;}
.y195{bottom:62.149500px;}
.y20a{bottom:64.757400px;}
.y246{bottom:69.406350px;}
.y1e6{bottom:71.870250px;}
.y24{bottom:72.088500px;}
.ya5{bottom:74.083500px;}
.y74{bottom:74.225250px;}
.y272{bottom:74.338650px;}
.y209{bottom:79.157550px;}
.y21d{bottom:80.258250px;}
.y12c{bottom:82.192800px;}
.y245{bottom:83.806200px;}
.y162{bottom:88.011600px;}
.ya4{bottom:88.483500px;}
.y73{bottom:88.625250px;}
.y271{bottom:88.738650px;}
.y194{bottom:89.305500px;}
.y208{bottom:93.557400px;}
.y12b{bottom:96.592800px;}
.y23{bottom:98.858250px;}
.y1e5{bottom:99.026100px;}
.y29a{bottom:102.302400px;}
.y161{bottom:102.411750px;}
.ya3{bottom:102.883500px;}
.y72{bottom:103.025250px;}
.y193{bottom:103.705500px;}
.y21c{bottom:106.266150px;}
.y207{bottom:107.957550px;}
.ycf{bottom:109.791600px;}
.y244{bottom:110.111850px;}
.y22{bottom:112.358250px;}
.y1e4{bottom:113.426100px;}
.y270{bottom:115.469400px;}
.y299{bottom:116.702400px;}
.y160{bottom:116.811750px;}
.y71{bottom:117.425100px;}
.y192{bottom:118.105500px;}
.ya2{bottom:121.535400px;}
.y206{bottom:122.357550px;}
.y12a{bottom:122.600700px;}
.yce{bottom:122.795550px;}
.y243{bottom:124.511850px;}
.y21{bottom:125.858250px;}
.y1e3{bottom:127.826100px;}
.y298{bottom:129.302400px;}
.y102{bottom:129.627450px;}
.y26f{bottom:129.869250px;}
.y15f{bottom:131.211600px;}
.y70{bottom:131.825250px;}
.y21b{bottom:132.274050px;}
.y191{bottom:132.505500px;}
.y205{bottom:136.757400px;}
.y242{bottom:138.911700px;}
.y20{bottom:139.358250px;}
.y1e2{bottom:142.226100px;}
.y101{bottom:144.027600px;}
.y26e{bottom:144.269250px;}
.y15e{bottom:145.611750px;}
.y6f{bottom:146.225250px;}
.y190{bottom:146.905500px;}
.y129{bottom:148.608450px;}
.y204{bottom:151.157550px;}
.y241{bottom:153.311850px;}
.ya1{bottom:154.587450px;}
.y297{bottom:154.658250px;}
.y1e1{bottom:156.626100px;}
.y1a9{bottom:157.463700px;}
.y21a{bottom:158.281800px;}
.y100{bottom:158.427450px;}
.y26d{bottom:158.669250px;}
.y15d{bottom:160.011600px;}
.y6e{bottom:160.625250px;}
.y18f{bottom:161.305500px;}
.ycd{bottom:161.807400px;}
.y36{bottom:163.358250px;}
.y203{bottom:165.557400px;}
.y296{bottom:167.258250px;}
.ya0{bottom:168.987450px;}
.y1e0{bottom:171.026100px;}
.y1a8{bottom:171.863700px;}
.yff{bottom:172.827450px;}
.y15c{bottom:174.411750px;}
.y6d{bottom:175.025250px;}
.y35{bottom:176.858250px;}
.y240{bottom:179.617350px;}
.y295{bottom:179.858250px;}
.y202{bottom:179.957550px;}
.y128{bottom:180.631500px;}
.y1f{bottom:181.358250px;}
.y219{bottom:184.289700px;}
.y26c{bottom:185.400000px;}
.y1df{bottom:185.426100px;}
.y1a7{bottom:186.263700px;}
.yfe{bottom:187.227600px;}
.y18e{bottom:188.461350px;}
.y15b{bottom:188.811750px;}
.ycc{bottom:188.963250px;}
.y34{bottom:190.358250px;}
.y294{bottom:192.458250px;}
.y6c{bottom:193.677150px;}
.y23f{bottom:194.017350px;}
.y1e{bottom:194.858250px;}
.y9f{bottom:195.505500px;}
.y201{bottom:198.609450px;}
.y26b{bottom:199.800000px;}
.y1de{bottom:199.826100px;}
.yfd{bottom:201.627450px;}
.y18d{bottom:202.861500px;}
.y15a{bottom:203.211600px;}
.y33{bottom:203.858250px;}
.y293{bottom:205.058250px;}
.y1d{bottom:208.358250px;}
.y9e{bottom:209.905500px;}
.y127{bottom:210.735300px;}
.y218{bottom:212.045700px;}
.y26a{bottom:214.200000px;}
.y1dd{bottom:214.226100px;}
.y1a6{bottom:216.367650px;}
.y18c{bottom:217.261350px;}
.y23e{bottom:220.322850px;}
.y1c{bottom:221.858250px;}
.y292{bottom:221.910300px;}
.y126{bottom:225.135300px;}
.y6b{bottom:226.729200px;}
.yfc{bottom:228.783450px;}
.y159{bottom:230.367600px;}
.y18b{bottom:231.661350px;}
.y23d{bottom:234.722850px;}
.y1b{bottom:235.358250px;}
.y9d{bottom:236.423700px;}
.y125{bottom:239.535300px;}
.y269{bottom:240.930750px;}
.y6a{bottom:241.129050px;}
.y1dc{bottom:241.381950px;}
.ycb{bottom:242.127000px;}
.yfb{bottom:243.183450px;}
.y158{bottom:244.767600px;}
.y217{bottom:245.097600px;}
.y18a{bottom:246.061500px;}
.y1a{bottom:248.858250px;}
.y1a5{bottom:248.975550px;}
.y268{bottom:255.330750px;}
.y69{bottom:255.529200px;}
.y1db{bottom:255.781950px;}
.yfa{bottom:257.583450px;}
.y157{bottom:259.167600px;}
.y1b5{bottom:260.165250px;}
.y200{bottom:260.461500px;}
.y23c{bottom:261.028350px;}
.y19{bottom:262.358250px;}
.y9c{bottom:262.941750px;}
.y216{bottom:263.749650px;}
.y124{bottom:266.691300px;}
.yca{bottom:268.134900px;}
.y267{bottom:269.730750px;}
.y68{bottom:269.929200px;}
.y1da{bottom:270.181950px;}
.yf9{bottom:271.983450px;}
.y189{bottom:273.217350px;}
.y156{bottom:273.567600px;}
.y291{bottom:273.614250px;}
.y1b4{bottom:274.565250px;}
.y1ff{bottom:274.861350px;}
.y1a4{bottom:274.983450px;}
.y23b{bottom:275.428350px;}
.y18{bottom:275.858250px;}
.y9b{bottom:277.341750px;}
.y123{bottom:281.091300px;}
.y215{bottom:282.401550px;}
.y67{bottom:284.329200px;}
.y1d9{bottom:284.581950px;}
.yf8{bottom:286.383450px;}
.y188{bottom:287.617350px;}
.y155{bottom:287.967600px;}
.y290{bottom:288.014250px;}
.y1b3{bottom:288.965250px;}
.y1fe{bottom:289.261350px;}
.y17{bottom:289.358250px;}
.y122{bottom:295.491300px;}
.y266{bottom:296.461500px;}
.y66{bottom:298.729200px;}
.y1d8{bottom:298.981950px;}
.yc9{bottom:300.157800px;}
.yf7{bottom:300.783450px;}
.y1a3{bottom:300.991350px;}
.y214{bottom:301.053600px;}
.y23a{bottom:301.733850px;}
.y187{bottom:302.017350px;}
.y154{bottom:302.367600px;}
.y16{bottom:302.858250px;}
.y1b2{bottom:303.365250px;}
.y1fd{bottom:303.661350px;}
.y9a{bottom:303.859800px;}
.y265{bottom:310.861350px;}
.y65{bottom:313.129050px;}
.y28f{bottom:315.170100px;}
.yf6{bottom:315.183450px;}
.y239{bottom:316.133850px;}
.y15{bottom:316.358250px;}
.y186{bottom:316.417350px;}
.y153{bottom:316.767600px;}
.y1d7{bottom:317.634000px;}
.y1b1{bottom:317.765250px;}
.y1fc{bottom:318.061500px;}
.y99{bottom:318.259800px;}
.y213{bottom:319.705500px;}
.y121{bottom:322.647150px;}
.y1a2{bottom:326.999100px;}
.y64{bottom:327.529200px;}
.y28e{bottom:329.570100px;}
.yf5{bottom:329.583450px;}
.y14{bottom:329.858250px;}
.yc8{bottom:330.261750px;}
.y238{bottom:330.533850px;}
.y185{bottom:330.817350px;}
.y152{bottom:331.167600px;}
.y1b0{bottom:332.165250px;}
.y1fb{bottom:332.461500px;}
.y98{bottom:332.659800px;}
.y120{bottom:337.047150px;}
.y264{bottom:337.592100px;}
.y212{bottom:338.357550px;}
.y63{bottom:341.929200px;}
.y13{bottom:343.358250px;}
.y28d{bottom:343.970100px;}
.yc7{bottom:344.661750px;}
.y184{bottom:345.217350px;}
.y151{bottom:345.567600px;}
.y1af{bottom:346.565250px;}
.yf4{bottom:348.235350px;}
.y1d6{bottom:350.685900px;}
.y11f{bottom:351.447150px;}
.y1a1{bottom:353.007000px;}
.y62{bottom:356.329200px;}
.y237{bottom:356.839350px;}
.y12{bottom:356.858250px;}
.y211{bottom:357.009450px;}
.yc6{bottom:359.061750px;}
.y97{bottom:359.178000px;}
.y183{bottom:359.617350px;}
.y150{bottom:359.967600px;}
.y263{bottom:364.322850px;}
.y1d5{bottom:365.085900px;}
.y11e{bottom:365.847150px;}
.y11{bottom:370.358250px;}
.y61{bottom:370.729200px;}
.y28c{bottom:371.125950px;}
.y236{bottom:371.239350px;}
.yc5{bottom:373.461750px;}
.y182{bottom:374.017350px;}
.y210{bottom:375.661350px;}
.y1ae{bottom:376.669200px;}
.y1a0{bottom:379.014900px;}
.y1d4{bottom:379.485900px;}
.y11d{bottom:380.247150px;}
.yf3{bottom:381.287400px;}
.y10{bottom:383.858250px;}
.y60{bottom:385.129050px;}
.y235{bottom:385.639350px;}
.y96{bottom:385.696050px;}
.y14f{bottom:387.123450px;}
.yc4{bottom:387.861750px;}
.y181{bottom:388.417350px;}
.y262{bottom:391.053600px;}
.y11c{bottom:394.647150px;}
.yf2{bottom:395.687400px;}
.yf{bottom:397.358250px;}
.y28b{bottom:398.281950px;}
.y5f{bottom:399.529200px;}
.y14e{bottom:401.523450px;}
.yc3{bottom:402.261750px;}
.y180{bottom:402.817350px;}
.y19f{bottom:405.022800px;}
.y1d3{bottom:406.004100px;}
.y11b{bottom:409.047150px;}
.yf1{bottom:410.087400px;}
.ye{bottom:410.858250px;}
.y234{bottom:411.944850px;}
.y95{bottom:412.214100px;}
.y28a{bottom:412.681950px;}
.y5e{bottom:413.929200px;}
.y1fa{bottom:415.573200px;}
.y14d{bottom:415.923450px;}
.y17f{bottom:417.217350px;}
.y261{bottom:417.784200px;}
.y1d2{bottom:420.404100px;}
.y11a{bottom:423.447150px;}
.yd{bottom:424.358250px;}
.yf0{bottom:424.487400px;}
.y94{bottom:426.614250px;}
.y5d{bottom:428.329200px;}
.y1f9{bottom:429.973200px;}
.y14c{bottom:430.323450px;}
.y19e{bottom:431.030700px;}
.y20f{bottom:431.617350px;}
.yc2{bottom:432.365700px;}
.y1d1{bottom:434.804100px;}
.yc{bottom:437.858250px;}
.y233{bottom:438.250350px;}
.yef{bottom:438.887400px;}
.y289{bottom:439.837800px;}
.y5c{bottom:442.729200px;}
.y17e{bottom:444.373200px;}
.y260{bottom:444.514950px;}
.y1d0{bottom:449.204100px;}
.y119{bottom:450.603000px;}
.yb{bottom:451.358250px;}
.y232{bottom:452.650350px;}
.y93{bottom:453.132300px;}
.yee{bottom:453.287400px;}
.y288{bottom:454.237800px;}
.y19d{bottom:457.038600px;}
.y5b{bottom:457.129050px;}
.y14b{bottom:457.479450px;}
.y17d{bottom:458.773200px;}
.y25f{bottom:458.914950px;}
.y1cf{bottom:463.604100px;}
.ya{bottom:464.858250px;}
.y118{bottom:465.003000px;}
.y231{bottom:467.050350px;}
.yed{bottom:467.687400px;}
.y287{bottom:468.637800px;}
.y5a{bottom:471.529200px;}
.y14a{bottom:471.879450px;}
.y17c{bottom:473.173200px;}
.yc1{bottom:476.030700px;}
.y1ce{bottom:478.004100px;}
.y9{bottom:478.358250px;}
.y117{bottom:479.403150px;}
.y92{bottom:479.650350px;}
.yec{bottom:482.087400px;}
.y19c{bottom:483.046350px;}
.y25e{bottom:485.645700px;}
.y149{bottom:486.279300px;}
.y17b{bottom:487.573200px;}
.y59{bottom:490.181100px;}
.y8{bottom:491.858250px;}
.y1cd{bottom:492.404100px;}
.y230{bottom:493.355850px;}
.y116{bottom:493.803150px;}
.y91{bottom:494.050350px;}
.y286{bottom:495.793650px;}
.yeb{bottom:496.487400px;}
.y25d{bottom:500.045700px;}
.y148{bottom:500.679450px;}
.y17a{bottom:501.973200px;}
.yc0{bottom:502.038600px;}
.y7{bottom:505.358250px;}
.y22f{bottom:507.755850px;}
.y25c{bottom:514.445700px;}
.y1f8{bottom:514.729200px;}
.y19b{bottom:515.069250px;}
.y147{bottom:515.079450px;}
.y179{bottom:516.373200px;}
.y6{bottom:518.858250px;}
.y1cc{bottom:518.922150px;}
.y90{bottom:520.568550px;}
.y115{bottom:520.959000px;}
.y285{bottom:522.949650px;}
.y58{bottom:523.233150px;}
.yea{bottom:526.591350px;}
.ybf{bottom:528.046350px;}
.y1f7{bottom:529.129050px;}
.y146{bottom:529.479450px;}
.y178{bottom:530.773200px;}
.y5{bottom:532.358250px;}
.y1cb{bottom:533.322150px;}
.y22e{bottom:534.061500px;}
.y8f{bottom:534.968550px;}
.y114{bottom:535.359000px;}
.y284{bottom:537.349650px;}
.y57{bottom:537.633150px;}
.y25b{bottom:541.176300px;}
.ybe{bottom:542.446350px;}
.y1f6{bottom:543.529200px;}
.y145{bottom:543.879450px;}
.y177{bottom:545.173200px;}
.y4{bottom:545.858250px;}
.y1ca{bottom:547.722150px;}
.y22d{bottom:548.461500px;}
.y8e{bottom:549.368550px;}
.y113{bottom:549.759000px;}
.y283{bottom:551.749650px;}
.y56{bottom:552.033150px;}
.y25a{bottom:555.576300px;}
.y1f5{bottom:557.929200px;}
.ye9{bottom:558.014250px;}
.y144{bottom:558.279300px;}
.y3{bottom:559.358250px;}
.y176{bottom:559.573200px;}
.y1c9{bottom:562.122150px;}
.y112{bottom:564.159000px;}
.y55{bottom:566.433000px;}
.ybd{bottom:568.454250px;}
.y1f4{bottom:572.329200px;}
.y143{bottom:572.679450px;}
.y2{bottom:572.858250px;}
.y19a{bottom:573.973200px;}
.y22c{bottom:574.766850px;}
.y8d{bottom:575.886600px;}
.y1c8{bottom:576.522150px;}
.y282{bottom:578.905500px;}
.y54{bottom:580.833000px;}
.y259{bottom:582.307050px;}
.ye8{bottom:584.022000px;}
.y175{bottom:586.729200px;}
.y142{bottom:587.079450px;}
.y22b{bottom:589.167000px;}
.y8c{bottom:590.286600px;}
.y1c7{bottom:590.922150px;}
.y111{bottom:591.314850px;}
.y281{bottom:593.305500px;}
.y53{bottom:595.233150px;}
.ybc{bottom:595.610250px;}
.y258{bottom:596.707050px;}
.y37{bottom:598.866150px;}
.y174{bottom:601.129050px;}
.y141{bottom:601.479450px;}
.y8b{bottom:604.686600px;}
.y110{bottom:605.714850px;}
.y1c6{bottom:609.574200px;}
.ybb{bottom:610.010250px;}
.ye4{bottom:610.029900px;}
.y1f3{bottom:613.885050px;}
.y22a{bottom:615.472350px;}
.y173{bottom:615.529200px;}
.y140{bottom:615.879300px;}
.y8a{bottom:619.086600px;}
.y10f{bottom:620.114850px;}
.y280{bottom:620.461350px;}
.y1c5{bottom:621.026100px;}
.y52{bottom:622.389000px;}
.y257{bottom:623.437800px;}
.ye3{bottom:624.429900px;}
.y3b{bottom:628.000950px;}
.y1f2{bottom:628.285050px;}
.y229{bottom:629.872500px;}
.y172{bottom:629.929200px;}
.y89{bottom:633.486600px;}
.y10e{bottom:634.514850px;}
.yba{bottom:636.018000px;}
.ye7{bottom:636.037800px;}
.y51{bottom:636.789000px;}
.y256{bottom:637.837800px;}
.y1f1{bottom:642.685050px;}
.ye6{bottom:643.237800px;}
.y228{bottom:644.272500px;}
.y171{bottom:644.329200px;}
.y13f{bottom:645.983250px;}
.y3a{bottom:646.000950px;}
.y27f{bottom:647.617350px;}
.y88{bottom:647.886600px;}
.yb9{bottom:650.418000px;}
.y50{bottom:651.189000px;}
.y1be{bottom:652.448850px;}
.y1f0{bottom:657.085050px;}
.y170{bottom:658.729200px;}
.y10d{bottom:661.670850px;}
.y87{bottom:662.286600px;}
.y255{bottom:664.568550px;}
.yb8{bottom:664.818000px;}
.y4f{bottom:665.589000px;}
.y1bd{bottom:666.848850px;}
.y227{bottom:670.578000px;}
.y1ef{bottom:671.485050px;}
.y1ad{bottom:671.506950px;}
.y199{bottom:673.129050px;}
.y27e{bottom:674.773200px;}
.y10c{bottom:676.070850px;}
.ye5{bottom:676.445700px;}
.y13c{bottom:677.406150px;}
.y13e{bottom:678.228300px;}
.y254{bottom:678.968550px;}
.y4e{bottom:679.989000px;}
.y1bc{bottom:681.248850px;}
.y39{bottom:682.000950px;}
.y226{bottom:684.978000px;}
.y16f{bottom:685.885050px;}
.y86{bottom:688.804800px;}
.y27d{bottom:689.173200px;}
.y10b{bottom:690.470700px;}
.yb7{bottom:690.825900px;}
.y13a{bottom:691.806150px;}
.y253{bottom:693.368550px;}
.y4d{bottom:694.389000px;}
.y1c4{bottom:697.454250px;}
.y38{bottom:700.000950px;}
.y16e{bottom:700.285050px;}
.y1ac{bottom:701.610900px;}
.ye2{bottom:702.453600px;}
.y85{bottom:703.204800px;}
.y27c{bottom:703.573200px;}
.y10a{bottom:704.870850px;}
.y13d{bottom:705.384150px;}
.y13b{bottom:706.206150px;}
.y252{bottom:707.768550px;}
.y4c{bottom:708.789000px;}
.y225{bottom:711.283500px;}
.y1c3{bottom:711.854250px;}
.y1ee{bottom:713.040900px;}
.y16d{bottom:714.685050px;}
.y1ab{bottom:716.010900px;}
.ye0{bottom:716.853600px;}
.y84{bottom:717.604650px;}
.y109{bottom:719.270850px;}
.yde{bottom:722.657400px;}
.yb6{bottom:722.848800px;}
.y224{bottom:725.683500px;}
.y1ed{bottom:727.440900px;}
.y16c{bottom:729.085050px;}
.y27b{bottom:730.729200px;}
.ye1{bottom:731.253600px;}
.y139{bottom:732.214050px;}
.y32{bottom:733.861950px;}
.y251{bottom:734.499150px;}
.y4b{bottom:735.944850px;}
.ydd{bottom:737.057400px;}
.y1c2{bottom:739.010100px;}
.y138{bottom:739.414050px;}
.y223{bottom:740.083500px;}
.y1ec{bottom:741.840900px;}
.y16b{bottom:743.485050px;}
.y83{bottom:744.122850px;}
.y27a{bottom:745.129050px;}
.y1aa{bottom:746.114850px;}
.y108{bottom:746.426700px;}
.y31{bottom:748.861950px;}
.y4a{bottom:750.344850px;}
.yb5{bottom:752.952750px;}
.y1c1{bottom:753.410100px;}
.y198{bottom:756.240900px;}
.ydf{bottom:757.261350px;}
.y82{bottom:758.522850px;}
.y279{bottom:759.529200px;}
.y107{bottom:760.826700px;}
.y250{bottom:761.229900px;}
.y49{bottom:764.744850px;}
.y222{bottom:766.389000px;}
.yb4{bottom:767.352750px;}
.y1c0{bottom:767.810100px;}
.y20e{bottom:768.996900px;}
.y16a{bottom:770.640900px;}
.y137{bottom:772.621950px;}
.y81{bottom:772.922850px;}
.y106{bottom:775.226700px;}
.y24f{bottom:775.629900px;}
.y48{bottom:779.144850px;}
.y30{bottom:780.061950px;}
.y221{bottom:780.789000px;}
.yb3{bottom:781.752750px;}
.ydc{bottom:783.269250px;}
.y20d{bottom:783.396900px;}
.y169{bottom:785.040900px;}
.y278{bottom:786.685050px;}
.y80{bottom:787.322850px;}
.y105{bottom:789.626700px;}
.y47{bottom:793.544850px;}
.y2f{bottom:793.561950px;}
.yb2{bottom:796.152750px;}
.y20c{bottom:797.796900px;}
.y1bf{bottom:797.810100px;}
.y134{bottom:798.629850px;}
.y168{bottom:799.440900px;}
.y277{bottom:801.085050px;}
.y7f{bottom:801.722850px;}
.y24e{bottom:802.360650px;}
.y104{bottom:804.026700px;}
.y136{bottom:805.829700px;}
.y46{bottom:807.944850px;}
.ydb{bottom:809.277150px;}
.yb1{bottom:810.552750px;}
.y1eb{bottom:812.196900px;}
.y132{bottom:813.029850px;}
.y167{bottom:813.840900px;}
.y276{bottom:815.485050px;}
.y7e{bottom:816.122850px;}
.y24d{bottom:816.760650px;}
.y135{bottom:820.229850px;}
.y2e{bottom:822.061950px;}
.y45{bottom:822.344850px;}
.yda{bottom:823.677150px;}
.y1bb{bottom:823.818000px;}
.yb0{bottom:824.952750px;}
.y1ea{bottom:826.596900px;}
.y133{bottom:827.429850px;}
.y166{bottom:828.240900px;}
.y24c{bottom:831.160650px;}
.y220{bottom:832.492950px;}
.y103{bottom:834.130650px;}
.y44{bottom:836.745000px;}
.y2d{bottom:837.061950px;}
.yaf{bottom:839.352750px;}
.y1e9{bottom:840.996900px;}
.y7d{bottom:842.640900px;}
.yd6{bottom:844.455150px;}
.yd9{bottom:850.833000px;}
.y1ba{bottom:850.973850px;}
.y43{bottom:851.144850px;}
.y131{bottom:853.437750px;}
.yae{bottom:853.752750px;}
.y197{bottom:855.396900px;}
.y7c{bottom:857.041050px;}
.y24b{bottom:857.891400px;}
.y130{bottom:860.637750px;}
.y2c{bottom:862.561950px;}
.yd1{bottom:864.658950px;}
.yd8{bottom:865.233150px;}
.y1b9{bottom:865.374000px;}
.yad{bottom:868.152750px;}
.y165{bottom:869.796900px;}
.y275{bottom:871.440900px;}
.y2b{bottom:877.561950px;}
.y42{bottom:878.300850px;}
.yd0{bottom:879.059100px;}
.yd7{bottom:879.633150px;}
.yac{bottom:882.552750px;}
.y7b{bottom:884.196900px;}
.y24a{bottom:884.622000px;}
.y1b8{bottom:892.529850px;}
.y41{bottom:892.700850px;}
.y12f{bottom:893.845500px;}
.yab{bottom:896.952750px;}
.y7a{bottom:898.596900px;}
.y249{bottom:899.022000px;}
.yd5{bottom:905.640900px;}
.y1b7{bottom:906.929850px;}
.y40{bottom:907.100850px;}
.yaa{bottom:911.352750px;}
.y79{bottom:912.996900px;}
.y248{bottom:913.422150px;}
.y21f{bottom:917.248800px;}
.y2a{bottom:919.186950px;}
.y12e{bottom:919.853550px;}
.yd3{bottom:920.041050px;}
.y3f{bottom:921.500850px;}
.ya9{bottom:925.752750px;}
.y12d{bottom:927.053400px;}
.y78{bottom:927.396900px;}
.y29{bottom:928.186950px;}
.yd4{bottom:934.440900px;}
.y3e{bottom:935.900700px;}
.y1b6{bottom:936.929850px;}
.y28{bottom:937.186950px;}
.ya8{bottom:940.152750px;}
.y3d{bottom:950.300850px;}
.y77{bottom:954.552750px;}
.yd2{bottom:960.448800px;}
.y3c{bottom:968.952750px;}
.h14{height:22.207031px;}
.h6{height:28.089844px;}
.h5{height:33.310547px;}
.h4{height:35.112305px;}
.h13{height:36.000000px;}
.hd{height:37.453125px;}
.h15{height:38.862305px;}
.h3{height:39.304688px;}
.ha{height:40.543945px;}
.h8{height:41.638184px;}
.h2{height:44.414062px;}
.h9{height:46.335938px;}
.hc{height:49.130859px;}
.h7{height:52.127930px;}
.hb{height:57.919922px;}
.hf{height:66.253125px;}
.h11{height:73.214062px;}
.he{height:96.429863px;}
.h12{height:102.013462px;}
.h10{height:102.014063px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:40.765800px;}
.x8{left:63.404550px;}
.x3{left:64.529550px;}
.x5c{left:72.283500px;}
.x52{left:75.786000px;}
.x57{left:77.757600px;}
.x9{left:81.383100px;}
.x21{left:82.710600px;}
.x1c{left:85.470300px;}
.x1f{left:87.626550px;}
.x1b{left:90.272100px;}
.x10{left:91.969500px;}
.xb{left:93.398550px;}
.x18{left:95.684400px;}
.x32{left:96.725850px;}
.x4b{left:98.995350px;}
.x11{left:100.723500px;}
.x16{left:102.525150px;}
.x36{left:106.860450px;}
.x31{left:111.849000px;}
.xe{left:117.779550px;}
.x4a{left:126.100800px;}
.x4c{left:128.072550px;}
.x49{left:130.102800px;}
.xc{left:160.872900px;}
.x4e{left:164.630250px;}
.xf{left:169.071600px;}
.x1d{left:177.826350px;}
.x14{left:192.240450px;}
.x41{left:193.372200px;}
.x33{left:196.121400px;}
.x35{left:198.809700px;}
.x42{left:200.098650px;}
.x40{left:202.395600px;}
.x3d{left:204.601650px;}
.x4d{left:211.654500px;}
.x22{left:213.622800px;}
.xa{left:215.324850px;}
.x53{left:218.553000px;}
.x23{left:224.270850px;}
.x3a{left:228.062550px;}
.x1a{left:233.269800px;}
.x58{left:234.748200px;}
.x34{left:236.990550px;}
.x2c{left:241.696650px;}
.x5a{left:243.361500px;}
.x51{left:246.096000px;}
.x20{left:248.847900px;}
.x48{left:250.309500px;}
.x27{left:251.420250px;}
.x59{left:254.139900px;}
.x50{left:265.666350px;}
.x30{left:270.398700px;}
.x19{left:278.460300px;}
.x54{left:280.551000px;}
.x4f{left:289.194600px;}
.x47{left:316.103850px;}
.x13{left:327.566700px;}
.x43{left:329.975850px;}
.x37{left:333.679050px;}
.x3e{left:344.448450px;}
.x12{left:345.666300px;}
.x5b{left:360.816750px;}
.x3c{left:362.773650px;}
.x2{left:374.923200px;}
.x56{left:412.546200px;}
.x55{left:417.802050px;}
.x2a{left:421.356450px;}
.x2d{left:422.944350px;}
.x28{left:424.013700px;}
.x2e{left:429.181650px;}
.x24{left:432.700200px;}
.x25{left:434.909250px;}
.x26{left:445.042950px;}
.x6{left:446.121000px;}
.x5{left:453.912600px;}
.x17{left:467.599800px;}
.x15{left:472.820550px;}
.x44{left:480.558450px;}
.x45{left:485.231400px;}
.x1e{left:486.339750px;}
.x3b{left:489.918900px;}
.x2b{left:498.354450px;}
.x2f{left:502.022400px;}
.x39{left:508.791900px;}
.x38{left:511.636650px;}
.x29{left:513.928650px;}
.x46{left:530.741100px;}
.x3f{left:545.284050px;}
.x7{left:593.781750px;}
.x1{left:639.103950px;}
.xd{left:640.403250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.600000pt;}
.v1{vertical-align:46.236267pt;}
.v3{vertical-align:51.200000pt;}
.ls1{letter-spacing:-2.240000pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003200pt;}
.ws10d{word-spacing:-11.818667pt;}
.ws0{word-spacing:-10.453333pt;}
.ws1{word-spacing:-10.341333pt;}
.wsc9{word-spacing:-4.608000pt;}
.ws1c{word-spacing:-4.480000pt;}
.ws38{word-spacing:-4.309333pt;}
.ws63{word-spacing:-4.010667pt;}
.ws5e{word-spacing:-3.712000pt;}
.ws32{word-spacing:-3.600000pt;}
.wsfc{word-spacing:-3.456000pt;}
.ws4c{word-spacing:-3.370667pt;}
.ws9e{word-spacing:-3.157333pt;}
.ws41{word-spacing:-3.114667pt;}
.ws9d{word-spacing:-3.029333pt;}
.ws68{word-spacing:-2.986667pt;}
.wsd0{word-spacing:-2.858667pt;}
.wsd7{word-spacing:-2.346667pt;}
.wsbb{word-spacing:-2.176000pt;}
.wsf0{word-spacing:-2.133333pt;}
.ws8b{word-spacing:-2.090667pt;}
.ws79{word-spacing:-2.048000pt;}
.wsf2{word-spacing:-1.962667pt;}
.wsa4{word-spacing:-1.877333pt;}
.ws23{word-spacing:-1.840000pt;}
.ws5b{word-spacing:-1.834667pt;}
.ws106{word-spacing:-1.706667pt;}
.ws3e{word-spacing:-1.664000pt;}
.ws22{word-spacing:-1.640000pt;}
.ws47{word-spacing:-1.621333pt;}
.wsf9{word-spacing:-1.536000pt;}
.wsee{word-spacing:-1.450667pt;}
.ws112{word-spacing:-1.381333pt;}
.wsdc{word-spacing:-1.365333pt;}
.wsdb{word-spacing:-1.322667pt;}
.wsec{word-spacing:-1.237333pt;}
.ws37{word-spacing:-1.152000pt;}
.wsc7{word-spacing:-1.109333pt;}
.ws85{word-spacing:-1.066667pt;}
.ws5f{word-spacing:-1.024000pt;}
.wseb{word-spacing:-0.981333pt;}
.wsc2{word-spacing:-0.896000pt;}
.ws86{word-spacing:-0.853333pt;}
.wsfb{word-spacing:-0.810667pt;}
.ws4d{word-spacing:-0.768000pt;}
.wsdf{word-spacing:-0.725333pt;}
.ws31{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.597333pt;}
.ws8a{word-spacing:-0.512000pt;}
.ws81{word-spacing:-0.469333pt;}
.ws113{word-spacing:-0.448000pt;}
.ws4b{word-spacing:-0.426667pt;}
.wsf8{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.360000pt;}
.ws24{word-spacing:-0.320000pt;}
.wsd8{word-spacing:-0.256000pt;}
.ws3d{word-spacing:-0.170667pt;}
.ws8c{word-spacing:-0.085333pt;}
.ws2{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.128000pt;}
.wsf4{word-spacing:0.170667pt;}
.wsb3{word-spacing:0.213333pt;}
.ws55{word-spacing:0.256000pt;}
.ws7d{word-spacing:0.341333pt;}
.ws80{word-spacing:0.384000pt;}
.ws66{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.440000pt;}
.ws40{word-spacing:0.469333pt;}
.ws89{word-spacing:0.512000pt;}
.ws3c{word-spacing:0.554667pt;}
.wsa7{word-spacing:0.597333pt;}
.ws110{word-spacing:0.634667pt;}
.ws67{word-spacing:0.682667pt;}
.wsaa{word-spacing:0.725333pt;}
.wsdd{word-spacing:0.768000pt;}
.ws44{word-spacing:0.810667pt;}
.wsef{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.896000pt;}
.ws50{word-spacing:0.938667pt;}
.ws91{word-spacing:1.066667pt;}
.ws56{word-spacing:1.109333pt;}
.wsb6{word-spacing:1.152000pt;}
.ws53{word-spacing:1.194667pt;}
.wsb{word-spacing:1.240000pt;}
.ws62{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.320000pt;}
.wsc1{word-spacing:1.322667pt;}
.ws87{word-spacing:1.408000pt;}
.wse9{word-spacing:1.450667pt;}
.ws5c{word-spacing:1.578667pt;}
.ws3a{word-spacing:1.621333pt;}
.ws59{word-spacing:1.664000pt;}
.wsb7{word-spacing:1.706667pt;}
.wsd6{word-spacing:1.749333pt;}
.wse3{word-spacing:2.005333pt;}
.ws10f{word-spacing:2.016000pt;}
.ws60{word-spacing:2.048000pt;}
.ws7a{word-spacing:2.090667pt;}
.ws6b{word-spacing:2.133333pt;}
.wsf5{word-spacing:2.176000pt;}
.ws13{word-spacing:2.200000pt;}
.ws36{word-spacing:2.218667pt;}
.ws34{word-spacing:2.240000pt;}
.wsc8{word-spacing:2.261333pt;}
.ws4f{word-spacing:2.304000pt;}
.wse4{word-spacing:2.346667pt;}
.wsa1{word-spacing:2.389333pt;}
.ws3f{word-spacing:2.474667pt;}
.ws58{word-spacing:2.517333pt;}
.wsc{word-spacing:2.600000pt;}
.ws57{word-spacing:2.602667pt;}
.wsc6{word-spacing:2.645333pt;}
.wsf7{word-spacing:2.730667pt;}
.ws96{word-spacing:2.773333pt;}
.wsc0{word-spacing:2.858667pt;}
.ws78{word-spacing:2.901333pt;}
.ws7c{word-spacing:2.944000pt;}
.wsc4{word-spacing:2.986667pt;}
.ws64{word-spacing:3.029333pt;}
.ws10{word-spacing:3.040000pt;}
.ws39{word-spacing:3.072000pt;}
.ws65{word-spacing:3.114667pt;}
.ws35{word-spacing:3.157333pt;}
.wsc5{word-spacing:3.200000pt;}
.ws69{word-spacing:3.242667pt;}
.ws46{word-spacing:3.285333pt;}
.ws42{word-spacing:3.328000pt;}
.ws101{word-spacing:3.370667pt;}
.wscd{word-spacing:3.413333pt;}
.wsd{word-spacing:3.440000pt;}
.wsd5{word-spacing:3.456000pt;}
.wsa8{word-spacing:3.541333pt;}
.ws107{word-spacing:3.626667pt;}
.wsea{word-spacing:3.669333pt;}
.ws43{word-spacing:3.712000pt;}
.wsa0{word-spacing:3.797333pt;}
.wsa3{word-spacing:3.840000pt;}
.wse0{word-spacing:3.925333pt;}
.ws45{word-spacing:4.010667pt;}
.wse8{word-spacing:4.096000pt;}
.ws51{word-spacing:4.224000pt;}
.wsbc{word-spacing:4.266667pt;}
.ws7b{word-spacing:4.309333pt;}
.ws88{word-spacing:4.352000pt;}
.wsbd{word-spacing:4.394667pt;}
.ws54{word-spacing:4.480000pt;}
.ws97{word-spacing:4.522667pt;}
.ws108{word-spacing:4.565333pt;}
.ws5a{word-spacing:4.608000pt;}
.wscf{word-spacing:4.736000pt;}
.wsa5{word-spacing:4.778667pt;}
.wse7{word-spacing:4.864000pt;}
.ws9c{word-spacing:4.949333pt;}
.wsf6{word-spacing:4.992000pt;}
.ws29{word-spacing:5.040000pt;}
.wsba{word-spacing:5.077333pt;}
.wsca{word-spacing:5.248000pt;}
.wsf3{word-spacing:5.290667pt;}
.wsa6{word-spacing:5.333333pt;}
.ws6c{word-spacing:5.418667pt;}
.wsc3{word-spacing:5.504000pt;}
.wsb1{word-spacing:5.632000pt;}
.ws84{word-spacing:5.674667pt;}
.wsac{word-spacing:5.717333pt;}
.ws19{word-spacing:5.720000pt;}
.ws102{word-spacing:5.802667pt;}
.wsb9{word-spacing:5.930667pt;}
.ws10b{word-spacing:5.973333pt;}
.wsa2{word-spacing:6.058667pt;}
.ws48{word-spacing:6.186667pt;}
.ws7e{word-spacing:6.272000pt;}
.ws27{word-spacing:6.280000pt;}
.ws109{word-spacing:6.442667pt;}
.ws61{word-spacing:6.528000pt;}
.ws105{word-spacing:6.613333pt;}
.wsbe{word-spacing:6.656000pt;}
.wsa9{word-spacing:6.698667pt;}
.ws1a{word-spacing:6.880000pt;}
.wsbf{word-spacing:6.954667pt;}
.ws99{word-spacing:6.997333pt;}
.ws10e{word-spacing:7.018667pt;}
.wsd9{word-spacing:7.082667pt;}
.ws6d{word-spacing:7.125333pt;}
.ws52{word-spacing:7.168000pt;}
.ws4a{word-spacing:7.210667pt;}
.wse1{word-spacing:7.338667pt;}
.ws9b{word-spacing:7.381333pt;}
.ws111{word-spacing:7.392000pt;}
.wsed{word-spacing:7.424000pt;}
.wsce{word-spacing:7.466667pt;}
.ws49{word-spacing:7.594667pt;}
.ws7f{word-spacing:7.637333pt;}
.wsb8{word-spacing:7.680000pt;}
.wse5{word-spacing:7.765333pt;}
.ws30{word-spacing:7.800000pt;}
.wsfd{word-spacing:7.850667pt;}
.ws11{word-spacing:7.880000pt;}
.wsa{word-spacing:8.280000pt;}
.ws9a{word-spacing:8.362667pt;}
.ws77{word-spacing:8.490667pt;}
.ws15{word-spacing:8.640000pt;}
.ws14{word-spacing:8.760000pt;}
.wsb4{word-spacing:8.832000pt;}
.ws100{word-spacing:8.960000pt;}
.ws3b{word-spacing:9.002667pt;}
.ws98{word-spacing:9.216000pt;}
.wscc{word-spacing:9.301333pt;}
.ws2a{word-spacing:9.400000pt;}
.wsab{word-spacing:9.770667pt;}
.ws104{word-spacing:9.898667pt;}
.ws2e{word-spacing:10.080000pt;}
.wsb5{word-spacing:10.240000pt;}
.wsfa{word-spacing:10.282667pt;}
.wsff{word-spacing:10.453333pt;}
.wsda{word-spacing:10.496000pt;}
.wscb{word-spacing:10.837333pt;}
.ws10c{word-spacing:11.093333pt;}
.ws12{word-spacing:11.440000pt;}
.ws2f{word-spacing:11.960000pt;}
.wsf1{word-spacing:12.416000pt;}
.wsfe{word-spacing:12.458667pt;}
.wsb0{word-spacing:12.586667pt;}
.ws9f{word-spacing:12.629333pt;}
.ws5d{word-spacing:12.757333pt;}
.ws28{word-spacing:13.000000pt;}
.ws4e{word-spacing:13.056000pt;}
.wse6{word-spacing:13.184000pt;}
.ws8f{word-spacing:13.269333pt;}
.ws6e{word-spacing:13.354667pt;}
.wse{word-spacing:13.920000pt;}
.wsde{word-spacing:13.952000pt;}
.wsb2{word-spacing:14.293333pt;}
.ws10a{word-spacing:15.061333pt;}
.ws21{word-spacing:15.360000pt;}
.ws90{word-spacing:15.573333pt;}
.ws18{word-spacing:15.920000pt;}
.ws1f{word-spacing:17.400000pt;}
.ws1d{word-spacing:18.440000pt;}
.ws5{word-spacing:18.800000pt;}
.ws8{word-spacing:19.640000pt;}
.ws6{word-spacing:19.720000pt;}
.ws7{word-spacing:19.760000pt;}
.ws2b{word-spacing:20.240000pt;}
.ws33{word-spacing:21.280000pt;}
.ws26{word-spacing:21.400000pt;}
.ws1e{word-spacing:22.320000pt;}
.ws4{word-spacing:23.720000pt;}
.ws17{word-spacing:24.040000pt;}
.ws2c{word-spacing:24.080000pt;}
.ws9{word-spacing:26.280000pt;}
.ws16{word-spacing:28.800000pt;}
.ws3{word-spacing:36.320000pt;}
.ws20{word-spacing:36.400000pt;}
.wsf{word-spacing:41.560000pt;}
.wsd1{word-spacing:103.321600pt;}
.wsad{word-spacing:213.035733pt;}
.ws70{word-spacing:216.944000pt;}
.ws71{word-spacing:223.338133pt;}
.wse2{word-spacing:227.508800pt;}
.wsae{word-spacing:229.974933pt;}
.ws75{word-spacing:262.424533pt;}
.ws94{word-spacing:283.542933pt;}
.ws95{word-spacing:301.425067pt;}
.ws6f{word-spacing:318.814933pt;}
.ws76{word-spacing:334.873067pt;}
.wsd2{word-spacing:347.425600pt;}
.ws92{word-spacing:347.781867pt;}
.ws82{word-spacing:367.862933pt;}
.wsd3{word-spacing:384.511467pt;}
.wsd4{word-spacing:404.025600pt;}
.ws93{word-spacing:412.698667pt;}
.ws72{word-spacing:430.445333pt;}
.ws73{word-spacing:493.576000pt;}
.wsaf{word-spacing:527.091733pt;}
.ws83{word-spacing:575.481600pt;}
.ws103{word-spacing:706.929600pt;}
.ws74{word-spacing:715.624000pt;}
._40{margin-left:-8.488533pt;}
._3a{margin-left:-7.438400pt;}
._35{margin-left:-4.503467pt;}
._13{margin-left:-2.869333pt;}
._0{margin-left:-1.952000pt;}
._7{margin-left:-0.955733pt;}
._4{width:1.192000pt;}
._6{width:2.138667pt;}
._8{width:3.147733pt;}
._a{width:4.467200pt;}
._5{width:5.768533pt;}
._b{width:7.057067pt;}
._2{width:8.180000pt;}
._9{width:9.210933pt;}
._14{width:10.564267pt;}
._1{width:12.432000pt;}
._3{width:13.448000pt;}
._39{width:14.532267pt;}
._1d{width:68.731733pt;}
._3e{width:113.862933pt;}
._1a{width:121.745067pt;}
._24{width:132.539200pt;}
._18{width:139.722667pt;}
._e{width:142.916800pt;}
._d{width:144.527467pt;}
._f{width:153.538133pt;}
._c{width:154.677333pt;}
._22{width:164.139200pt;}
._1b{width:172.988267pt;}
._1c{width:186.040000pt;}
._15{width:189.689600pt;}
._19{width:205.478933pt;}
._3b{width:260.636267pt;}
._37{width:265.718933pt;}
._31{width:271.772800pt;}
._38{width:279.264533pt;}
._2c{width:288.821333pt;}
._32{width:290.605867pt;}
._3f{width:299.889600pt;}
._1f{width:302.748800pt;}
._2f{width:309.849600pt;}
._1e{width:327.659733pt;}
._23{width:329.301333pt;}
._16{width:346.581333pt;}
._36{width:351.164267pt;}
._30{width:362.539200pt;}
._29{width:373.348800pt;}
._11{width:381.990933pt;}
._26{width:383.261867pt;}
._2b{width:384.456000pt;}
._25{width:386.796800pt;}
._34{width:398.664000pt;}
._2a{width:402.569600pt;}
._28{width:408.093333pt;}
._33{width:416.778133pt;}
._2e{width:419.912000pt;}
._27{width:426.206933pt;}
._2d{width:455.752533pt;}
._20{width:459.546667pt;}
._17{width:508.886933pt;}
._12{width:526.301867pt;}
._21{width:543.916267pt;}
._3c{width:555.036267pt;}
._3d{width:631.836267pt;}
._10{width:705.154667pt;}
.fs6{font-size:21.333333pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:21.291333pt;}
.y27{bottom:37.795333pt;}
.y1e8{bottom:38.284533pt;}
.y247{bottom:38.311867pt;}
.ya7{bottom:40.252000pt;}
.y76{bottom:40.377867pt;}
.y274{bottom:40.478800pt;}
.y164{bottom:41.294000pt;}
.y196{bottom:42.444133pt;}
.y26{bottom:42.745333pt;}
.y20b{bottom:44.762267pt;}
.y21e{bottom:48.222533pt;}
.y1e7{bottom:51.084667pt;}
.ya6{bottom:53.052000pt;}
.y75{bottom:53.178000pt;}
.y273{bottom:53.278667pt;}
.y25{bottom:53.412000pt;}
.y163{bottom:54.094000pt;}
.y195{bottom:55.244000pt;}
.y20a{bottom:57.562133pt;}
.y246{bottom:61.694533pt;}
.y1e6{bottom:63.884667pt;}
.y24{bottom:64.078667pt;}
.ya5{bottom:65.852000pt;}
.y74{bottom:65.978000pt;}
.y272{bottom:66.078800pt;}
.y209{bottom:70.362267pt;}
.y21d{bottom:71.340667pt;}
.y12c{bottom:73.060267pt;}
.y245{bottom:74.494400pt;}
.y162{bottom:78.232533pt;}
.ya4{bottom:78.652000pt;}
.y73{bottom:78.778000pt;}
.y271{bottom:78.878800pt;}
.y194{bottom:79.382667pt;}
.y208{bottom:83.162133pt;}
.y12b{bottom:85.860267pt;}
.y23{bottom:87.874000pt;}
.y1e5{bottom:88.023200pt;}
.y29a{bottom:90.935467pt;}
.y161{bottom:91.032667pt;}
.ya3{bottom:91.452000pt;}
.y72{bottom:91.578000pt;}
.y193{bottom:92.182667pt;}
.y21c{bottom:94.458800pt;}
.y207{bottom:95.962267pt;}
.ycf{bottom:97.592533pt;}
.y244{bottom:97.877200pt;}
.y22{bottom:99.874000pt;}
.y1e4{bottom:100.823200pt;}
.y270{bottom:102.639467pt;}
.y299{bottom:103.735467pt;}
.y160{bottom:103.832667pt;}
.y71{bottom:104.377867pt;}
.y192{bottom:104.982667pt;}
.ya2{bottom:108.031467pt;}
.y206{bottom:108.762267pt;}
.y12a{bottom:108.978400pt;}
.yce{bottom:109.151600pt;}
.y243{bottom:110.677200pt;}
.y21{bottom:111.874000pt;}
.y1e3{bottom:113.623200pt;}
.y298{bottom:114.935467pt;}
.y102{bottom:115.224400pt;}
.y26f{bottom:115.439333pt;}
.y15f{bottom:116.632533pt;}
.y70{bottom:117.178000pt;}
.y21b{bottom:117.576933pt;}
.y191{bottom:117.782667pt;}
.y205{bottom:121.562133pt;}
.y242{bottom:123.477067pt;}
.y20{bottom:123.874000pt;}
.y1e2{bottom:126.423200pt;}
.y101{bottom:128.024533pt;}
.y26e{bottom:128.239333pt;}
.y15e{bottom:129.432667pt;}
.y6f{bottom:129.978000pt;}
.y190{bottom:130.582667pt;}
.y129{bottom:132.096400pt;}
.y204{bottom:134.362267pt;}
.y241{bottom:136.277200pt;}
.ya1{bottom:137.411067pt;}
.y297{bottom:137.474000pt;}
.y1e1{bottom:139.223200pt;}
.y1a9{bottom:139.967733pt;}
.y21a{bottom:140.694933pt;}
.y100{bottom:140.824400pt;}
.y26d{bottom:141.039333pt;}
.y15d{bottom:142.232533pt;}
.y6e{bottom:142.778000pt;}
.y18f{bottom:143.382667pt;}
.ycd{bottom:143.828800pt;}
.y36{bottom:145.207333pt;}
.y203{bottom:147.162133pt;}
.y296{bottom:148.674000pt;}
.ya0{bottom:150.211067pt;}
.y1e0{bottom:152.023200pt;}
.y1a8{bottom:152.767733pt;}
.yff{bottom:153.624400pt;}
.y15c{bottom:155.032667pt;}
.y6d{bottom:155.578000pt;}
.y35{bottom:157.207333pt;}
.y240{bottom:159.659867pt;}
.y295{bottom:159.874000pt;}
.y202{bottom:159.962267pt;}
.y128{bottom:160.561333pt;}
.y1f{bottom:161.207333pt;}
.y219{bottom:163.813067pt;}
.y26c{bottom:164.800000pt;}
.y1df{bottom:164.823200pt;}
.y1a7{bottom:165.567733pt;}
.yfe{bottom:166.424533pt;}
.y18e{bottom:167.521200pt;}
.y15b{bottom:167.832667pt;}
.ycc{bottom:167.967333pt;}
.y34{bottom:169.207333pt;}
.y294{bottom:171.074000pt;}
.y6c{bottom:172.157467pt;}
.y23f{bottom:172.459867pt;}
.y1e{bottom:173.207333pt;}
.y9f{bottom:173.782667pt;}
.y201{bottom:176.541733pt;}
.y26b{bottom:177.600000pt;}
.y1de{bottom:177.623200pt;}
.yfd{bottom:179.224400pt;}
.y18d{bottom:180.321333pt;}
.y15a{bottom:180.632533pt;}
.y33{bottom:181.207333pt;}
.y293{bottom:182.274000pt;}
.y1d{bottom:185.207333pt;}
.y9e{bottom:186.582667pt;}
.y127{bottom:187.320267pt;}
.y218{bottom:188.485067pt;}
.y26a{bottom:190.400000pt;}
.y1dd{bottom:190.423200pt;}
.y1a6{bottom:192.326800pt;}
.y18c{bottom:193.121200pt;}
.y23e{bottom:195.842533pt;}
.y1c{bottom:197.207333pt;}
.y292{bottom:197.253600pt;}
.y126{bottom:200.120267pt;}
.y6b{bottom:201.537067pt;}
.yfc{bottom:203.363067pt;}
.y159{bottom:204.771200pt;}
.y18b{bottom:205.921200pt;}
.y23d{bottom:208.642533pt;}
.y1b{bottom:209.207333pt;}
.y9d{bottom:210.154400pt;}
.y125{bottom:212.920267pt;}
.y269{bottom:214.160667pt;}
.y6a{bottom:214.336933pt;}
.y1dc{bottom:214.561733pt;}
.ycb{bottom:215.224000pt;}
.yfb{bottom:216.163067pt;}
.y158{bottom:217.571200pt;}
.y217{bottom:217.864533pt;}
.y18a{bottom:218.721333pt;}
.y1a{bottom:221.207333pt;}
.y1a5{bottom:221.311600pt;}
.y268{bottom:226.960667pt;}
.y69{bottom:227.137067pt;}
.y1db{bottom:227.361733pt;}
.yfa{bottom:228.963067pt;}
.y157{bottom:230.371200pt;}
.y1b5{bottom:231.258000pt;}
.y200{bottom:231.521333pt;}
.y23c{bottom:232.025200pt;}
.y19{bottom:233.207333pt;}
.y9c{bottom:233.726000pt;}
.y216{bottom:234.444133pt;}
.y124{bottom:237.058933pt;}
.yca{bottom:238.342133pt;}
.y267{bottom:239.760667pt;}
.y68{bottom:239.937067pt;}
.y1da{bottom:240.161733pt;}
.yf9{bottom:241.763067pt;}
.y189{bottom:242.859867pt;}
.y156{bottom:243.171200pt;}
.y291{bottom:243.212667pt;}
.y1b4{bottom:244.058000pt;}
.y1ff{bottom:244.321200pt;}
.y1a4{bottom:244.429733pt;}
.y23b{bottom:244.825200pt;}
.y18{bottom:245.207333pt;}
.y9b{bottom:246.526000pt;}
.y123{bottom:249.858933pt;}
.y215{bottom:251.023600pt;}
.y67{bottom:252.737067pt;}
.y1d9{bottom:252.961733pt;}
.yf8{bottom:254.563067pt;}
.y188{bottom:255.659867pt;}
.y155{bottom:255.971200pt;}
.y290{bottom:256.012667pt;}
.y1b3{bottom:256.858000pt;}
.y1fe{bottom:257.121200pt;}
.y17{bottom:257.207333pt;}
.y122{bottom:262.658933pt;}
.y266{bottom:263.521333pt;}
.y66{bottom:265.537067pt;}
.y1d8{bottom:265.761733pt;}
.yc9{bottom:266.806933pt;}
.yf7{bottom:267.363067pt;}
.y1a3{bottom:267.547867pt;}
.y214{bottom:267.603200pt;}
.y23a{bottom:268.207867pt;}
.y187{bottom:268.459867pt;}
.y154{bottom:268.771200pt;}
.y16{bottom:269.207333pt;}
.y1b2{bottom:269.658000pt;}
.y1fd{bottom:269.921200pt;}
.y9a{bottom:270.097600pt;}
.y265{bottom:276.321200pt;}
.y65{bottom:278.336933pt;}
.y28f{bottom:280.151200pt;}
.yf6{bottom:280.163067pt;}
.y239{bottom:281.007867pt;}
.y15{bottom:281.207333pt;}
.y186{bottom:281.259867pt;}
.y153{bottom:281.571200pt;}
.y1d7{bottom:282.341333pt;}
.y1b1{bottom:282.458000pt;}
.y1fc{bottom:282.721333pt;}
.y99{bottom:282.897600pt;}
.y213{bottom:284.182667pt;}
.y121{bottom:286.797467pt;}
.y1a2{bottom:290.665867pt;}
.y64{bottom:291.137067pt;}
.y28e{bottom:292.951200pt;}
.yf5{bottom:292.963067pt;}
.y14{bottom:293.207333pt;}
.yc8{bottom:293.566000pt;}
.y238{bottom:293.807867pt;}
.y185{bottom:294.059867pt;}
.y152{bottom:294.371200pt;}
.y1b0{bottom:295.258000pt;}
.y1fb{bottom:295.521333pt;}
.y98{bottom:295.697600pt;}
.y120{bottom:299.597467pt;}
.y264{bottom:300.081867pt;}
.y212{bottom:300.762267pt;}
.y63{bottom:303.937067pt;}
.y13{bottom:305.207333pt;}
.y28d{bottom:305.751200pt;}
.yc7{bottom:306.366000pt;}
.y184{bottom:306.859867pt;}
.y151{bottom:307.171200pt;}
.y1af{bottom:308.058000pt;}
.yf4{bottom:309.542533pt;}
.y1d6{bottom:311.720800pt;}
.y11f{bottom:312.397467pt;}
.y1a1{bottom:313.784000pt;}
.y62{bottom:316.737067pt;}
.y237{bottom:317.190533pt;}
.y12{bottom:317.207333pt;}
.y211{bottom:317.341733pt;}
.yc6{bottom:319.166000pt;}
.y97{bottom:319.269333pt;}
.y183{bottom:319.659867pt;}
.y150{bottom:319.971200pt;}
.y263{bottom:323.842533pt;}
.y1d5{bottom:324.520800pt;}
.y11e{bottom:325.197467pt;}
.y11{bottom:329.207333pt;}
.y61{bottom:329.537067pt;}
.y28c{bottom:329.889733pt;}
.y236{bottom:329.990533pt;}
.yc5{bottom:331.966000pt;}
.y182{bottom:332.459867pt;}
.y210{bottom:333.921200pt;}
.y1ae{bottom:334.817067pt;}
.y1a0{bottom:336.902133pt;}
.y1d4{bottom:337.320800pt;}
.y11d{bottom:337.997467pt;}
.yf3{bottom:338.922133pt;}
.y10{bottom:341.207333pt;}
.y60{bottom:342.336933pt;}
.y235{bottom:342.790533pt;}
.y96{bottom:342.840933pt;}
.y14f{bottom:344.109733pt;}
.yc4{bottom:344.766000pt;}
.y181{bottom:345.259867pt;}
.y262{bottom:347.603200pt;}
.y11c{bottom:350.797467pt;}
.yf2{bottom:351.722133pt;}
.yf{bottom:353.207333pt;}
.y28b{bottom:354.028400pt;}
.y5f{bottom:355.137067pt;}
.y14e{bottom:356.909733pt;}
.yc3{bottom:357.566000pt;}
.y180{bottom:358.059867pt;}
.y19f{bottom:360.020267pt;}
.y1d3{bottom:360.892533pt;}
.y11b{bottom:363.597467pt;}
.yf1{bottom:364.522133pt;}
.ye{bottom:365.207333pt;}
.y234{bottom:366.173200pt;}
.y95{bottom:366.412533pt;}
.y28a{bottom:366.828400pt;}
.y5e{bottom:367.937067pt;}
.y1fa{bottom:369.398400pt;}
.y14d{bottom:369.709733pt;}
.y17f{bottom:370.859867pt;}
.y261{bottom:371.363733pt;}
.y1d2{bottom:373.692533pt;}
.y11a{bottom:376.397467pt;}
.yd{bottom:377.207333pt;}
.yf0{bottom:377.322133pt;}
.y94{bottom:379.212667pt;}
.y5d{bottom:380.737067pt;}
.y1f9{bottom:382.198400pt;}
.y14c{bottom:382.509733pt;}
.y19e{bottom:383.138400pt;}
.y20f{bottom:383.659867pt;}
.yc2{bottom:384.325067pt;}
.y1d1{bottom:386.492533pt;}
.yc{bottom:389.207333pt;}
.y233{bottom:389.555867pt;}
.yef{bottom:390.122133pt;}
.y289{bottom:390.966933pt;}
.y5c{bottom:393.537067pt;}
.y17e{bottom:394.998400pt;}
.y260{bottom:395.124400pt;}
.y1d0{bottom:399.292533pt;}
.y119{bottom:400.536000pt;}
.yb{bottom:401.207333pt;}
.y232{bottom:402.355867pt;}
.y93{bottom:402.784267pt;}
.yee{bottom:402.922133pt;}
.y288{bottom:403.766933pt;}
.y19d{bottom:406.256533pt;}
.y5b{bottom:406.336933pt;}
.y14b{bottom:406.648400pt;}
.y17d{bottom:407.798400pt;}
.y25f{bottom:407.924400pt;}
.y1cf{bottom:412.092533pt;}
.ya{bottom:413.207333pt;}
.y118{bottom:413.336000pt;}
.y231{bottom:415.155867pt;}
.yed{bottom:415.722133pt;}
.y287{bottom:416.566933pt;}
.y5a{bottom:419.137067pt;}
.y14a{bottom:419.448400pt;}
.y17c{bottom:420.598400pt;}
.yc1{bottom:423.138400pt;}
.y1ce{bottom:424.892533pt;}
.y9{bottom:425.207333pt;}
.y117{bottom:426.136133pt;}
.y92{bottom:426.355867pt;}
.yec{bottom:428.522133pt;}
.y19c{bottom:429.374533pt;}
.y25e{bottom:431.685067pt;}
.y149{bottom:432.248267pt;}
.y17b{bottom:433.398400pt;}
.y59{bottom:435.716533pt;}
.y8{bottom:437.207333pt;}
.y1cd{bottom:437.692533pt;}
.y230{bottom:438.538533pt;}
.y116{bottom:438.936133pt;}
.y91{bottom:439.155867pt;}
.y286{bottom:440.705467pt;}
.yeb{bottom:441.322133pt;}
.y25d{bottom:444.485067pt;}
.y148{bottom:445.048400pt;}
.y17a{bottom:446.198400pt;}
.yc0{bottom:446.256533pt;}
.y7{bottom:449.207333pt;}
.y22f{bottom:451.338533pt;}
.y25c{bottom:457.285067pt;}
.y1f8{bottom:457.537067pt;}
.y19b{bottom:457.839333pt;}
.y147{bottom:457.848400pt;}
.y179{bottom:458.998400pt;}
.y6{bottom:461.207333pt;}
.y1cc{bottom:461.264133pt;}
.y90{bottom:462.727600pt;}
.y115{bottom:463.074667pt;}
.y285{bottom:464.844133pt;}
.y58{bottom:465.096133pt;}
.yea{bottom:468.081200pt;}
.ybf{bottom:469.374533pt;}
.y1f7{bottom:470.336933pt;}
.y146{bottom:470.648400pt;}
.y178{bottom:471.798400pt;}
.y5{bottom:473.207333pt;}
.y1cb{bottom:474.064133pt;}
.y22e{bottom:474.721333pt;}
.y8f{bottom:475.527600pt;}
.y114{bottom:475.874667pt;}
.y284{bottom:477.644133pt;}
.y57{bottom:477.896133pt;}
.y25b{bottom:481.045600pt;}
.ybe{bottom:482.174533pt;}
.y1f6{bottom:483.137067pt;}
.y145{bottom:483.448400pt;}
.y177{bottom:484.598400pt;}
.y4{bottom:485.207333pt;}
.y1ca{bottom:486.864133pt;}
.y22d{bottom:487.521333pt;}
.y8e{bottom:488.327600pt;}
.y113{bottom:488.674667pt;}
.y283{bottom:490.444133pt;}
.y56{bottom:490.696133pt;}
.y25a{bottom:493.845600pt;}
.y1f5{bottom:495.937067pt;}
.ye9{bottom:496.012667pt;}
.y144{bottom:496.248267pt;}
.y3{bottom:497.207333pt;}
.y176{bottom:497.398400pt;}
.y1c9{bottom:499.664133pt;}
.y112{bottom:501.474667pt;}
.y55{bottom:503.496000pt;}
.ybd{bottom:505.292667pt;}
.y1f4{bottom:508.737067pt;}
.y143{bottom:509.048400pt;}
.y2{bottom:509.207333pt;}
.y19a{bottom:510.198400pt;}
.y22c{bottom:510.903867pt;}
.y8d{bottom:511.899200pt;}
.y1c8{bottom:512.464133pt;}
.y282{bottom:514.582667pt;}
.y54{bottom:516.296000pt;}
.y259{bottom:517.606267pt;}
.ye8{bottom:519.130667pt;}
.y175{bottom:521.537067pt;}
.y142{bottom:521.848400pt;}
.y22b{bottom:523.704000pt;}
.y8c{bottom:524.699200pt;}
.y1c7{bottom:525.264133pt;}
.y111{bottom:525.613200pt;}
.y281{bottom:527.382667pt;}
.y53{bottom:529.096133pt;}
.ybc{bottom:529.431333pt;}
.y258{bottom:530.406267pt;}
.y37{bottom:532.325467pt;}
.y174{bottom:534.336933pt;}
.y141{bottom:534.648400pt;}
.y8b{bottom:537.499200pt;}
.y110{bottom:538.413200pt;}
.y1c6{bottom:541.843733pt;}
.ybb{bottom:542.231333pt;}
.ye4{bottom:542.248800pt;}
.y1f3{bottom:545.675600pt;}
.y22a{bottom:547.086533pt;}
.y173{bottom:547.137067pt;}
.y140{bottom:547.448267pt;}
.y8a{bottom:550.299200pt;}
.y10f{bottom:551.213200pt;}
.y280{bottom:551.521200pt;}
.y1c5{bottom:552.023200pt;}
.y52{bottom:553.234667pt;}
.y257{bottom:554.166933pt;}
.ye3{bottom:555.048800pt;}
.y3b{bottom:558.223067pt;}
.y1f2{bottom:558.475600pt;}
.y229{bottom:559.886667pt;}
.y172{bottom:559.937067pt;}
.y89{bottom:563.099200pt;}
.y10e{bottom:564.013200pt;}
.yba{bottom:565.349333pt;}
.ye7{bottom:565.366933pt;}
.y51{bottom:566.034667pt;}
.y256{bottom:566.966933pt;}
.y1f1{bottom:571.275600pt;}
.ye6{bottom:571.766933pt;}
.y228{bottom:572.686667pt;}
.y171{bottom:572.737067pt;}
.y13f{bottom:574.207333pt;}
.y3a{bottom:574.223067pt;}
.y27f{bottom:575.659867pt;}
.y88{bottom:575.899200pt;}
.yb9{bottom:578.149333pt;}
.y50{bottom:578.834667pt;}
.y1be{bottom:579.954533pt;}
.y1f0{bottom:584.075600pt;}
.y170{bottom:585.537067pt;}
.y10d{bottom:588.151867pt;}
.y87{bottom:588.699200pt;}
.y255{bottom:590.727600pt;}
.yb8{bottom:590.949333pt;}
.y4f{bottom:591.634667pt;}
.y1bd{bottom:592.754533pt;}
.y227{bottom:596.069333pt;}
.y1ef{bottom:596.875600pt;}
.y1ad{bottom:596.895067pt;}
.y199{bottom:598.336933pt;}
.y27e{bottom:599.798400pt;}
.y10c{bottom:600.951867pt;}
.ye5{bottom:601.285067pt;}
.y13c{bottom:602.138800pt;}
.y13e{bottom:602.869600pt;}
.y254{bottom:603.527600pt;}
.y4e{bottom:604.434667pt;}
.y1bc{bottom:605.554533pt;}
.y39{bottom:606.223067pt;}
.y226{bottom:608.869333pt;}
.y16f{bottom:609.675600pt;}
.y86{bottom:612.270933pt;}
.y27d{bottom:612.598400pt;}
.y10b{bottom:613.751733pt;}
.yb7{bottom:614.067467pt;}
.y13a{bottom:614.938800pt;}
.y253{bottom:616.327600pt;}
.y4d{bottom:617.234667pt;}
.y1c4{bottom:619.959333pt;}
.y38{bottom:622.223067pt;}
.y16e{bottom:622.475600pt;}
.y1ac{bottom:623.654133pt;}
.ye2{bottom:624.403200pt;}
.y85{bottom:625.070933pt;}
.y27c{bottom:625.398400pt;}
.y10a{bottom:626.551867pt;}
.y13d{bottom:627.008133pt;}
.y13b{bottom:627.738800pt;}
.y252{bottom:629.127600pt;}
.y4c{bottom:630.034667pt;}
.y225{bottom:632.252000pt;}
.y1c3{bottom:632.759333pt;}
.y1ee{bottom:633.814133pt;}
.y16d{bottom:635.275600pt;}
.y1ab{bottom:636.454133pt;}
.ye0{bottom:637.203200pt;}
.y84{bottom:637.870800pt;}
.y109{bottom:639.351867pt;}
.yde{bottom:642.362133pt;}
.yb6{bottom:642.532267pt;}
.y224{bottom:645.052000pt;}
.y1ed{bottom:646.614133pt;}
.y16c{bottom:648.075600pt;}
.y27b{bottom:649.537067pt;}
.ye1{bottom:650.003200pt;}
.y139{bottom:650.856933pt;}
.y32{bottom:652.321733pt;}
.y251{bottom:652.888133pt;}
.y4b{bottom:654.173200pt;}
.ydd{bottom:655.162133pt;}
.y1c2{bottom:656.897867pt;}
.y138{bottom:657.256933pt;}
.y223{bottom:657.852000pt;}
.y1ec{bottom:659.414133pt;}
.y16b{bottom:660.875600pt;}
.y83{bottom:661.442533pt;}
.y27a{bottom:662.336933pt;}
.y1aa{bottom:663.213200pt;}
.y108{bottom:663.490400pt;}
.y31{bottom:665.655067pt;}
.y4a{bottom:666.973200pt;}
.yb5{bottom:669.291333pt;}
.y1c1{bottom:669.697867pt;}
.y198{bottom:672.214133pt;}
.ydf{bottom:673.121200pt;}
.y82{bottom:674.242533pt;}
.y279{bottom:675.137067pt;}
.y107{bottom:676.290400pt;}
.y250{bottom:676.648800pt;}
.y49{bottom:679.773200pt;}
.y222{bottom:681.234667pt;}
.yb4{bottom:682.091333pt;}
.y1c0{bottom:682.497867pt;}
.y20e{bottom:683.552800pt;}
.y16a{bottom:685.014133pt;}
.y137{bottom:686.775067pt;}
.y81{bottom:687.042533pt;}
.y106{bottom:689.090400pt;}
.y24f{bottom:689.448800pt;}
.y48{bottom:692.573200pt;}
.y30{bottom:693.388400pt;}
.y221{bottom:694.034667pt;}
.yb3{bottom:694.891333pt;}
.ydc{bottom:696.239333pt;}
.y20d{bottom:696.352800pt;}
.y169{bottom:697.814133pt;}
.y278{bottom:699.275600pt;}
.y80{bottom:699.842533pt;}
.y105{bottom:701.890400pt;}
.y47{bottom:705.373200pt;}
.y2f{bottom:705.388400pt;}
.yb2{bottom:707.691333pt;}
.y20c{bottom:709.152800pt;}
.y1bf{bottom:709.164533pt;}
.y134{bottom:709.893200pt;}
.y168{bottom:710.614133pt;}
.y277{bottom:712.075600pt;}
.y7f{bottom:712.642533pt;}
.y24e{bottom:713.209467pt;}
.y104{bottom:714.690400pt;}
.y136{bottom:716.293067pt;}
.y46{bottom:718.173200pt;}
.ydb{bottom:719.357467pt;}
.yb1{bottom:720.491333pt;}
.y1eb{bottom:721.952800pt;}
.y132{bottom:722.693200pt;}
.y167{bottom:723.414133pt;}
.y276{bottom:724.875600pt;}
.y7e{bottom:725.442533pt;}
.y24d{bottom:726.009467pt;}
.y135{bottom:729.093200pt;}
.y2e{bottom:730.721733pt;}
.y45{bottom:730.973200pt;}
.yda{bottom:732.157467pt;}
.y1bb{bottom:732.282667pt;}
.yb0{bottom:733.291333pt;}
.y1ea{bottom:734.752800pt;}
.y133{bottom:735.493200pt;}
.y166{bottom:736.214133pt;}
.y24c{bottom:738.809467pt;}
.y220{bottom:739.993733pt;}
.y103{bottom:741.449467pt;}
.y44{bottom:743.773333pt;}
.y2d{bottom:744.055067pt;}
.yaf{bottom:746.091333pt;}
.y1e9{bottom:747.552800pt;}
.y7d{bottom:749.014133pt;}
.yd6{bottom:750.626800pt;}
.yd9{bottom:756.296000pt;}
.y1ba{bottom:756.421200pt;}
.y43{bottom:756.573200pt;}
.y131{bottom:758.611333pt;}
.yae{bottom:758.891333pt;}
.y197{bottom:760.352800pt;}
.y7c{bottom:761.814267pt;}
.y24b{bottom:762.570133pt;}
.y130{bottom:765.011333pt;}
.y2c{bottom:766.721733pt;}
.yd1{bottom:768.585733pt;}
.yd8{bottom:769.096133pt;}
.y1b9{bottom:769.221333pt;}
.yad{bottom:771.691333pt;}
.y165{bottom:773.152800pt;}
.y275{bottom:774.614133pt;}
.y2b{bottom:780.055067pt;}
.y42{bottom:780.711867pt;}
.yd0{bottom:781.385867pt;}
.yd7{bottom:781.896133pt;}
.yac{bottom:784.491333pt;}
.y7b{bottom:785.952800pt;}
.y24a{bottom:786.330667pt;}
.y1b8{bottom:793.359867pt;}
.y41{bottom:793.511867pt;}
.y12f{bottom:794.529333pt;}
.yab{bottom:797.291333pt;}
.y7a{bottom:798.752800pt;}
.y249{bottom:799.130667pt;}
.yd5{bottom:805.014133pt;}
.y1b7{bottom:806.159867pt;}
.y40{bottom:806.311867pt;}
.yaa{bottom:810.091333pt;}
.y79{bottom:811.552800pt;}
.y248{bottom:811.930800pt;}
.y21f{bottom:815.332267pt;}
.y2a{bottom:817.055067pt;}
.y12e{bottom:817.647600pt;}
.yd3{bottom:817.814267pt;}
.y3f{bottom:819.111867pt;}
.ya9{bottom:822.891333pt;}
.y12d{bottom:824.047467pt;}
.y78{bottom:824.352800pt;}
.y29{bottom:825.055067pt;}
.yd4{bottom:830.614133pt;}
.y3e{bottom:831.911733pt;}
.y1b6{bottom:832.826533pt;}
.y28{bottom:833.055067pt;}
.ya8{bottom:835.691333pt;}
.y3d{bottom:844.711867pt;}
.y77{bottom:848.491333pt;}
.yd2{bottom:853.732267pt;}
.y3c{bottom:861.291333pt;}
.h14{height:19.739583pt;}
.h6{height:24.968750pt;}
.h5{height:29.609375pt;}
.h4{height:31.210938pt;}
.h13{height:32.000000pt;}
.hd{height:33.291667pt;}
.h15{height:34.544271pt;}
.h3{height:34.937500pt;}
.ha{height:36.039062pt;}
.h8{height:37.011719pt;}
.h2{height:39.479167pt;}
.h9{height:41.187500pt;}
.hc{height:43.671875pt;}
.h7{height:46.335938pt;}
.hb{height:51.484375pt;}
.hf{height:58.891667pt;}
.h11{height:65.079167pt;}
.he{height:85.715433pt;}
.h12{height:90.678633pt;}
.h10{height:90.679167pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:36.236267pt;}
.x8{left:56.359600pt;}
.x3{left:57.359600pt;}
.x5c{left:64.252000pt;}
.x52{left:67.365333pt;}
.x57{left:69.117867pt;}
.x9{left:72.340533pt;}
.x21{left:73.520533pt;}
.x1c{left:75.973600pt;}
.x1f{left:77.890267pt;}
.x1b{left:80.241867pt;}
.x10{left:81.750667pt;}
.xb{left:83.020933pt;}
.x18{left:85.052800pt;}
.x32{left:85.978533pt;}
.x4b{left:87.995867pt;}
.x11{left:89.532000pt;}
.x16{left:91.133467pt;}
.x36{left:94.987067pt;}
.x31{left:99.421333pt;}
.xe{left:104.692933pt;}
.x4a{left:112.089600pt;}
.x4c{left:113.842267pt;}
.x49{left:115.646933pt;}
.xc{left:142.998133pt;}
.x4e{left:146.338000pt;}
.xf{left:150.285867pt;}
.x1d{left:158.067867pt;}
.x14{left:170.880400pt;}
.x41{left:171.886400pt;}
.x33{left:174.330133pt;}
.x35{left:176.719733pt;}
.x42{left:177.865467pt;}
.x40{left:179.907200pt;}
.x3d{left:181.868133pt;}
.x4d{left:188.137333pt;}
.x22{left:189.886933pt;}
.xa{left:191.399867pt;}
.x53{left:194.269333pt;}
.x23{left:199.351867pt;}
.x3a{left:202.722267pt;}
.x1a{left:207.350933pt;}
.x58{left:208.665067pt;}
.x34{left:210.658267pt;}
.x2c{left:214.841467pt;}
.x5a{left:216.321333pt;}
.x51{left:218.752000pt;}
.x20{left:221.198133pt;}
.x48{left:222.497333pt;}
.x27{left:223.484667pt;}
.x59{left:225.902133pt;}
.x50{left:236.147867pt;}
.x30{left:240.354400pt;}
.x19{left:247.520267pt;}
.x54{left:249.378667pt;}
.x4f{left:257.061867pt;}
.x47{left:280.981200pt;}
.x13{left:291.170400pt;}
.x43{left:293.311867pt;}
.x37{left:296.603600pt;}
.x3e{left:306.176400pt;}
.x12{left:307.258933pt;}
.x5b{left:320.726000pt;}
.x3c{left:322.465467pt;}
.x2{left:333.265067pt;}
.x56{left:366.707733pt;}
.x55{left:371.379600pt;}
.x2a{left:374.539067pt;}
.x2d{left:375.950533pt;}
.x28{left:376.901067pt;}
.x2e{left:381.494800pt;}
.x24{left:384.622400pt;}
.x25{left:386.586000pt;}
.x26{left:395.593733pt;}
.x6{left:396.552000pt;}
.x5{left:403.477867pt;}
.x17{left:415.644267pt;}
.x15{left:420.284933pt;}
.x44{left:427.163067pt;}
.x45{left:431.316800pt;}
.x1e{left:432.302000pt;}
.x3b{left:435.483467pt;}
.x2b{left:442.981733pt;}
.x2f{left:446.242133pt;}
.x39{left:452.259467pt;}
.x38{left:454.788133pt;}
.x29{left:456.825467pt;}
.x46{left:471.769867pt;}
.x3f{left:484.696933pt;}
.x7{left:527.806000pt;}
.x1{left:568.092400pt;}
.xd{left:569.247333pt;}
}




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