
    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_6e926bf4387544cd697369ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946289;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_3ae95783b4f9feb616dd1820.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_fa08efbc6fa9698cc629ce63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_1068e5a9357aebc201238bda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_004f0156a9317b8607cc5da8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_65b8c0fd840116815bbbe133.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.362000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_094f93e8e3e24f1cbe210371.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.606000;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_ba46c780960c5c72557d0723.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903809;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_7722e06e509d8a3f4cfbfeed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-18.899780px;}
.v5{vertical-align:-17.849991px;}
.v4{vertical-align:-10.806022px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.799927px;}
.v3{vertical-align:18.750110px;}
.v2{vertical-align:21.000000px;}
.ls26{letter-spacing:-5.940000px;}
.ls2c{letter-spacing:-1.944000px;}
.ls24{letter-spacing:-1.836000px;}
.ls3c{letter-spacing:-1.782000px;}
.ls2a{letter-spacing:-1.728000px;}
.ls27{letter-spacing:-1.566000px;}
.ls47{letter-spacing:-1.530000px;}
.ls22{letter-spacing:-1.458000px;}
.ls51{letter-spacing:-1.395000px;}
.ls21{letter-spacing:-1.296000px;}
.ls29{letter-spacing:-1.188000px;}
.ls4a{letter-spacing:-1.125000px;}
.ls5a{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.972000px;}
.ls28{letter-spacing:-0.864000px;}
.ls4c{letter-spacing:-0.855000px;}
.ls31{letter-spacing:-0.756000px;}
.ls3a{letter-spacing:-0.702000px;}
.ls10{letter-spacing:-0.648000px;}
.ls5b{letter-spacing:-0.630000px;}
.ls38{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.495000px;}
.ls39{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.378000px;}
.ls4e{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.315900px;}
.ls23{letter-spacing:-0.270000px;}
.ls52{letter-spacing:-0.225000px;}
.ls2f{letter-spacing:-0.216000px;}
.ls48{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.162000px;}
.ls49{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.108000px;}
.ls4b{letter-spacing:-0.090000px;}
.ls19{letter-spacing:-0.070200px;}
.ls11{letter-spacing:-0.054000px;}
.ls4d{letter-spacing:-0.045000px;}
.ls12{letter-spacing:-0.035100px;}
.lsd{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000083px;}
.lsc{letter-spacing:0.018028px;}
.ls20{letter-spacing:0.035100px;}
.ls59{letter-spacing:0.045000px;}
.ls1f{letter-spacing:0.054000px;}
.ls55{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.107111px;}
.ls1d{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.126110px;}
.ls43{letter-spacing:0.135000px;}
.ls35{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.157950px;}
.ls37{letter-spacing:0.159019px;}
.ls32{letter-spacing:0.159296px;}
.ls1b{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.175500px;}
.ls3f{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.202049px;}
.ls3e{letter-spacing:0.202500px;}
.ls30{letter-spacing:0.210600px;}
.ls1{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.225000px;}
.ls4{letter-spacing:0.244184px;}
.ls16{letter-spacing:0.245700px;}
.ls3d{letter-spacing:0.264000px;}
.lse{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.280800px;}
.ls17{letter-spacing:0.315900px;}
.ls13{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.332969px;}
.ls15{letter-spacing:0.351000px;}
.ls4f{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.378000px;}
.ls46{letter-spacing:0.405000px;}
.ls1e{letter-spacing:0.421200px;}
.ls5{letter-spacing:0.432000px;}
.ls40{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.486000px;}
.ls53{letter-spacing:0.495000px;}
.ls14{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.585000px;}
.ls2e{letter-spacing:0.594000px;}
.ls58{letter-spacing:0.611981px;}
.ls56{letter-spacing:0.630000px;}
.ls1a{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.702000px;}
.ls36{letter-spacing:0.756000px;}
.ls2d{letter-spacing:0.864000px;}
.ls5c{letter-spacing:0.918000px;}
.ls44{letter-spacing:0.945000px;}
.ls41{letter-spacing:1.404000px;}
.ls45{letter-spacing:1.845000px;}
.ls57{letter-spacing:2.245500px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.wsab{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.000000px;}
.wsb1{word-spacing:-13.860000px;}
.ws27{word-spacing:-13.596000px;}
.ws3f{word-spacing:-12.798000px;}
.ws2a{word-spacing:-12.528000px;}
.ws8d{word-spacing:-12.420000px;}
.ws49{word-spacing:-12.258000px;}
.ws5{word-spacing:-12.204000px;}
.ws8b{word-spacing:-12.150000px;}
.ws2e{word-spacing:-12.096000px;}
.ws2b{word-spacing:-11.718000px;}
.ws94{word-spacing:-11.610000px;}
.ws6c{word-spacing:-11.502000px;}
.ws9e{word-spacing:-11.394000px;}
.ws69{word-spacing:-11.178000px;}
.ws28{word-spacing:-11.070000px;}
.ws29{word-spacing:-10.908000px;}
.ws48{word-spacing:-10.800000px;}
.ws6a{word-spacing:-10.638000px;}
.wsaa{word-spacing:-10.584000px;}
.ws2c{word-spacing:-10.530000px;}
.ws6b{word-spacing:-10.422000px;}
.wsb3{word-spacing:-10.417500px;}
.wsd7{word-spacing:-10.350000px;}
.wsd{word-spacing:-10.200000px;}
.wsb8{word-spacing:-10.170000px;}
.wsb7{word-spacing:-10.080000px;}
.wsd9{word-spacing:-9.855000px;}
.wsb6{word-spacing:-9.810000px;}
.wsb5{word-spacing:-9.765000px;}
.ws0{word-spacing:-9.600000px;}
.wsb4{word-spacing:-9.450000px;}
.wsd8{word-spacing:-9.225000px;}
.wsb2{word-spacing:-8.775000px;}
.ws25{word-spacing:-8.388900px;}
.ws8{word-spacing:-8.318700px;}
.wsa{word-spacing:-8.283600px;}
.ws9{word-spacing:-8.213400px;}
.ws7b{word-spacing:-8.178300px;}
.ws4{word-spacing:-8.143200px;}
.ws89{word-spacing:-8.108100px;}
.ws2{word-spacing:-8.034000px;}
.ws26{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws7{word-spacing:-7.932600px;}
.wsb{word-spacing:-7.897500px;}
.ws2d{word-spacing:-7.651800px;}
.wsc{word-spacing:-6.630000px;}
.wse1{word-spacing:-6.435000px;}
.wscd{word-spacing:-6.165000px;}
.wsc5{word-spacing:-6.030000px;}
.wsdb{word-spacing:-5.985000px;}
.wsd6{word-spacing:-5.805000px;}
.wsc7{word-spacing:-5.760000px;}
.wsdc{word-spacing:-5.670000px;}
.wsc1{word-spacing:-5.535000px;}
.ws7c{word-spacing:-5.508000px;}
.ws83{word-spacing:-2.484000px;}
.ws3d{word-spacing:-2.322000px;}
.ws37{word-spacing:-2.268000px;}
.ws77{word-spacing:-2.214000px;}
.ws9f{word-spacing:-2.160000px;}
.ws8f{word-spacing:-2.106000px;}
.wsa3{word-spacing:-2.052000px;}
.ws66{word-spacing:-1.944000px;}
.wsa5{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.674000px;}
.ws4f{word-spacing:-1.620000px;}
.ws59{word-spacing:-1.566000px;}
.ws9b{word-spacing:-1.458000px;}
.wsa8{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.242000px;}
.ws17{word-spacing:-1.188000px;}
.ws85{word-spacing:-1.134000px;}
.ws81{word-spacing:-1.080000px;}
.wsb9{word-spacing:-1.035000px;}
.ws40{word-spacing:-1.026000px;}
.wsbb{word-spacing:-0.990000px;}
.ws92{word-spacing:-0.972000px;}
.wsd3{word-spacing:-0.945000px;}
.ws95{word-spacing:-0.918000px;}
.wsa6{word-spacing:-0.864000px;}
.wsdf{word-spacing:-0.855000px;}
.wsd0{word-spacing:-0.810000px;}
.wsda{word-spacing:-0.765000px;}
.ws19{word-spacing:-0.756000px;}
.wscb{word-spacing:-0.720000px;}
.ws88{word-spacing:-0.702000px;}
.ws18{word-spacing:-0.648000px;}
.ws75{word-spacing:-0.594000px;}
.wsdd{word-spacing:-0.585000px;}
.ws60{word-spacing:-0.540000px;}
.ws9c{word-spacing:-0.486000px;}
.wsc3{word-spacing:-0.450000px;}
.ws7a{word-spacing:-0.432000px;}
.ws13{word-spacing:-0.378000px;}
.wsde{word-spacing:-0.360000px;}
.ws71{word-spacing:-0.324000px;}
.wsbe{word-spacing:-0.315000px;}
.ws96{word-spacing:-0.270000px;}
.wse2{word-spacing:-0.264000px;}
.ws1b{word-spacing:-0.245700px;}
.wsbc{word-spacing:-0.225000px;}
.wsf{word-spacing:-0.216000px;}
.wsba{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.162000px;}
.wsbd{word-spacing:-0.135000px;}
.ws1d{word-spacing:-0.108000px;}
.wsbf{word-spacing:-0.090000px;}
.ws3e{word-spacing:-0.054000px;}
.wsce{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.wse{word-spacing:0.000000px;}
.ws1a{word-spacing:0.035100px;}
.wsc8{word-spacing:0.045000px;}
.ws14{word-spacing:0.054000px;}
.ws8c{word-spacing:0.070200px;}
.ws87{word-spacing:0.108000px;}
.wsd5{word-spacing:0.135000px;}
.ws78{word-spacing:0.162000px;}
.ws55{word-spacing:0.216000px;}
.wsd4{word-spacing:0.225000px;}
.ws31{word-spacing:0.270000px;}
.ws86{word-spacing:0.324000px;}
.ws4a{word-spacing:0.378000px;}
.ws5c{word-spacing:0.432000px;}
.ws32{word-spacing:0.486000px;}
.wsc9{word-spacing:0.495000px;}
.ws9a{word-spacing:0.540000px;}
.ws70{word-spacing:0.594000px;}
.wse0{word-spacing:0.630000px;}
.ws6f{word-spacing:0.648000px;}
.wscc{word-spacing:0.675000px;}
.wsd1{word-spacing:0.720000px;}
.ws41{word-spacing:0.756000px;}
.wsc4{word-spacing:0.765000px;}
.ws30{word-spacing:0.810000px;}
.ws64{word-spacing:0.864000px;}
.ws44{word-spacing:0.918000px;}
.wsc6{word-spacing:0.945000px;}
.ws72{word-spacing:0.972000px;}
.wsca{word-spacing:0.990000px;}
.ws84{word-spacing:1.026000px;}
.wsc2{word-spacing:1.035000px;}
.ws1e{word-spacing:1.080000px;}
.wsc0{word-spacing:1.125000px;}
.ws8a{word-spacing:1.134000px;}
.ws11{word-spacing:1.188000px;}
.ws16{word-spacing:1.242000px;}
.wsd2{word-spacing:1.260000px;}
.ws5d{word-spacing:1.296000px;}
.ws2f{word-spacing:1.350000px;}
.wscf{word-spacing:1.395000px;}
.wsa2{word-spacing:1.404000px;}
.ws3b{word-spacing:1.458000px;}
.ws51{word-spacing:1.512000px;}
.ws10{word-spacing:1.566000px;}
.ws34{word-spacing:1.620000px;}
.ws15{word-spacing:1.674000px;}
.ws36{word-spacing:1.728000px;}
.ws73{word-spacing:1.782000px;}
.ws7e{word-spacing:1.836000px;}
.ws76{word-spacing:1.890000px;}
.ws24{word-spacing:1.938000px;}
.ws54{word-spacing:1.944000px;}
.ws4d{word-spacing:1.998000px;}
.wse7{word-spacing:2.052000px;}
.ws99{word-spacing:2.160000px;}
.ws35{word-spacing:2.214000px;}
.ws1c{word-spacing:2.268000px;}
.wsa0{word-spacing:2.322000px;}
.ws5a{word-spacing:2.376000px;}
.ws7d{word-spacing:2.430000px;}
.ws50{word-spacing:2.484000px;}
.ws90{word-spacing:2.538000px;}
.ws9d{word-spacing:2.592000px;}
.ws45{word-spacing:2.646000px;}
.ws33{word-spacing:2.754000px;}
.ws67{word-spacing:2.808000px;}
.ws3c{word-spacing:2.862000px;}
.wsae{word-spacing:2.916000px;}
.ws74{word-spacing:2.970000px;}
.ws63{word-spacing:3.024000px;}
.ws22{word-spacing:3.111000px;}
.ws5f{word-spacing:3.132000px;}
.ws43{word-spacing:3.240000px;}
.ws42{word-spacing:3.294000px;}
.ws80{word-spacing:3.348000px;}
.ws97{word-spacing:3.402000px;}
.ws98{word-spacing:3.456000px;}
.ws58{word-spacing:3.510000px;}
.ws5b{word-spacing:3.564000px;}
.ws82{word-spacing:3.618000px;}
.ws52{word-spacing:3.672000px;}
.ws57{word-spacing:3.726000px;}
.wsa4{word-spacing:3.780000px;}
.wsa9{word-spacing:3.888000px;}
.ws62{word-spacing:3.942000px;}
.ws7f{word-spacing:3.996000px;}
.ws61{word-spacing:4.050000px;}
.ws79{word-spacing:4.104000px;}
.ws68{word-spacing:4.158000px;}
.ws39{word-spacing:4.212000px;}
.wsac{word-spacing:4.536000px;}
.wsad{word-spacing:4.806000px;}
.ws6d{word-spacing:4.968000px;}
.ws21{word-spacing:5.202000px;}
.ws3a{word-spacing:5.454000px;}
.ws38{word-spacing:5.616000px;}
.ws46{word-spacing:5.670000px;}
.wsa1{word-spacing:5.778000px;}
.ws4e{word-spacing:5.832000px;}
.wsa7{word-spacing:5.886000px;}
.ws4c{word-spacing:5.940000px;}
.ws4b{word-spacing:6.102000px;}
.wse8{word-spacing:6.264000px;}
.wse5{word-spacing:6.480000px;}
.ws56{word-spacing:6.534000px;}
.ws8e{word-spacing:6.588000px;}
.wse6{word-spacing:6.750000px;}
.wsb0{word-spacing:6.858000px;}
.ws91{word-spacing:6.912000px;}
.ws6e{word-spacing:7.074000px;}
.wsaf{word-spacing:7.182000px;}
.ws65{word-spacing:7.560000px;}
.wse3{word-spacing:11.826000px;}
.wse4{word-spacing:12.366000px;}
.ws23{word-spacing:12.954000px;}
.ws20{word-spacing:14.127000px;}
.ws47{word-spacing:15.282000px;}
.ws93{word-spacing:19.008000px;}
.ws1f{word-spacing:21.318000px;}
._13{margin-left:-20.952007px;}
._1b{margin-left:-17.887200px;}
._14{margin-left:-16.422000px;}
._5{margin-left:-14.208000px;}
._6{margin-left:-12.082820px;}
._8{margin-left:-10.616400px;}
._16{margin-left:-8.625673px;}
._12{margin-left:-6.947399px;}
._3{margin-left:-5.313600px;}
._2{margin-left:-4.252727px;}
._7{margin-left:-3.036000px;}
._0{margin-left:-1.876800px;}
._4{width:1.033200px;}
._f{width:2.395200px;}
._10{width:3.435600px;}
._9{width:5.190556px;}
._e{width:6.285943px;}
._d{width:8.114100px;}
._1e{width:10.335673px;}
._c{width:11.884500px;}
._17{width:13.101600px;}
._b{width:14.290201px;}
._a{width:15.810000px;}
._1c{width:16.875000px;}
._1d{width:18.045000px;}
._18{width:19.408727px;}
._19{width:37.370462px;}
._1a{width:40.012800px;}
._15{width:46.962550px;}
._11{width:48.268719px;}
._1{width:336.052800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.199200px;}
.y37{bottom:3.199350px;}
.y96{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y36{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y7c{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y35{bottom:68.043452px;}
.y160{bottom:68.871152px;}
.y90{bottom:69.621152px;}
.y1eb{bottom:72.650248px;}
.yaf{bottom:73.372652px;}
.ye6{bottom:74.142748px;}
.y1aa{bottom:76.993648px;}
.y62{bottom:80.053052px;}
.y34{bottom:83.037452px;}
.y15f{bottom:83.869652px;}
.y8f{bottom:84.619652px;}
.y1ea{bottom:87.648748px;}
.yae{bottom:88.371152px;}
.ye5{bottom:89.141248px;}
.y269{bottom:91.312950px;}
.y1a9{bottom:91.992148px;}
.y11e{bottom:94.986148px;}
.y61{bottom:95.051552px;}
.ydf{bottom:95.139152px;}
.y152{bottom:96.483148px;}
.y33{bottom:98.043452px;}
.y8e{bottom:99.619652px;}
.y1e9{bottom:102.647248px;}
.yad{bottom:103.372652px;}
.y268{bottom:104.059200px;}
.ye4{bottom:104.139748px;}
.y1a8{bottom:106.990648px;}
.y11d{bottom:109.984648px;}
.y60{bottom:110.050052px;}
.yde{bottom:110.137652px;}
.y151{bottom:111.481648px;}
.y32{bottom:113.037452px;}
.y21a{bottom:115.980148px;}
.y267{bottom:116.805450px;}
.y15e{bottom:116.878652px;}
.y1e8{bottom:117.645748px;}
.yac{bottom:118.371152px;}
.y1a7{bottom:121.989148px;}
.y2aa{bottom:124.388403px;}
.y11c{bottom:124.983148px;}
.y5f{bottom:125.048552px;}
.ydd{bottom:125.136152px;}
.y150{bottom:126.483148px;}
.y31{bottom:128.037452px;}
.y266{bottom:129.551700px;}
.y15d{bottom:131.877152px;}
.y8d{bottom:132.627152px;}
.y1e7{bottom:132.644248px;}
.yab{bottom:133.372652px;}
.y1a6{bottom:136.987648px;}
.y2a9{bottom:139.386903px;}
.y11b{bottom:139.981648px;}
.y5e{bottom:140.047052px;}
.ydc{bottom:140.134652px;}
.y14f{bottom:141.481648px;}
.y265{bottom:142.297950px;}
.y30{bottom:143.037452px;}
.y15c{bottom:146.875652px;}
.y8c{bottom:147.625652px;}
.y1e6{bottom:147.642748px;}
.yaa{bottom:148.371152px;}
.y1a5{bottom:151.986148px;}
.y11a{bottom:154.990648px;}
.y264{bottom:155.044200px;}
.y5d{bottom:155.045552px;}
.ydb{bottom:155.133152px;}
.y14e{bottom:156.480148px;}
.y2f{bottom:158.037452px;}
.y15b{bottom:161.874152px;}
.y2a8{bottom:161.891403px;}
.y8b{bottom:162.624152px;}
.y1e5{bottom:162.641248px;}
.ya9{bottom:163.369652px;}
.y1a4{bottom:166.984648px;}
.y263{bottom:167.790450px;}
.y119{bottom:169.989148px;}
.y5c{bottom:170.044052px;}
.yda{bottom:170.131652px;}
.y2e{bottom:173.037452px;}
.yeb{bottom:176.137645px;}
.y15a{bottom:176.872652px;}
.y8a{bottom:177.622652px;}
.y1e4{bottom:177.644248px;}
.y219{bottom:178.983148px;}
.y262{bottom:180.536700px;}
.y1a3{bottom:181.983148px;}
.y2a7{bottom:184.395903px;}
.y118{bottom:184.987648px;}
.yd9{bottom:185.130152px;}
.y14d{bottom:189.486148px;}
.yea{bottom:191.136145px;}
.y159{bottom:191.871152px;}
.y2d{bottom:192.493950px;}
.y89{bottom:192.621152px;}
.y1e3{bottom:192.642748px;}
.y261{bottom:193.282950px;}
.y218{bottom:193.981648px;}
.ya8{bottom:196.380152px;}
.y1a2{bottom:196.981648px;}
.y117{bottom:199.986148px;}
.yd8{bottom:200.128652px;}
.y5b{bottom:203.054552px;}
.y14c{bottom:204.484648px;}
.y260{bottom:206.029200px;}
.ye9{bottom:206.134645px;}
.y158{bottom:206.872652px;}
.y2a6{bottom:206.900403px;}
.y88{bottom:207.624152px;}
.y1e2{bottom:207.641248px;}
.y217{bottom:208.986148px;}
.ya7{bottom:211.378652px;}
.y1a1{bottom:211.983148px;}
.y116{bottom:214.984648px;}
.yd7{bottom:215.127152px;}
.y5a{bottom:218.053052px;}
.y25f{bottom:218.775450px;}
.y14b{bottom:219.483148px;}
.ye8{bottom:221.133145px;}
.y157{bottom:221.871152px;}
.y2a5{bottom:221.898903px;}
.y87{bottom:222.622652px;}
.y1e1{bottom:222.645748px;}
.y216{bottom:223.984648px;}
.ya6{bottom:226.377152px;}
.y1a0{bottom:226.981648px;}
.y115{bottom:229.983148px;}
.yd6{bottom:230.125652px;}
.y25e{bottom:231.521700px;}
.y59{bottom:233.051552px;}
.y14a{bottom:234.481648px;}
.y2b{bottom:235.570805px;}
.ye7{bottom:236.131645px;}
.y156{bottom:236.874152px;}
.y2a4{bottom:236.898903px;}
.y86{bottom:237.621152px;}
.y1e0{bottom:237.644248px;}
.y215{bottom:238.983148px;}
.ya5{bottom:241.375652px;}
.y19f{bottom:241.980148px;}
.y25d{bottom:244.267950px;}
.y114{bottom:244.981648px;}
.yd5{bottom:245.124152px;}
.y58{bottom:248.050052px;}
.y149{bottom:249.480148px;}
.y2a{bottom:250.570805px;}
.y155{bottom:251.872652px;}
.y85{bottom:252.619652px;}
.y1df{bottom:252.642748px;}
.y214{bottom:253.981648px;}
.ya4{bottom:256.374152px;}
.y25c{bottom:257.014200px;}
.y113{bottom:259.983148px;}
.yd4{bottom:260.122652px;}
.y57{bottom:263.048552px;}
.y29{bottom:265.572305px;}
.y154{bottom:266.871152px;}
.y2a3{bottom:266.898903px;}
.y84{bottom:267.619652px;}
.y1de{bottom:267.641248px;}
.y213{bottom:268.983148px;}
.y25b{bottom:269.760450px;}
.ya3{bottom:271.372652px;}
.y112{bottom:274.981648px;}
.y19e{bottom:274.987648px;}
.yd3{bottom:275.121152px;}
.y56{bottom:278.047052px;}
.y28{bottom:280.570805px;}
.y153{bottom:281.869652px;}
.y2a2{bottom:281.898903px;}
.y148{bottom:282.480148px;}
.y25a{bottom:282.506700px;}
.y1dd{bottom:282.639748px;}
.y212{bottom:283.981648px;}
.ya2{bottom:286.371152px;}
.y111{bottom:289.984648px;}
.y19d{bottom:289.986148px;}
.yd2{bottom:290.127152px;}
.y55{bottom:293.045552px;}
.y259{bottom:295.252950px;}
.y27{bottom:295.570805px;}
.y147{bottom:297.480148px;}
.y211{bottom:298.980148px;}
.y83{bottom:300.627152px;}
.ya1{bottom:301.369652px;}
.y110{bottom:304.983148px;}
.y19c{bottom:304.984648px;}
.yd1{bottom:305.125652px;}
.y258{bottom:307.999200px;}
.y54{bottom:308.066552px;}
.y26{bottom:310.570805px;}
.y2a1{bottom:313.377738px;}
.y82{bottom:315.625652px;}
.y1dc{bottom:315.642748px;}
.ya0{bottom:316.369652px;}
.y10f{bottom:319.981648px;}
.y19b{bottom:319.983148px;}
.yd0{bottom:320.124152px;}
.y257{bottom:320.745450px;}
.y53{bottom:323.065052px;}
.y25{bottom:325.570805px;}
.y2a0{bottom:328.376238px;}
.y146{bottom:330.490648px;}
.y81{bottom:330.624152px;}
.y1db{bottom:330.641248px;}
.y210{bottom:331.990648px;}
.y256{bottom:333.491700px;}
.y10e{bottom:334.980148px;}
.y19a{bottom:334.981648px;}
.ycf{bottom:335.122652px;}
.y52{bottom:338.063552px;}
.y16a{bottom:339.276137px;}
.y24{bottom:340.570805px;}
.y29f{bottom:343.374738px;}
.y145{bottom:345.489148px;}
.y80{bottom:345.622652px;}
.y1da{bottom:345.671271px;}
.y255{bottom:346.237950px;}
.y20f{bottom:346.989148px;}
.y9f{bottom:349.374129px;}
.y10d{bottom:349.980148px;}
.y199{bottom:350.007148px;}
.yce{bottom:350.121152px;}
.y51{bottom:353.062052px;}
.y169{bottom:354.274637px;}
.y23{bottom:355.570805px;}
.y29e{bottom:358.373238px;}
.y254{bottom:358.984200px;}
.y144{bottom:360.487648px;}
.y7f{bottom:360.621152px;}
.y1d9{bottom:360.669771px;}
.y20e{bottom:361.987648px;}
.y9e{bottom:364.372629px;}
.y198{bottom:365.005648px;}
.ycd{bottom:365.122629px;}
.y50{bottom:368.060552px;}
.y168{bottom:369.273137px;}
.y22{bottom:370.581305px;}
.y253{bottom:371.730450px;}
.y29d{bottom:373.371738px;}
.y143{bottom:375.486148px;}
.y7e{bottom:375.619652px;}
.y1d8{bottom:375.668271px;}
.y20d{bottom:376.986148px;}
.y9d{bottom:379.371129px;}
.y197{bottom:380.004148px;}
.ycc{bottom:380.121129px;}
.y10c{bottom:382.998148px;}
.y4f{bottom:383.059052px;}
.y167{bottom:384.273137px;}
.y252{bottom:384.476700px;}
.y21{bottom:385.579805px;}
.y29c{bottom:388.370238px;}
.y142{bottom:390.484648px;}
.y1d7{bottom:390.666771px;}
.y20c{bottom:391.984648px;}
.y9c{bottom:394.377129px;}
.y196{bottom:395.002648px;}
.ycb{bottom:395.121129px;}
.y251{bottom:397.222950px;}
.y10b{bottom:397.996648px;}
.y4e{bottom:398.057552px;}
.y166{bottom:399.276137px;}
.y20{bottom:400.578305px;}
.y29b{bottom:403.368738px;}
.y141{bottom:405.483148px;}
.y1d6{bottom:405.665271px;}
.y20b{bottom:406.983148px;}
.y9b{bottom:409.375629px;}
.y250{bottom:409.969200px;}
.y195{bottom:410.001148px;}
.yca{bottom:410.119629px;}
.y10a{bottom:412.995148px;}
.y4d{bottom:413.056052px;}
.y165{bottom:414.274637px;}
.y1f{bottom:415.576805px;}
.y29a{bottom:418.367238px;}
.y140{bottom:420.481648px;}
.y1d5{bottom:420.663771px;}
.y20a{bottom:421.981648px;}
.y24f{bottom:422.715450px;}
.y9a{bottom:424.374129px;}
.y194{bottom:424.999648px;}
.yc9{bottom:425.119629px;}
.y109{bottom:427.993648px;}
.y4c{bottom:428.054552px;}
.y164{bottom:429.273137px;}
.y1e{bottom:430.575305px;}
.y299{bottom:433.365738px;}
.y24e{bottom:435.461700px;}
.y13f{bottom:435.484648px;}
.y1d4{bottom:435.662271px;}
.y209{bottom:436.980148px;}
.y99{bottom:439.372629px;}
.y193{bottom:439.998148px;}
.y95{bottom:442.717670px;}
.y108{bottom:442.992148px;}
.y4b{bottom:443.053052px;}
.y163{bottom:444.274637px;}
.y1d{bottom:445.573805px;}
.y24d{bottom:448.207950px;}
.y298{bottom:448.365738px;}
.y13e{bottom:450.483148px;}
.y1d3{bottom:450.660771px;}
.y98{bottom:454.371129px;}
.y192{bottom:454.996648px;}
.y94{bottom:457.716170px;}
.y107{bottom:457.990648px;}
.y4a{bottom:458.051552px;}
.yc8{bottom:458.127129px;}
.y162{bottom:459.273137px;}
.y1c{bottom:460.572305px;}
.y24c{bottom:460.954200px;}
.y13d{bottom:465.481648px;}
.y1d2{bottom:465.659271px;}
.y97{bottom:469.369629px;}
.y191{bottom:469.995148px;}
.y208{bottom:470.044694px;}
.y93{bottom:472.714670px;}
.y106{bottom:472.989148px;}
.y49{bottom:473.050052px;}
.yc7{bottom:473.125629px;}
.y24b{bottom:473.700450px;}
.y161{bottom:474.271637px;}
.y1b{bottom:475.570805px;}
.y297{bottom:478.377738px;}
.y13c{bottom:480.486148px;}
.y1d1{bottom:480.657771px;}
.y190{bottom:484.993648px;}
.y207{bottom:485.043194px;}
.y24a{bottom:486.446700px;}
.y92{bottom:487.713170px;}
.y105{bottom:487.987648px;}
.y48{bottom:488.048552px;}
.yc6{bottom:488.124129px;}
.y1a{bottom:490.575305px;}
.y296{bottom:493.376238px;}
.y13b{bottom:495.484648px;}
.y1d0{bottom:495.656271px;}
.y249{bottom:499.192950px;}
.y18f{bottom:499.992148px;}
.y206{bottom:500.041694px;}
.y91{bottom:502.711670px;}
.y104{bottom:502.986148px;}
.y47{bottom:503.047052px;}
.yc5{bottom:503.122629px;}
.y19{bottom:505.573805px;}
.y295{bottom:508.374738px;}
.y13a{bottom:510.483148px;}
.y1cf{bottom:510.654771px;}
.y248{bottom:511.939200px;}
.y18e{bottom:514.990648px;}
.y205{bottom:515.040194px;}
.y103{bottom:517.984648px;}
.y46{bottom:518.045552px;}
.yc4{bottom:518.121129px;}
.y18{bottom:520.572305px;}
.y294{bottom:523.373238px;}
.y247{bottom:524.685450px;}
.y139{bottom:525.481648px;}
.y1ce{bottom:525.653271px;}
.ybb{bottom:529.067983px;}
.y18d{bottom:529.989148px;}
.y204{bottom:530.038694px;}
.y102{bottom:532.983148px;}
.y45{bottom:533.044052px;}
.yc3{bottom:533.130129px;}
.y17{bottom:535.570805px;}
.y246{bottom:537.431700px;}
.y293{bottom:538.371738px;}
.y138{bottom:540.486148px;}
.y1cd{bottom:540.651771px;}
.yba{bottom:544.066483px;}
.y18c{bottom:544.987648px;}
.y203{bottom:545.037194px;}
.y101{bottom:547.981648px;}
.y44{bottom:548.044052px;}
.yc2{bottom:548.128629px;}
.y245{bottom:550.177950px;}
.y16{bottom:550.606769px;}
.y292{bottom:553.370238px;}
.y137{bottom:555.484648px;}
.y1cc{bottom:555.650271px;}
.yb9{bottom:559.064983px;}
.y18b{bottom:559.986148px;}
.y202{bottom:560.035694px;}
.y244{bottom:562.924200px;}
.y100{bottom:562.981648px;}
.yc1{bottom:563.127129px;}
.y15{bottom:565.605269px;}
.y291{bottom:568.368738px;}
.y136{bottom:570.483148px;}
.y1cb{bottom:570.648771px;}
.yb8{bottom:574.063483px;}
.y18a{bottom:574.984648px;}
.y201{bottom:575.034194px;}
.y243{bottom:575.670450px;}
.yff{bottom:577.986148px;}
.yc0{bottom:578.125629px;}
.y43{bottom:581.054552px;}
.y290{bottom:583.367238px;}
.y135{bottom:585.481648px;}
.y1ca{bottom:585.647271px;}
.y242{bottom:588.416700px;}
.yb7{bottom:589.061983px;}
.y189{bottom:589.983148px;}
.y200{bottom:590.032694px;}
.yfe{bottom:592.984648px;}
.ybf{bottom:593.124129px;}
.y42{bottom:596.053052px;}
.y28f{bottom:598.365738px;}
.y134{bottom:600.483148px;}
.y1c9{bottom:600.645771px;}
.y241{bottom:601.162950px;}
.yb6{bottom:604.060483px;}
.y188{bottom:604.981648px;}
.y1ff{bottom:605.031194px;}
.yfd{bottom:607.983148px;}
.ybe{bottom:608.122629px;}
.y14{bottom:610.749269px;}
.y41{bottom:611.051552px;}
.y28e{bottom:613.365738px;}
.y240{bottom:613.909200px;}
.y133{bottom:615.481648px;}
.y1c8{bottom:615.644271px;}
.yb5{bottom:619.058983px;}
.y187{bottom:619.984648px;}
.y1fe{bottom:620.029694px;}
.yfc{bottom:622.981648px;}
.ybd{bottom:623.121129px;}
.y40{bottom:626.050052px;}
.y23f{bottom:626.655450px;}
.y13{bottom:627.246269px;}
.y132{bottom:630.481648px;}
.y1c7{bottom:630.642771px;}
.yb4{bottom:634.057483px;}
.y186{bottom:634.983148px;}
.y1fd{bottom:635.028194px;}
.yfb{bottom:637.986148px;}
.ybc{bottom:638.119629px;}
.y23e{bottom:639.401700px;}
.y3f{bottom:641.048552px;}
.y28d{bottom:643.497034px;}
.y12{bottom:643.743269px;}
.y131{bottom:645.481648px;}
.y1c6{bottom:645.641271px;}
.yb3{bottom:649.055983px;}
.y185{bottom:649.981648px;}
.y1fc{bottom:650.026694px;}
.y23d{bottom:652.147950px;}
.yfa{bottom:652.984648px;}
.y3e{bottom:656.047052px;}
.y28c{bottom:656.243284px;}
.y11{bottom:660.240269px;}
.y130{bottom:660.481648px;}
.y1c5{bottom:660.645771px;}
.yb2{bottom:664.054483px;}
.y23c{bottom:664.894200px;}
.y184{bottom:664.992194px;}
.y1fb{bottom:665.025194px;}
.yf9{bottom:667.983148px;}
.y28b{bottom:668.989534px;}
.y3d{bottom:671.045552px;}
.y12f{bottom:675.481648px;}
.y1c4{bottom:675.644271px;}
.y10{bottom:676.737269px;}
.y23b{bottom:677.640450px;}
.yb1{bottom:679.052983px;}
.y183{bottom:679.990694px;}
.y1fa{bottom:680.023694px;}
.y28a{bottom:681.735784px;}
.yf8{bottom:682.981648px;}
.y3c{bottom:686.045552px;}
.y23a{bottom:690.386700px;}
.y12e{bottom:690.481648px;}
.y1c3{bottom:690.642771px;}
.yf{bottom:693.234269px;}
.yb0{bottom:694.051483px;}
.y289{bottom:694.482034px;}
.y182{bottom:694.989194px;}
.y1f9{bottom:695.022194px;}
.ye3{bottom:695.316161px;}
.yf7{bottom:697.980148px;}
.y3b{bottom:701.045552px;}
.y239{bottom:703.132950px;}
.y12d{bottom:705.481648px;}
.y1c2{bottom:705.641271px;}
.y288{bottom:707.228284px;}
.ye{bottom:709.731269px;}
.y181{bottom:709.987694px;}
.y1f8{bottom:710.020694px;}
.ye2{bottom:710.314661px;}
.y238{bottom:715.879200px;}
.y3a{bottom:716.045552px;}
.y287{bottom:719.974534px;}
.y12c{bottom:720.487694px;}
.y1c1{bottom:720.639771px;}
.y180{bottom:724.986194px;}
.y1f7{bottom:725.019194px;}
.ye1{bottom:725.313161px;}
.yd{bottom:726.228269px;}
.y237{bottom:728.625450px;}
.yf6{bottom:730.993694px;}
.y39{bottom:731.044052px;}
.y286{bottom:732.720784px;}
.y12b{bottom:735.486194px;}
.y17f{bottom:739.984694px;}
.y1f6{bottom:740.017694px;}
.ye0{bottom:740.311661px;}
.y236{bottom:741.371700px;}
.yc{bottom:742.725269px;}
.y285{bottom:745.467034px;}
.yf5{bottom:745.992194px;}
.y12a{bottom:750.484694px;}
.y1c0{bottom:753.641271px;}
.y235{bottom:754.117950px;}
.y17e{bottom:754.983194px;}
.y1f5{bottom:755.016194px;}
.y284{bottom:758.213284px;}
.yb{bottom:759.222269px;}
.yf4{bottom:760.990694px;}
.y129{bottom:765.483194px;}
.y234{bottom:766.864200px;}
.y1bf{bottom:768.641271px;}
.y17d{bottom:769.981694px;}
.y1f4{bottom:770.014694px;}
.y283{bottom:770.959534px;}
.y78{bottom:772.981694px;}
.ya{bottom:775.719269px;}
.yf3{bottom:775.989194px;}
.y233{bottom:779.610450px;}
.y128{bottom:780.481694px;}
.y1be{bottom:783.654771px;}
.y282{bottom:783.705784px;}
.y17c{bottom:784.990694px;}
.y1f3{bottom:785.013194px;}
.y77{bottom:787.981694px;}
.yf2{bottom:790.987694px;}
.y232{bottom:792.356700px;}
.y127{bottom:795.490694px;}
.y281{bottom:796.452034px;}
.y1bd{bottom:798.653271px;}
.y17b{bottom:799.989194px;}
.y76{bottom:802.993694px;}
.y231{bottom:805.102950px;}
.y9{bottom:805.719269px;}
.yf1{bottom:805.986194px;}
.y280{bottom:809.198284px;}
.y126{bottom:810.489194px;}
.y1bc{bottom:813.651771px;}
.y17a{bottom:814.987694px;}
.y230{bottom:817.849200px;}
.y75{bottom:817.992194px;}
.y1f2{bottom:818.007194px;}
.yf0{bottom:820.984694px;}
.y27f{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y125{bottom:825.487694px;}
.y1bb{bottom:828.650271px;}
.y179{bottom:829.986194px;}
.y22f{bottom:830.595450px;}
.y74{bottom:832.990694px;}
.y1f1{bottom:833.005694px;}
.y27e{bottom:834.690784px;}
.yef{bottom:835.983194px;}
.y124{bottom:840.486194px;}
.y22e{bottom:843.341700px;}
.y1ba{bottom:843.648771px;}
.y178{bottom:844.984694px;}
.y27d{bottom:847.437034px;}
.y73{bottom:847.989194px;}
.y1f0{bottom:848.004194px;}
.yee{bottom:850.981694px;}
.y123{bottom:855.484694px;}
.y22d{bottom:856.087950px;}
.y7{bottom:856.707269px;}
.y1b9{bottom:858.647271px;}
.y177{bottom:859.983194px;}
.y27c{bottom:860.183284px;}
.y72{bottom:862.987694px;}
.y1ef{bottom:863.002694px;}
.yed{bottom:865.981694px;}
.y22c{bottom:868.834200px;}
.y122{bottom:870.483194px;}
.y27b{bottom:872.929534px;}
.y1b8{bottom:873.645771px;}
.y176{bottom:874.981694px;}
.y71{bottom:877.986194px;}
.y1ee{bottom:878.001194px;}
.yec{bottom:880.980194px;}
.y22b{bottom:881.580450px;}
.y121{bottom:885.481694px;}
.y27a{bottom:885.675784px;}
.y1b7{bottom:888.644271px;}
.y175{bottom:889.981694px;}
.y70{bottom:892.984694px;}
.y1ed{bottom:892.999694px;}
.y22a{bottom:894.326700px;}
.y279{bottom:898.422034px;}
.y120{bottom:900.480194px;}
.y6{bottom:901.713269px;}
.y1b6{bottom:903.642771px;}
.y174{bottom:904.980194px;}
.y229{bottom:907.072950px;}
.y6f{bottom:907.983194px;}
.y1ec{bottom:907.998194px;}
.y278{bottom:911.168284px;}
.y1b5{bottom:918.641271px;}
.y228{bottom:919.819200px;}
.y6e{bottom:922.981694px;}
.y11f{bottom:922.996694px;}
.y277{bottom:923.914534px;}
.y227{bottom:932.565450px;}
.y1b4{bottom:933.639771px;}
.y276{bottom:936.660784px;}
.y173{bottom:937.993694px;}
.y6d{bottom:937.995194px;}
.y226{bottom:945.311700px;}
.y5{bottom:946.719269px;}
.y275{bottom:949.407034px;}
.y172{bottom:952.992194px;}
.y6c{bottom:952.993694px;}
.y2ab{bottom:952.993696px;}
.y2c{bottom:954.366760px;}
.y225{bottom:958.057950px;}
.y274{bottom:962.153284px;}
.y1b3{bottom:966.651771px;}
.y171{bottom:967.990694px;}
.y6b{bottom:967.992194px;}
.y224{bottom:970.804200px;}
.y273{bottom:974.899534px;}
.y1b2{bottom:981.650271px;}
.y170{bottom:982.989194px;}
.y6a{bottom:982.990694px;}
.y223{bottom:983.550450px;}
.y272{bottom:987.645784px;}
.y222{bottom:996.296700px;}
.y1b1{bottom:996.648771px;}
.y16f{bottom:997.987694px;}
.y69{bottom:997.989194px;}
.y271{bottom:1000.392034px;}
.y221{bottom:1009.042950px;}
.y1b0{bottom:1011.647271px;}
.y16e{bottom:1012.986194px;}
.y68{bottom:1012.987694px;}
.y270{bottom:1013.138284px;}
.y220{bottom:1021.789200px;}
.y26f{bottom:1025.884534px;}
.y1af{bottom:1026.645771px;}
.y16d{bottom:1027.984694px;}
.y67{bottom:1027.986194px;}
.y21f{bottom:1034.535450px;}
.y26e{bottom:1038.630784px;}
.y1ae{bottom:1041.644271px;}
.y16c{bottom:1042.983194px;}
.y66{bottom:1042.984694px;}
.y21e{bottom:1047.281700px;}
.y26d{bottom:1051.377034px;}
.y1ad{bottom:1056.642771px;}
.y16b{bottom:1057.981694px;}
.y65{bottom:1057.983194px;}
.y21d{bottom:1060.027950px;}
.y26c{bottom:1064.123284px;}
.y1ac{bottom:1071.641271px;}
.y21c{bottom:1072.774200px;}
.y64{bottom:1072.981694px;}
.y26b{bottom:1076.869534px;}
.y21b{bottom:1085.524200px;}
.y1ab{bottom:1086.639771px;}
.y63{bottom:1087.980194px;}
.y79{bottom:1088.044464px;}
.y26a{bottom:1089.615784px;}
.y7a{bottom:1140.640320px;}
.y7d{bottom:1140.746521px;}
.y38{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h1b{height:26.688000px;}
.h10{height:30.684677px;}
.h2{height:33.937500px;}
.h2f{height:35.411133px;}
.h12{height:36.058594px;}
.h7{height:38.838867px;}
.h1c{height:43.154297px;}
.h30{height:44.505000px;}
.h32{height:45.090000px;}
.h3{height:45.679688px;}
.h31{height:46.080000px;}
.h15{height:47.469727px;}
.h11{height:48.534668px;}
.h6{height:49.183594px;}
.h13{height:49.349525px;}
.h33{height:50.439000px;}
.h8{height:53.406000px;}
.h9{height:53.464010px;}
.h2b{height:53.505863px;}
.h16{height:53.523863px;}
.h18{height:53.553680px;}
.h19{height:53.559680px;}
.hc{height:53.565863px;}
.h27{height:53.571680px;}
.h26{height:53.571907px;}
.h1e{height:53.583314px;}
.h23{height:53.583863px;}
.h2c{height:53.589131px;}
.h2e{height:53.589310px;}
.ha{height:53.589863px;}
.h25{height:53.595863px;}
.h22{height:53.601406px;}
.he{height:53.601863px;}
.h28{height:53.601907px;}
.h1f{height:53.601909px;}
.h21{height:53.607314px;}
.h24{height:53.607680px;}
.hd{height:53.607863px;}
.h29{height:53.607886px;}
.h14{height:53.613863px;}
.h2d{height:53.981908px;}
.h20{height:54.066000px;}
.h1d{height:54.090000px;}
.hb{height:54.108000px;}
.h2a{height:55.278000px;}
.h1a{height:55.290000px;}
.h17{height:55.296000px;}
.h4{height:57.099609px;}
.hf{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.xb{left:225.938553px;}
.x5{left:233.858253px;}
.x6{left:251.854944px;}
.xd{left:254.108253px;}
.xe{left:302.498703px;}
.x4{left:586.814117px;}
.xa{left:797.390808px;}
.x2{left:798.901611px;}
.xc{left:818.848755px;}
.x1{left:825.001190px;}
.x9{left:835.164276px;}
@media print{
.v6{vertical-align:-16.799805pt;}
.v5{vertical-align:-15.866659pt;}
.v4{vertical-align:-9.605353pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.599935pt;}
.v3{vertical-align:16.666764pt;}
.v2{vertical-align:18.666667pt;}
.ls26{letter-spacing:-5.280000pt;}
.ls2c{letter-spacing:-1.728000pt;}
.ls24{letter-spacing:-1.632000pt;}
.ls3c{letter-spacing:-1.584000pt;}
.ls2a{letter-spacing:-1.536000pt;}
.ls27{letter-spacing:-1.392000pt;}
.ls47{letter-spacing:-1.360000pt;}
.ls22{letter-spacing:-1.296000pt;}
.ls51{letter-spacing:-1.240000pt;}
.ls21{letter-spacing:-1.152000pt;}
.ls29{letter-spacing:-1.056000pt;}
.ls4a{letter-spacing:-1.000000pt;}
.ls5a{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.864000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls4c{letter-spacing:-0.760000pt;}
.ls31{letter-spacing:-0.672000pt;}
.ls3a{letter-spacing:-0.624000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls5b{letter-spacing:-0.560000pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.440000pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls4e{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.280800pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls52{letter-spacing:-0.200000pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls48{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls49{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls4b{letter-spacing:-0.080000pt;}
.ls19{letter-spacing:-0.062400pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls4d{letter-spacing:-0.040000pt;}
.ls12{letter-spacing:-0.031200pt;}
.lsd{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000074pt;}
.lsc{letter-spacing:0.016025pt;}
.ls20{letter-spacing:0.031200pt;}
.ls59{letter-spacing:0.040000pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls55{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.095210pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.112098pt;}
.ls43{letter-spacing:0.120000pt;}
.ls35{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.140400pt;}
.ls37{letter-spacing:0.141350pt;}
.ls32{letter-spacing:0.141597pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.156000pt;}
.ls3f{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.179599pt;}
.ls3e{letter-spacing:0.180000pt;}
.ls30{letter-spacing:0.187200pt;}
.ls1{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.200000pt;}
.ls4{letter-spacing:0.217053pt;}
.ls16{letter-spacing:0.218400pt;}
.ls3d{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.249600pt;}
.ls17{letter-spacing:0.280800pt;}
.ls13{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.295973pt;}
.ls15{letter-spacing:0.312000pt;}
.ls4f{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls46{letter-spacing:0.360000pt;}
.ls1e{letter-spacing:0.374400pt;}
.ls5{letter-spacing:0.384000pt;}
.ls40{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.432000pt;}
.ls53{letter-spacing:0.440000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.520000pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls58{letter-spacing:0.543983pt;}
.ls56{letter-spacing:0.560000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.624000pt;}
.ls36{letter-spacing:0.672000pt;}
.ls2d{letter-spacing:0.768000pt;}
.ls5c{letter-spacing:0.816000pt;}
.ls44{letter-spacing:0.840000pt;}
.ls41{letter-spacing:1.248000pt;}
.ls45{letter-spacing:1.640000pt;}
.ls57{letter-spacing:1.996000pt;}
.ls0{letter-spacing:2.666667pt;}
.wsab{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.wsb1{word-spacing:-12.320000pt;}
.ws27{word-spacing:-12.085333pt;}
.ws3f{word-spacing:-11.376000pt;}
.ws2a{word-spacing:-11.136000pt;}
.ws8d{word-spacing:-11.040000pt;}
.ws49{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws8b{word-spacing:-10.800000pt;}
.ws2e{word-spacing:-10.752000pt;}
.ws2b{word-spacing:-10.416000pt;}
.ws94{word-spacing:-10.320000pt;}
.ws6c{word-spacing:-10.224000pt;}
.ws9e{word-spacing:-10.128000pt;}
.ws69{word-spacing:-9.936000pt;}
.ws28{word-spacing:-9.840000pt;}
.ws29{word-spacing:-9.696000pt;}
.ws48{word-spacing:-9.600000pt;}
.ws6a{word-spacing:-9.456000pt;}
.wsaa{word-spacing:-9.408000pt;}
.ws2c{word-spacing:-9.360000pt;}
.ws6b{word-spacing:-9.264000pt;}
.wsb3{word-spacing:-9.260000pt;}
.wsd7{word-spacing:-9.200000pt;}
.wsd{word-spacing:-9.066667pt;}
.wsb8{word-spacing:-9.040000pt;}
.wsb7{word-spacing:-8.960000pt;}
.wsd9{word-spacing:-8.760000pt;}
.wsb6{word-spacing:-8.720000pt;}
.wsb5{word-spacing:-8.680000pt;}
.ws0{word-spacing:-8.533333pt;}
.wsb4{word-spacing:-8.400000pt;}
.wsd8{word-spacing:-8.200000pt;}
.wsb2{word-spacing:-7.800000pt;}
.ws25{word-spacing:-7.456800pt;}
.ws8{word-spacing:-7.394400pt;}
.wsa{word-spacing:-7.363200pt;}
.ws9{word-spacing:-7.300800pt;}
.ws7b{word-spacing:-7.269600pt;}
.ws4{word-spacing:-7.238400pt;}
.ws89{word-spacing:-7.207200pt;}
.ws2{word-spacing:-7.141333pt;}
.ws26{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws7{word-spacing:-7.051200pt;}
.wsb{word-spacing:-7.020000pt;}
.ws2d{word-spacing:-6.801600pt;}
.wsc{word-spacing:-5.893333pt;}
.wse1{word-spacing:-5.720000pt;}
.wscd{word-spacing:-5.480000pt;}
.wsc5{word-spacing:-5.360000pt;}
.wsdb{word-spacing:-5.320000pt;}
.wsd6{word-spacing:-5.160000pt;}
.wsc7{word-spacing:-5.120000pt;}
.wsdc{word-spacing:-5.040000pt;}
.wsc1{word-spacing:-4.920000pt;}
.ws7c{word-spacing:-4.896000pt;}
.ws83{word-spacing:-2.208000pt;}
.ws3d{word-spacing:-2.064000pt;}
.ws37{word-spacing:-2.016000pt;}
.ws77{word-spacing:-1.968000pt;}
.ws9f{word-spacing:-1.920000pt;}
.ws8f{word-spacing:-1.872000pt;}
.wsa3{word-spacing:-1.824000pt;}
.ws66{word-spacing:-1.728000pt;}
.wsa5{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.488000pt;}
.ws4f{word-spacing:-1.440000pt;}
.ws59{word-spacing:-1.392000pt;}
.ws9b{word-spacing:-1.296000pt;}
.wsa8{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.104000pt;}
.ws17{word-spacing:-1.056000pt;}
.ws85{word-spacing:-1.008000pt;}
.ws81{word-spacing:-0.960000pt;}
.wsb9{word-spacing:-0.920000pt;}
.ws40{word-spacing:-0.912000pt;}
.wsbb{word-spacing:-0.880000pt;}
.ws92{word-spacing:-0.864000pt;}
.wsd3{word-spacing:-0.840000pt;}
.ws95{word-spacing:-0.816000pt;}
.wsa6{word-spacing:-0.768000pt;}
.wsdf{word-spacing:-0.760000pt;}
.wsd0{word-spacing:-0.720000pt;}
.wsda{word-spacing:-0.680000pt;}
.ws19{word-spacing:-0.672000pt;}
.wscb{word-spacing:-0.640000pt;}
.ws88{word-spacing:-0.624000pt;}
.ws18{word-spacing:-0.576000pt;}
.ws75{word-spacing:-0.528000pt;}
.wsdd{word-spacing:-0.520000pt;}
.ws60{word-spacing:-0.480000pt;}
.ws9c{word-spacing:-0.432000pt;}
.wsc3{word-spacing:-0.400000pt;}
.ws7a{word-spacing:-0.384000pt;}
.ws13{word-spacing:-0.336000pt;}
.wsde{word-spacing:-0.320000pt;}
.ws71{word-spacing:-0.288000pt;}
.wsbe{word-spacing:-0.280000pt;}
.ws96{word-spacing:-0.240000pt;}
.wse2{word-spacing:-0.234667pt;}
.ws1b{word-spacing:-0.218400pt;}
.wsbc{word-spacing:-0.200000pt;}
.wsf{word-spacing:-0.192000pt;}
.wsba{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.144000pt;}
.wsbd{word-spacing:-0.120000pt;}
.ws1d{word-spacing:-0.096000pt;}
.wsbf{word-spacing:-0.080000pt;}
.ws3e{word-spacing:-0.048000pt;}
.wsce{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.wse{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.031200pt;}
.wsc8{word-spacing:0.040000pt;}
.ws14{word-spacing:0.048000pt;}
.ws8c{word-spacing:0.062400pt;}
.ws87{word-spacing:0.096000pt;}
.wsd5{word-spacing:0.120000pt;}
.ws78{word-spacing:0.144000pt;}
.ws55{word-spacing:0.192000pt;}
.wsd4{word-spacing:0.200000pt;}
.ws31{word-spacing:0.240000pt;}
.ws86{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.336000pt;}
.ws5c{word-spacing:0.384000pt;}
.ws32{word-spacing:0.432000pt;}
.wsc9{word-spacing:0.440000pt;}
.ws9a{word-spacing:0.480000pt;}
.ws70{word-spacing:0.528000pt;}
.wse0{word-spacing:0.560000pt;}
.ws6f{word-spacing:0.576000pt;}
.wscc{word-spacing:0.600000pt;}
.wsd1{word-spacing:0.640000pt;}
.ws41{word-spacing:0.672000pt;}
.wsc4{word-spacing:0.680000pt;}
.ws30{word-spacing:0.720000pt;}
.ws64{word-spacing:0.768000pt;}
.ws44{word-spacing:0.816000pt;}
.wsc6{word-spacing:0.840000pt;}
.ws72{word-spacing:0.864000pt;}
.wsca{word-spacing:0.880000pt;}
.ws84{word-spacing:0.912000pt;}
.wsc2{word-spacing:0.920000pt;}
.ws1e{word-spacing:0.960000pt;}
.wsc0{word-spacing:1.000000pt;}
.ws8a{word-spacing:1.008000pt;}
.ws11{word-spacing:1.056000pt;}
.ws16{word-spacing:1.104000pt;}
.wsd2{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.200000pt;}
.wscf{word-spacing:1.240000pt;}
.wsa2{word-spacing:1.248000pt;}
.ws3b{word-spacing:1.296000pt;}
.ws51{word-spacing:1.344000pt;}
.ws10{word-spacing:1.392000pt;}
.ws34{word-spacing:1.440000pt;}
.ws15{word-spacing:1.488000pt;}
.ws36{word-spacing:1.536000pt;}
.ws73{word-spacing:1.584000pt;}
.ws7e{word-spacing:1.632000pt;}
.ws76{word-spacing:1.680000pt;}
.ws24{word-spacing:1.722667pt;}
.ws54{word-spacing:1.728000pt;}
.ws4d{word-spacing:1.776000pt;}
.wse7{word-spacing:1.824000pt;}
.ws99{word-spacing:1.920000pt;}
.ws35{word-spacing:1.968000pt;}
.ws1c{word-spacing:2.016000pt;}
.wsa0{word-spacing:2.064000pt;}
.ws5a{word-spacing:2.112000pt;}
.ws7d{word-spacing:2.160000pt;}
.ws50{word-spacing:2.208000pt;}
.ws90{word-spacing:2.256000pt;}
.ws9d{word-spacing:2.304000pt;}
.ws45{word-spacing:2.352000pt;}
.ws33{word-spacing:2.448000pt;}
.ws67{word-spacing:2.496000pt;}
.ws3c{word-spacing:2.544000pt;}
.wsae{word-spacing:2.592000pt;}
.ws74{word-spacing:2.640000pt;}
.ws63{word-spacing:2.688000pt;}
.ws22{word-spacing:2.765333pt;}
.ws5f{word-spacing:2.784000pt;}
.ws43{word-spacing:2.880000pt;}
.ws42{word-spacing:2.928000pt;}
.ws80{word-spacing:2.976000pt;}
.ws97{word-spacing:3.024000pt;}
.ws98{word-spacing:3.072000pt;}
.ws58{word-spacing:3.120000pt;}
.ws5b{word-spacing:3.168000pt;}
.ws82{word-spacing:3.216000pt;}
.ws52{word-spacing:3.264000pt;}
.ws57{word-spacing:3.312000pt;}
.wsa4{word-spacing:3.360000pt;}
.wsa9{word-spacing:3.456000pt;}
.ws62{word-spacing:3.504000pt;}
.ws7f{word-spacing:3.552000pt;}
.ws61{word-spacing:3.600000pt;}
.ws79{word-spacing:3.648000pt;}
.ws68{word-spacing:3.696000pt;}
.ws39{word-spacing:3.744000pt;}
.wsac{word-spacing:4.032000pt;}
.wsad{word-spacing:4.272000pt;}
.ws6d{word-spacing:4.416000pt;}
.ws21{word-spacing:4.624000pt;}
.ws3a{word-spacing:4.848000pt;}
.ws38{word-spacing:4.992000pt;}
.ws46{word-spacing:5.040000pt;}
.wsa1{word-spacing:5.136000pt;}
.ws4e{word-spacing:5.184000pt;}
.wsa7{word-spacing:5.232000pt;}
.ws4c{word-spacing:5.280000pt;}
.ws4b{word-spacing:5.424000pt;}
.wse8{word-spacing:5.568000pt;}
.wse5{word-spacing:5.760000pt;}
.ws56{word-spacing:5.808000pt;}
.ws8e{word-spacing:5.856000pt;}
.wse6{word-spacing:6.000000pt;}
.wsb0{word-spacing:6.096000pt;}
.ws91{word-spacing:6.144000pt;}
.ws6e{word-spacing:6.288000pt;}
.wsaf{word-spacing:6.384000pt;}
.ws65{word-spacing:6.720000pt;}
.wse3{word-spacing:10.512000pt;}
.wse4{word-spacing:10.992000pt;}
.ws23{word-spacing:11.514667pt;}
.ws20{word-spacing:12.557333pt;}
.ws47{word-spacing:13.584000pt;}
.ws93{word-spacing:16.896000pt;}
.ws1f{word-spacing:18.949333pt;}
._13{margin-left:-18.624006pt;}
._1b{margin-left:-15.899733pt;}
._14{margin-left:-14.597333pt;}
._5{margin-left:-12.629333pt;}
._6{margin-left:-10.740284pt;}
._8{margin-left:-9.436800pt;}
._16{margin-left:-7.667265pt;}
._12{margin-left:-6.175466pt;}
._3{margin-left:-4.723200pt;}
._2{margin-left:-3.780202pt;}
._7{margin-left:-2.698667pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.918400pt;}
._f{width:2.129067pt;}
._10{width:3.053867pt;}
._9{width:4.613827pt;}
._e{width:5.587505pt;}
._d{width:7.212534pt;}
._1e{width:9.187265pt;}
._c{width:10.564000pt;}
._17{width:11.645867pt;}
._b{width:12.702401pt;}
._a{width:14.053333pt;}
._1c{width:15.000000pt;}
._1d{width:16.040000pt;}
._18{width:17.252201pt;}
._19{width:33.218188pt;}
._1a{width:35.566933pt;}
._15{width:41.744489pt;}
._11{width:42.905528pt;}
._1{width:298.713600pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.843733pt;}
.y37{bottom:2.843867pt;}
.y96{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y36{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y7c{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y35{bottom:60.483069pt;}
.y160{bottom:61.218802pt;}
.y90{bottom:61.885468pt;}
.y1eb{bottom:64.577998pt;}
.yaf{bottom:65.220135pt;}
.ye6{bottom:65.904665pt;}
.y1aa{bottom:68.438799pt;}
.y62{bottom:71.158269pt;}
.y34{bottom:73.811069pt;}
.y15f{bottom:74.550802pt;}
.y8f{bottom:75.217468pt;}
.y1ea{bottom:77.909998pt;}
.yae{bottom:78.552135pt;}
.ye5{bottom:79.236665pt;}
.y269{bottom:81.167067pt;}
.y1a9{bottom:81.770799pt;}
.y11e{bottom:84.432132pt;}
.y61{bottom:84.490269pt;}
.ydf{bottom:84.568135pt;}
.y152{bottom:85.762799pt;}
.y33{bottom:87.149735pt;}
.y8e{bottom:88.550802pt;}
.y1e9{bottom:91.241998pt;}
.yad{bottom:91.886802pt;}
.y268{bottom:92.497067pt;}
.ye4{bottom:92.568665pt;}
.y1a8{bottom:95.102799pt;}
.y11d{bottom:97.764132pt;}
.y60{bottom:97.822269pt;}
.yde{bottom:97.900135pt;}
.y151{bottom:99.094799pt;}
.y32{bottom:100.477735pt;}
.y21a{bottom:103.093465pt;}
.y267{bottom:103.827067pt;}
.y15e{bottom:103.892135pt;}
.y1e8{bottom:104.573998pt;}
.yac{bottom:105.218802pt;}
.y1a7{bottom:108.434799pt;}
.y2aa{bottom:110.567469pt;}
.y11c{bottom:111.096132pt;}
.y5f{bottom:111.154269pt;}
.ydd{bottom:111.232135pt;}
.y150{bottom:112.429465pt;}
.y31{bottom:113.811069pt;}
.y266{bottom:115.157067pt;}
.y15d{bottom:117.224135pt;}
.y8d{bottom:117.890802pt;}
.y1e7{bottom:117.905998pt;}
.yab{bottom:118.553468pt;}
.y1a6{bottom:121.766799pt;}
.y2a9{bottom:123.899469pt;}
.y11b{bottom:124.428132pt;}
.y5e{bottom:124.486269pt;}
.ydc{bottom:124.564135pt;}
.y14f{bottom:125.761465pt;}
.y265{bottom:126.487067pt;}
.y30{bottom:127.144402pt;}
.y15c{bottom:130.556135pt;}
.y8c{bottom:131.222802pt;}
.y1e6{bottom:131.237998pt;}
.yaa{bottom:131.885468pt;}
.y1a5{bottom:135.098799pt;}
.y11a{bottom:137.769465pt;}
.y264{bottom:137.817067pt;}
.y5d{bottom:137.818269pt;}
.ydb{bottom:137.896135pt;}
.y14e{bottom:139.093465pt;}
.y2f{bottom:140.477735pt;}
.y15b{bottom:143.888135pt;}
.y2a8{bottom:143.903469pt;}
.y8b{bottom:144.554802pt;}
.y1e5{bottom:144.569998pt;}
.ya9{bottom:145.217468pt;}
.y1a4{bottom:148.430799pt;}
.y263{bottom:149.147067pt;}
.y119{bottom:151.101465pt;}
.y5c{bottom:151.150269pt;}
.yda{bottom:151.228135pt;}
.y2e{bottom:153.811069pt;}
.yeb{bottom:156.566796pt;}
.y15a{bottom:157.220135pt;}
.y8a{bottom:157.886802pt;}
.y1e4{bottom:157.905998pt;}
.y219{bottom:159.096132pt;}
.y262{bottom:160.477067pt;}
.y1a3{bottom:161.762799pt;}
.y2a7{bottom:163.907469pt;}
.y118{bottom:164.433465pt;}
.yd9{bottom:164.560135pt;}
.y14d{bottom:168.432132pt;}
.yea{bottom:169.898796pt;}
.y159{bottom:170.552135pt;}
.y2d{bottom:171.105733pt;}
.y89{bottom:171.218802pt;}
.y1e3{bottom:171.237998pt;}
.y261{bottom:171.807067pt;}
.y218{bottom:172.428132pt;}
.ya8{bottom:174.560135pt;}
.y1a2{bottom:175.094799pt;}
.y117{bottom:177.765465pt;}
.yd8{bottom:177.892135pt;}
.y5b{bottom:180.492935pt;}
.y14c{bottom:181.764132pt;}
.y260{bottom:183.137067pt;}
.ye9{bottom:183.230796pt;}
.y158{bottom:183.886802pt;}
.y2a6{bottom:183.911469pt;}
.y88{bottom:184.554802pt;}
.y1e2{bottom:184.569998pt;}
.y217{bottom:185.765465pt;}
.ya7{bottom:187.892135pt;}
.y1a1{bottom:188.429465pt;}
.y116{bottom:191.097465pt;}
.yd7{bottom:191.224135pt;}
.y5a{bottom:193.824935pt;}
.y25f{bottom:194.467067pt;}
.y14b{bottom:195.096132pt;}
.ye8{bottom:196.562796pt;}
.y157{bottom:197.218802pt;}
.y2a5{bottom:197.243469pt;}
.y87{bottom:197.886802pt;}
.y1e1{bottom:197.907331pt;}
.y216{bottom:199.097465pt;}
.ya6{bottom:201.224135pt;}
.y1a0{bottom:201.761465pt;}
.y115{bottom:204.429465pt;}
.yd6{bottom:204.556135pt;}
.y25e{bottom:205.797067pt;}
.y59{bottom:207.156935pt;}
.y14a{bottom:208.428132pt;}
.y2b{bottom:209.396271pt;}
.ye7{bottom:209.894796pt;}
.y156{bottom:210.554802pt;}
.y2a4{bottom:210.576803pt;}
.y86{bottom:211.218802pt;}
.y1e0{bottom:211.239331pt;}
.y215{bottom:212.429465pt;}
.ya5{bottom:214.556135pt;}
.y19f{bottom:215.093465pt;}
.y25d{bottom:217.127067pt;}
.y114{bottom:217.761465pt;}
.yd5{bottom:217.888135pt;}
.y58{bottom:220.488935pt;}
.y149{bottom:221.760132pt;}
.y2a{bottom:222.729605pt;}
.y155{bottom:223.886802pt;}
.y85{bottom:224.550802pt;}
.y1df{bottom:224.571331pt;}
.y214{bottom:225.761465pt;}
.ya4{bottom:227.888135pt;}
.y25c{bottom:228.457067pt;}
.y113{bottom:231.096132pt;}
.yd4{bottom:231.220135pt;}
.y57{bottom:233.820935pt;}
.y29{bottom:236.064271pt;}
.y154{bottom:237.218802pt;}
.y2a3{bottom:237.243469pt;}
.y84{bottom:237.884135pt;}
.y1de{bottom:237.903331pt;}
.y213{bottom:239.096132pt;}
.y25b{bottom:239.787067pt;}
.ya3{bottom:241.220135pt;}
.y112{bottom:244.428132pt;}
.y19e{bottom:244.433465pt;}
.yd3{bottom:244.552135pt;}
.y56{bottom:247.152935pt;}
.y28{bottom:249.396271pt;}
.y153{bottom:250.550802pt;}
.y2a2{bottom:250.576803pt;}
.y148{bottom:251.093465pt;}
.y25a{bottom:251.117067pt;}
.y1dd{bottom:251.235331pt;}
.y212{bottom:252.428132pt;}
.ya2{bottom:254.552135pt;}
.y111{bottom:257.764132pt;}
.y19d{bottom:257.765465pt;}
.yd2{bottom:257.890802pt;}
.y55{bottom:260.484935pt;}
.y259{bottom:262.447067pt;}
.y27{bottom:262.729605pt;}
.y147{bottom:264.426799pt;}
.y211{bottom:265.760132pt;}
.y83{bottom:267.224135pt;}
.ya1{bottom:267.884135pt;}
.y110{bottom:271.096132pt;}
.y19c{bottom:271.097465pt;}
.yd1{bottom:271.222802pt;}
.y258{bottom:273.777067pt;}
.y54{bottom:273.836935pt;}
.y26{bottom:276.062938pt;}
.y2a1{bottom:278.557989pt;}
.y82{bottom:280.556135pt;}
.y1dc{bottom:280.571331pt;}
.ya0{bottom:281.217468pt;}
.y10f{bottom:284.428132pt;}
.y19b{bottom:284.429465pt;}
.yd0{bottom:284.554802pt;}
.y257{bottom:285.107067pt;}
.y53{bottom:287.168935pt;}
.y25{bottom:289.396271pt;}
.y2a0{bottom:291.889989pt;}
.y146{bottom:293.769465pt;}
.y81{bottom:293.888135pt;}
.y1db{bottom:293.903331pt;}
.y210{bottom:295.102799pt;}
.y256{bottom:296.437067pt;}
.y10e{bottom:297.760132pt;}
.y19a{bottom:297.761465pt;}
.ycf{bottom:297.886802pt;}
.y52{bottom:300.500935pt;}
.y16a{bottom:301.578788pt;}
.y24{bottom:302.729605pt;}
.y29f{bottom:305.221989pt;}
.y145{bottom:307.101465pt;}
.y80{bottom:307.220135pt;}
.y1da{bottom:307.263352pt;}
.y255{bottom:307.767067pt;}
.y20f{bottom:308.434799pt;}
.y9f{bottom:310.554781pt;}
.y10d{bottom:311.093465pt;}
.y199{bottom:311.117465pt;}
.yce{bottom:311.218802pt;}
.y51{bottom:313.832935pt;}
.y169{bottom:314.910788pt;}
.y23{bottom:316.062938pt;}
.y29e{bottom:318.553989pt;}
.y254{bottom:319.097067pt;}
.y144{bottom:320.433465pt;}
.y7f{bottom:320.552135pt;}
.y1d9{bottom:320.595352pt;}
.y20e{bottom:321.766799pt;}
.y9e{bottom:323.886781pt;}
.y198{bottom:324.449465pt;}
.ycd{bottom:324.553448pt;}
.y50{bottom:327.164935pt;}
.y168{bottom:328.242788pt;}
.y22{bottom:329.405605pt;}
.y253{bottom:330.427067pt;}
.y29d{bottom:331.885989pt;}
.y143{bottom:333.765465pt;}
.y7e{bottom:333.884135pt;}
.y1d8{bottom:333.927352pt;}
.y20d{bottom:335.098799pt;}
.y9d{bottom:337.218781pt;}
.y197{bottom:337.781465pt;}
.ycc{bottom:337.885448pt;}
.y10c{bottom:340.442799pt;}
.y4f{bottom:340.496935pt;}
.y167{bottom:341.576122pt;}
.y252{bottom:341.757067pt;}
.y21{bottom:342.737605pt;}
.y29c{bottom:345.217989pt;}
.y142{bottom:347.097465pt;}
.y1d7{bottom:347.259352pt;}
.y20c{bottom:348.430799pt;}
.y9c{bottom:350.557448pt;}
.y196{bottom:351.113465pt;}
.ycb{bottom:351.218781pt;}
.y251{bottom:353.087067pt;}
.y10b{bottom:353.774799pt;}
.y4e{bottom:353.828935pt;}
.y166{bottom:354.912122pt;}
.y20{bottom:356.069605pt;}
.y29b{bottom:358.549989pt;}
.y141{bottom:360.429465pt;}
.y1d6{bottom:360.591352pt;}
.y20b{bottom:361.762799pt;}
.y9b{bottom:363.889448pt;}
.y250{bottom:364.417067pt;}
.y195{bottom:364.445465pt;}
.yca{bottom:364.550781pt;}
.y10a{bottom:367.106799pt;}
.y4d{bottom:367.160935pt;}
.y165{bottom:368.244122pt;}
.y1f{bottom:369.401605pt;}
.y29a{bottom:371.881989pt;}
.y140{bottom:373.761465pt;}
.y1d5{bottom:373.923352pt;}
.y20a{bottom:375.094799pt;}
.y24f{bottom:375.747067pt;}
.y9a{bottom:377.221448pt;}
.y194{bottom:377.777465pt;}
.yc9{bottom:377.884115pt;}
.y109{bottom:380.438799pt;}
.y4c{bottom:380.492935pt;}
.y164{bottom:381.576122pt;}
.y1e{bottom:382.733605pt;}
.y299{bottom:385.213989pt;}
.y24e{bottom:387.077067pt;}
.y13f{bottom:387.097465pt;}
.y1d4{bottom:387.255352pt;}
.y209{bottom:388.426799pt;}
.y99{bottom:390.553448pt;}
.y193{bottom:391.109465pt;}
.y95{bottom:393.526818pt;}
.y108{bottom:393.770799pt;}
.y4b{bottom:393.824935pt;}
.y163{bottom:394.910788pt;}
.y1d{bottom:396.065605pt;}
.y24d{bottom:398.407067pt;}
.y298{bottom:398.547323pt;}
.y13e{bottom:400.429465pt;}
.y1d3{bottom:400.587352pt;}
.y98{bottom:403.885448pt;}
.y192{bottom:404.441465pt;}
.y94{bottom:406.858818pt;}
.y107{bottom:407.102799pt;}
.y4a{bottom:407.156935pt;}
.yc8{bottom:407.224115pt;}
.y162{bottom:408.242788pt;}
.y1c{bottom:409.397605pt;}
.y24c{bottom:409.737067pt;}
.y13d{bottom:413.761465pt;}
.y1d2{bottom:413.919352pt;}
.y97{bottom:417.217448pt;}
.y191{bottom:417.773465pt;}
.y208{bottom:417.817506pt;}
.y93{bottom:420.190818pt;}
.y106{bottom:420.434799pt;}
.y49{bottom:420.488935pt;}
.yc7{bottom:420.556115pt;}
.y24b{bottom:421.067067pt;}
.y161{bottom:421.574788pt;}
.y1b{bottom:422.729605pt;}
.y297{bottom:425.224656pt;}
.y13c{bottom:427.098799pt;}
.y1d1{bottom:427.251352pt;}
.y190{bottom:431.105465pt;}
.y207{bottom:431.149506pt;}
.y24a{bottom:432.397067pt;}
.y92{bottom:433.522818pt;}
.y105{bottom:433.766799pt;}
.y48{bottom:433.820935pt;}
.yc6{bottom:433.888115pt;}
.y1a{bottom:436.066938pt;}
.y296{bottom:438.556656pt;}
.y13b{bottom:440.430799pt;}
.y1d0{bottom:440.583352pt;}
.y249{bottom:443.727067pt;}
.y18f{bottom:444.437465pt;}
.y206{bottom:444.481506pt;}
.y91{bottom:446.854818pt;}
.y104{bottom:447.098799pt;}
.y47{bottom:447.152935pt;}
.yc5{bottom:447.220115pt;}
.y19{bottom:449.398938pt;}
.y295{bottom:451.888656pt;}
.y13a{bottom:453.762799pt;}
.y1cf{bottom:453.915352pt;}
.y248{bottom:455.057067pt;}
.y18e{bottom:457.769465pt;}
.y205{bottom:457.813506pt;}
.y103{bottom:460.430799pt;}
.y46{bottom:460.484935pt;}
.yc4{bottom:460.552115pt;}
.y18{bottom:462.730938pt;}
.y294{bottom:465.220656pt;}
.y247{bottom:466.387067pt;}
.y139{bottom:467.094799pt;}
.y1ce{bottom:467.247352pt;}
.ybb{bottom:470.282652pt;}
.y18d{bottom:471.101465pt;}
.y204{bottom:471.145506pt;}
.y102{bottom:473.762799pt;}
.y45{bottom:473.816935pt;}
.yc3{bottom:473.893448pt;}
.y17{bottom:476.062938pt;}
.y246{bottom:477.717067pt;}
.y293{bottom:478.552656pt;}
.y138{bottom:480.432132pt;}
.y1cd{bottom:480.579352pt;}
.yba{bottom:483.614652pt;}
.y18c{bottom:484.433465pt;}
.y203{bottom:484.477506pt;}
.y101{bottom:487.094799pt;}
.y44{bottom:487.150269pt;}
.yc2{bottom:487.225448pt;}
.y245{bottom:489.047067pt;}
.y16{bottom:489.428239pt;}
.y292{bottom:491.884656pt;}
.y137{bottom:493.764132pt;}
.y1cc{bottom:493.911352pt;}
.yb9{bottom:496.946652pt;}
.y18b{bottom:497.765465pt;}
.y202{bottom:497.809506pt;}
.y244{bottom:500.377067pt;}
.y100{bottom:500.428132pt;}
.yc1{bottom:500.557448pt;}
.y15{bottom:502.760239pt;}
.y291{bottom:505.216656pt;}
.y136{bottom:507.096132pt;}
.y1cb{bottom:507.243352pt;}
.yb8{bottom:510.278652pt;}
.y18a{bottom:511.097465pt;}
.y201{bottom:511.141506pt;}
.y243{bottom:511.707067pt;}
.yff{bottom:513.765465pt;}
.yc0{bottom:513.889448pt;}
.y43{bottom:516.492935pt;}
.y290{bottom:518.548656pt;}
.y135{bottom:520.428132pt;}
.y1ca{bottom:520.575352pt;}
.y242{bottom:523.037067pt;}
.yb7{bottom:523.610652pt;}
.y189{bottom:524.429465pt;}
.y200{bottom:524.473506pt;}
.yfe{bottom:527.097465pt;}
.ybf{bottom:527.221448pt;}
.y42{bottom:529.824935pt;}
.y28f{bottom:531.880656pt;}
.y134{bottom:533.762799pt;}
.y1c9{bottom:533.907352pt;}
.y241{bottom:534.367067pt;}
.yb6{bottom:536.942652pt;}
.y188{bottom:537.761465pt;}
.y1ff{bottom:537.805506pt;}
.yfd{bottom:540.429465pt;}
.ybe{bottom:540.553448pt;}
.y14{bottom:542.888239pt;}
.y41{bottom:543.156935pt;}
.y28e{bottom:545.213989pt;}
.y240{bottom:545.697067pt;}
.y133{bottom:547.094799pt;}
.y1c8{bottom:547.239352pt;}
.yb5{bottom:550.274652pt;}
.y187{bottom:551.097465pt;}
.y1fe{bottom:551.137506pt;}
.yfc{bottom:553.761465pt;}
.ybd{bottom:553.885448pt;}
.y40{bottom:556.488935pt;}
.y23f{bottom:557.027067pt;}
.y13{bottom:557.552239pt;}
.y132{bottom:560.428132pt;}
.y1c7{bottom:560.571352pt;}
.yb4{bottom:563.606652pt;}
.y186{bottom:564.429465pt;}
.y1fd{bottom:564.469506pt;}
.yfb{bottom:567.098799pt;}
.ybc{bottom:567.217448pt;}
.y23e{bottom:568.357067pt;}
.y3f{bottom:569.820935pt;}
.y28d{bottom:571.997363pt;}
.y12{bottom:572.216239pt;}
.y131{bottom:573.761465pt;}
.y1c6{bottom:573.903352pt;}
.yb3{bottom:576.938652pt;}
.y185{bottom:577.761465pt;}
.y1fc{bottom:577.801506pt;}
.y23d{bottom:579.687067pt;}
.yfa{bottom:580.430799pt;}
.y3e{bottom:583.152935pt;}
.y28c{bottom:583.327363pt;}
.y11{bottom:586.880239pt;}
.y130{bottom:587.094799pt;}
.y1c5{bottom:587.240685pt;}
.yb2{bottom:590.270652pt;}
.y23c{bottom:591.017067pt;}
.y184{bottom:591.104173pt;}
.y1fb{bottom:591.133506pt;}
.yf9{bottom:593.762799pt;}
.y28b{bottom:594.657363pt;}
.y3d{bottom:596.484935pt;}
.y12f{bottom:600.428132pt;}
.y1c4{bottom:600.572685pt;}
.y10{bottom:601.544239pt;}
.y23b{bottom:602.347067pt;}
.yb1{bottom:603.602652pt;}
.y183{bottom:604.436173pt;}
.y1fa{bottom:604.465506pt;}
.y28a{bottom:605.987363pt;}
.yf8{bottom:607.094799pt;}
.y3c{bottom:609.818269pt;}
.y23a{bottom:613.677067pt;}
.y12e{bottom:613.761465pt;}
.y1c3{bottom:613.904685pt;}
.yf{bottom:616.208239pt;}
.yb0{bottom:616.934652pt;}
.y289{bottom:617.317363pt;}
.y182{bottom:617.768173pt;}
.y1f9{bottom:617.797506pt;}
.ye3{bottom:618.058810pt;}
.yf7{bottom:620.426799pt;}
.y3b{bottom:623.151602pt;}
.y239{bottom:625.007067pt;}
.y12d{bottom:627.094799pt;}
.y1c2{bottom:627.236685pt;}
.y288{bottom:628.647363pt;}
.ye{bottom:630.872239pt;}
.y181{bottom:631.100173pt;}
.y1f8{bottom:631.129506pt;}
.ye2{bottom:631.390810pt;}
.y238{bottom:636.337067pt;}
.y3a{bottom:636.484935pt;}
.y287{bottom:639.977363pt;}
.y12c{bottom:640.433506pt;}
.y1c1{bottom:640.568685pt;}
.y180{bottom:644.432173pt;}
.y1f7{bottom:644.461506pt;}
.ye1{bottom:644.722810pt;}
.yd{bottom:645.536239pt;}
.y237{bottom:647.667067pt;}
.yf6{bottom:649.772173pt;}
.y39{bottom:649.816935pt;}
.y286{bottom:651.307363pt;}
.y12b{bottom:653.765506pt;}
.y17f{bottom:657.764173pt;}
.y1f6{bottom:657.793506pt;}
.ye0{bottom:658.054810pt;}
.y236{bottom:658.997067pt;}
.yc{bottom:660.200239pt;}
.y285{bottom:662.637363pt;}
.yf5{bottom:663.104173pt;}
.y12a{bottom:667.097506pt;}
.y1c0{bottom:669.903352pt;}
.y235{bottom:670.327067pt;}
.y17e{bottom:671.096173pt;}
.y1f5{bottom:671.125506pt;}
.y284{bottom:673.967363pt;}
.yb{bottom:674.864239pt;}
.yf4{bottom:676.436173pt;}
.y129{bottom:680.429506pt;}
.y234{bottom:681.657067pt;}
.y1bf{bottom:683.236685pt;}
.y17d{bottom:684.428173pt;}
.y1f4{bottom:684.457506pt;}
.y283{bottom:685.297363pt;}
.y78{bottom:687.094839pt;}
.ya{bottom:689.528239pt;}
.yf3{bottom:689.768173pt;}
.y233{bottom:692.987067pt;}
.y128{bottom:693.761506pt;}
.y1be{bottom:696.582018pt;}
.y282{bottom:696.627363pt;}
.y17c{bottom:697.769506pt;}
.y1f3{bottom:697.789506pt;}
.y77{bottom:700.428173pt;}
.yf2{bottom:703.100173pt;}
.y232{bottom:704.317067pt;}
.y127{bottom:707.102839pt;}
.y281{bottom:707.957363pt;}
.y1bd{bottom:709.914018pt;}
.y17b{bottom:711.101506pt;}
.y76{bottom:713.772173pt;}
.y231{bottom:715.647067pt;}
.y9{bottom:716.194906pt;}
.yf1{bottom:716.432173pt;}
.y280{bottom:719.287363pt;}
.y126{bottom:720.434839pt;}
.y1bc{bottom:723.246018pt;}
.y17a{bottom:724.433506pt;}
.y230{bottom:726.977067pt;}
.y75{bottom:727.104173pt;}
.y1f2{bottom:727.117506pt;}
.yf0{bottom:729.764173pt;}
.y27f{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y125{bottom:733.766839pt;}
.y1bb{bottom:736.578018pt;}
.y179{bottom:737.765506pt;}
.y22f{bottom:738.307067pt;}
.y74{bottom:740.436173pt;}
.y1f1{bottom:740.449506pt;}
.y27e{bottom:741.947363pt;}
.yef{bottom:743.096173pt;}
.y124{bottom:747.098839pt;}
.y22e{bottom:749.637067pt;}
.y1ba{bottom:749.910018pt;}
.y178{bottom:751.097506pt;}
.y27d{bottom:753.277363pt;}
.y73{bottom:753.768173pt;}
.y1f0{bottom:753.781506pt;}
.yee{bottom:756.428173pt;}
.y123{bottom:760.430839pt;}
.y22d{bottom:760.967067pt;}
.y7{bottom:761.517572pt;}
.y1b9{bottom:763.242018pt;}
.y177{bottom:764.429506pt;}
.y27c{bottom:764.607363pt;}
.y72{bottom:767.100173pt;}
.y1ef{bottom:767.113506pt;}
.yed{bottom:769.761506pt;}
.y22c{bottom:772.297067pt;}
.y122{bottom:773.762839pt;}
.y27b{bottom:775.937363pt;}
.y1b8{bottom:776.574018pt;}
.y176{bottom:777.761506pt;}
.y71{bottom:780.432173pt;}
.y1ee{bottom:780.445506pt;}
.yec{bottom:783.093506pt;}
.y22b{bottom:783.627067pt;}
.y121{bottom:787.094839pt;}
.y27a{bottom:787.267363pt;}
.y1b7{bottom:789.906018pt;}
.y175{bottom:791.094839pt;}
.y70{bottom:793.764173pt;}
.y1ed{bottom:793.777506pt;}
.y22a{bottom:794.957067pt;}
.y279{bottom:798.597363pt;}
.y120{bottom:800.426839pt;}
.y6{bottom:801.522906pt;}
.y1b6{bottom:803.238018pt;}
.y174{bottom:804.426839pt;}
.y229{bottom:806.287067pt;}
.y6f{bottom:807.096173pt;}
.y1ec{bottom:807.109506pt;}
.y278{bottom:809.927363pt;}
.y1b5{bottom:816.570018pt;}
.y228{bottom:817.617067pt;}
.y6e{bottom:820.428173pt;}
.y11f{bottom:820.441506pt;}
.y277{bottom:821.257363pt;}
.y227{bottom:828.947067pt;}
.y1b4{bottom:829.902018pt;}
.y276{bottom:832.587363pt;}
.y173{bottom:833.772173pt;}
.y6d{bottom:833.773506pt;}
.y226{bottom:840.277067pt;}
.y5{bottom:841.528239pt;}
.y275{bottom:843.917363pt;}
.y172{bottom:847.104173pt;}
.y6c{bottom:847.105506pt;}
.y2ab{bottom:847.105507pt;}
.y2c{bottom:848.326009pt;}
.y225{bottom:851.607067pt;}
.y274{bottom:855.247363pt;}
.y1b3{bottom:859.246018pt;}
.y171{bottom:860.436173pt;}
.y6b{bottom:860.437506pt;}
.y224{bottom:862.937067pt;}
.y273{bottom:866.577363pt;}
.y1b2{bottom:872.578018pt;}
.y170{bottom:873.768173pt;}
.y6a{bottom:873.769506pt;}
.y223{bottom:874.267067pt;}
.y272{bottom:877.907363pt;}
.y222{bottom:885.597067pt;}
.y1b1{bottom:885.910018pt;}
.y16f{bottom:887.100173pt;}
.y69{bottom:887.101506pt;}
.y271{bottom:889.237363pt;}
.y221{bottom:896.927067pt;}
.y1b0{bottom:899.242018pt;}
.y16e{bottom:900.432173pt;}
.y68{bottom:900.433506pt;}
.y270{bottom:900.567363pt;}
.y220{bottom:908.257067pt;}
.y26f{bottom:911.897363pt;}
.y1af{bottom:912.574018pt;}
.y16d{bottom:913.764173pt;}
.y67{bottom:913.765506pt;}
.y21f{bottom:919.587067pt;}
.y26e{bottom:923.227363pt;}
.y1ae{bottom:925.906018pt;}
.y16c{bottom:927.096173pt;}
.y66{bottom:927.097506pt;}
.y21e{bottom:930.917067pt;}
.y26d{bottom:934.557363pt;}
.y1ad{bottom:939.238018pt;}
.y16b{bottom:940.428173pt;}
.y65{bottom:940.429506pt;}
.y21d{bottom:942.247067pt;}
.y26c{bottom:945.887363pt;}
.y1ac{bottom:952.570018pt;}
.y21c{bottom:953.577067pt;}
.y64{bottom:953.761506pt;}
.y26b{bottom:957.217363pt;}
.y21b{bottom:964.910400pt;}
.y1ab{bottom:965.902018pt;}
.y63{bottom:967.093506pt;}
.y79{bottom:967.150635pt;}
.y26a{bottom:968.547363pt;}
.y7a{bottom:1013.902507pt;}
.y7d{bottom:1013.996908pt;}
.y38{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h1b{height:23.722667pt;}
.h10{height:27.275268pt;}
.h2{height:30.166667pt;}
.h2f{height:31.476562pt;}
.h12{height:32.052083pt;}
.h7{height:34.523438pt;}
.h1c{height:38.359375pt;}
.h30{height:39.560000pt;}
.h32{height:40.080000pt;}
.h3{height:40.604167pt;}
.h31{height:40.960000pt;}
.h15{height:42.195312pt;}
.h11{height:43.141927pt;}
.h6{height:43.718750pt;}
.h13{height:43.866245pt;}
.h33{height:44.834667pt;}
.h8{height:47.472000pt;}
.h9{height:47.523564pt;}
.h2b{height:47.560767pt;}
.h16{height:47.576767pt;}
.h18{height:47.603271pt;}
.h19{height:47.608605pt;}
.hc{height:47.614101pt;}
.h27{height:47.619271pt;}
.h26{height:47.619473pt;}
.h1e{height:47.629613pt;}
.h23{height:47.630101pt;}
.h2c{height:47.634783pt;}
.h2e{height:47.634942pt;}
.ha{height:47.635434pt;}
.h25{height:47.640767pt;}
.h22{height:47.645694pt;}
.he{height:47.646101pt;}
.h28{height:47.646139pt;}
.h1f{height:47.646141pt;}
.h21{height:47.650946pt;}
.h24{height:47.651271pt;}
.hd{height:47.651434pt;}
.h29{height:47.651454pt;}
.h14{height:47.656767pt;}
.h2d{height:47.983919pt;}
.h20{height:48.058667pt;}
.h1d{height:48.080000pt;}
.hb{height:48.096000pt;}
.h2a{height:49.136000pt;}
.h1a{height:49.146667pt;}
.h17{height:49.152000pt;}
.h4{height:50.755208pt;}
.hf{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.xb{left:200.834269pt;}
.x5{left:207.874003pt;}
.x6{left:223.871061pt;}
.xd{left:225.874003pt;}
.xe{left:268.887736pt;}
.x4{left:521.612549pt;}
.xa{left:708.791829pt;}
.x2{left:710.134766pt;}
.xc{left:727.865560pt;}
.x1{left:733.334391pt;}
.x9{left:742.368245pt;}
}




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