
    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_6983078b7f8c4f8315a90157.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_566171ea2ccd8919912b2b3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_43e2bedcdb67b5de60baf9de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_c3a78a04ebee8ddbed7e9114.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_8e3596dc781f8c84634e1452.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.022949;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_0ae7c680aa67c5f1277b1fe8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_fc05b27824dcc81edcaa7603.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_96424de4b34ee05d8a8203b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_2ff7103f469dc7d97314b0c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_3ec4eab163ca8546c794929e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c7231f34a7dde0c69332ade9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.761230;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.040000px;}
.v1{vertical-align:15.118164px;}
.v2{vertical-align:20.879400px;}
.ls2b{letter-spacing:-0.177876px;}
.ls14{letter-spacing:-0.143208px;}
.ls25{letter-spacing:-0.102600px;}
.ls37{letter-spacing:-0.083880px;}
.ls46{letter-spacing:-0.072468px;}
.ls2f{letter-spacing:-0.046116px;}
.ls3d{letter-spacing:-0.039528px;}
.ls12{letter-spacing:-0.033696px;}
.ls2a{letter-spacing:-0.026352px;}
.ls40{letter-spacing:-0.025164px;}
.ls36{letter-spacing:-0.019764px;}
.ls15{letter-spacing:-0.013176px;}
.ls26{letter-spacing:-0.006588px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.006588px;}
.ls3f{letter-spacing:0.010800px;}
.ls28{letter-spacing:0.012636px;}
.ls11{letter-spacing:0.013176px;}
.lsa{letter-spacing:0.016776px;}
.lsb{letter-spacing:0.019764px;}
.ls3{letter-spacing:0.026352px;}
.ls5{letter-spacing:0.032940px;}
.ls31{letter-spacing:0.033552px;}
.ls6{letter-spacing:0.039528px;}
.lse{letter-spacing:0.041940px;}
.ls4{letter-spacing:0.046116px;}
.ls20{letter-spacing:0.050328px;}
.ls0{letter-spacing:0.052704px;}
.ls23{letter-spacing:0.058716px;}
.ls2{letter-spacing:0.059292px;}
.ls7{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.072468px;}
.ls1b{letter-spacing:0.075492px;}
.ls18{letter-spacing:0.079056px;}
.ls17{letter-spacing:0.083880px;}
.lsd{letter-spacing:0.085644px;}
.ls1d{letter-spacing:0.092232px;}
.lsc{letter-spacing:0.098820px;}
.ls21{letter-spacing:0.111996px;}
.ls8{letter-spacing:0.117432px;}
.ls1e{letter-spacing:0.118584px;}
.ls24{letter-spacing:0.125172px;}
.ls13{letter-spacing:0.138996px;}
.ls29{letter-spacing:0.151524px;}
.ls4b{letter-spacing:0.171288px;}
.ls44{letter-spacing:0.177876px;}
.ls4e{letter-spacing:0.184464px;}
.ls34{letter-spacing:0.217404px;}
.ls38{letter-spacing:0.219024px;}
.ls41{letter-spacing:0.263520px;}
.ls35{letter-spacing:0.372600px;}
.lsf{letter-spacing:0.474336px;}
.ls32{letter-spacing:7.312680px;}
.ls2c{letter-spacing:18.466164px;}
.ls45{letter-spacing:29.277072px;}
.ls3a{letter-spacing:32.874120px;}
.ls33{letter-spacing:33.295752px;}
.ls1c{letter-spacing:38.928492px;}
.ls43{letter-spacing:58.066632px;}
.ls42{letter-spacing:60.227496px;}
.ls22{letter-spacing:73.126800px;}
.ls39{letter-spacing:86.217156px;}
.ls2d{letter-spacing:86.869368px;}
.ls4d{letter-spacing:103.855284px;}
.ls1f{letter-spacing:143.387820px;}
.ls3c{letter-spacing:170.385444px;}
.ls2e{letter-spacing:175.787604px;}
.ls19{letter-spacing:190.080468px;}
.ls3e{letter-spacing:194.214240px;}
.ls47{letter-spacing:194.227416px;}
.ls27{letter-spacing:194.866452px;}
.ls3b{letter-spacing:194.873040px;}
.ls48{letter-spacing:433.728000px;}
.ls49{letter-spacing:451.728000px;}
.ls4a{letter-spacing:582.408000px;}
.ls4c{letter-spacing:759.888000px;}
.ls1a{letter-spacing:841.677084px;}
.ls16{letter-spacing:845.826732px;}
.ls30{letter-spacing:846.465768px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4f{word-spacing:-65.880000px;}
.wsb1{word-spacing:-22.387572px;}
.wsd2{word-spacing:-18.354168px;}
.wsae{word-spacing:-18.268524px;}
.ws75{word-spacing:-18.228996px;}
.ws64{word-spacing:-18.222408px;}
.ws14{word-spacing:-18.215820px;}
.ws34{word-spacing:-18.196056px;}
.wsd6{word-spacing:-18.189468px;}
.wsb2{word-spacing:-18.182880px;}
.wsd8{word-spacing:-18.176292px;}
.wsd7{word-spacing:-18.169704px;}
.wsd3{word-spacing:-18.163116px;}
.ws63{word-spacing:-18.156528px;}
.ws73{word-spacing:-17.636076px;}
.wsd9{word-spacing:-17.616312px;}
.wsd0{word-spacing:-17.589960px;}
.wsda{word-spacing:-17.570196px;}
.wsa1{word-spacing:-17.557020px;}
.wsa3{word-spacing:-17.550432px;}
.wsd5{word-spacing:-17.543844px;}
.wsa2{word-spacing:-17.537256px;}
.wsd4{word-spacing:-17.524080px;}
.wsd1{word-spacing:-17.484552px;}
.ws65{word-spacing:-17.477964px;}
.ws72{word-spacing:-14.736600px;}
.wsa0{word-spacing:-14.374800px;}
.ws50{word-spacing:-11.637756px;}
.ws74{word-spacing:-11.422944px;}
.ws15{word-spacing:-11.342916px;}
.ws13{word-spacing:-11.170224px;}
.ws16{word-spacing:-11.060712px;}
.wsa8{word-spacing:-0.441396px;}
.wsdb{word-spacing:-0.316224px;}
.ws71{word-spacing:-0.309636px;}
.ws5b{word-spacing:-0.303048px;}
.ws52{word-spacing:-0.289872px;}
.ws12{word-spacing:-0.276696px;}
.ws3a{word-spacing:-0.270108px;}
.wse{word-spacing:-0.263520px;}
.ws3e{word-spacing:-0.256932px;}
.ws28{word-spacing:-0.250344px;}
.ws2c{word-spacing:-0.243756px;}
.ws9{word-spacing:-0.237168px;}
.ws2f{word-spacing:-0.230580px;}
.ws5{word-spacing:-0.223992px;}
.ws7{word-spacing:-0.217404px;}
.ws4b{word-spacing:-0.210816px;}
.ws1c{word-spacing:-0.204228px;}
.ws1a{word-spacing:-0.197640px;}
.ws66{word-spacing:-0.191052px;}
.ws61{word-spacing:-0.184464px;}
.wsf{word-spacing:-0.177876px;}
.ws59{word-spacing:-0.171288px;}
.wsdf{word-spacing:-0.164700px;}
.wsdd{word-spacing:-0.158112px;}
.wsdc{word-spacing:-0.151524px;}
.ws29{word-spacing:-0.083880px;}
.ws35{word-spacing:-0.075492px;}
.ws58{word-spacing:-0.058716px;}
.wsa5{word-spacing:-0.050328px;}
.ws17{word-spacing:-0.041940px;}
.ws18{word-spacing:-0.016776px;}
.ws0{word-spacing:0.000000px;}
.ws60{word-spacing:0.006588px;}
.ws3b{word-spacing:0.013176px;}
.wsa9{word-spacing:0.019764px;}
.ws2e{word-spacing:0.026352px;}
.ws2{word-spacing:0.032940px;}
.ws8{word-spacing:0.039528px;}
.ws3{word-spacing:0.046116px;}
.ws1{word-spacing:0.052704px;}
.ws5d{word-spacing:0.058716px;}
.ws30{word-spacing:0.059292px;}
.ws11{word-spacing:0.065880px;}
.ws6{word-spacing:0.072468px;}
.ws4{word-spacing:0.079056px;}
.wsb{word-spacing:0.085644px;}
.ws1b{word-spacing:0.092232px;}
.ws19{word-spacing:0.098820px;}
.ws43{word-spacing:0.105408px;}
.ws5c{word-spacing:0.111996px;}
.ws1d{word-spacing:0.118584px;}
.ws84{word-spacing:0.125172px;}
.ws51{word-spacing:0.125820px;}
.ws5f{word-spacing:0.138348px;}
.ws67{word-spacing:0.144936px;}
.ws6a{word-spacing:0.151524px;}
.wsa{word-spacing:0.159372px;}
.wsde{word-spacing:0.164700px;}
.wsaa{word-spacing:0.177876px;}
.ws6f{word-spacing:0.184464px;}
.wsa4{word-spacing:0.385848px;}
.ws5a{word-spacing:0.480924px;}
.ws99{word-spacing:0.500688px;}
.ws9a{word-spacing:0.527040px;}
.wsb5{word-spacing:0.540216px;}
.wsb7{word-spacing:0.803736px;}
.ws53{word-spacing:1.082052px;}
.ws3f{word-spacing:1.113372px;}
.ws41{word-spacing:1.212192px;}
.ws20{word-spacing:1.225368px;}
.ws40{word-spacing:1.231956px;}
.ws1f{word-spacing:1.238544px;}
.ws57{word-spacing:1.594296px;}
.ws56{word-spacing:1.607472px;}
.ws5e{word-spacing:1.851228px;}
.wsb6{word-spacing:1.864404px;}
.ws8f{word-spacing:3.728808px;}
.ws8e{word-spacing:3.748572px;}
.wsc5{word-spacing:4.077972px;}
.ws7d{word-spacing:4.084560px;}
.ws7e{word-spacing:4.104324px;}
.wsa6{word-spacing:4.286268px;}
.ws88{word-spacing:4.433724px;}
.wsa7{word-spacing:4.440312px;}
.ws55{word-spacing:4.446900px;}
.ws87{word-spacing:4.466664px;}
.ws54{word-spacing:4.479840px;}
.wsc6{word-spacing:4.796064px;}
.ws27{word-spacing:4.829004px;}
.wsc7{word-spacing:5.184756px;}
.ws8b{word-spacing:5.454864px;}
.ws8c{word-spacing:5.487804px;}
.ws49{word-spacing:6.614352px;}
.ws96{word-spacing:6.620940px;}
.ws95{word-spacing:6.647292px;}
.ws4a{word-spacing:6.653880px;}
.ws79{word-spacing:6.976692px;}
.ws7a{word-spacing:6.989868px;}
.ws77{word-spacing:7.306092px;}
.ws78{word-spacing:7.325856px;}
.ws76{word-spacing:7.524036px;}
.wsca{word-spacing:7.635492px;}
.wscb{word-spacing:8.024184px;}
.ws86{word-spacing:8.043948px;}
.ws85{word-spacing:8.362836px;}
.wsc8{word-spacing:8.742276px;}
.ws3c{word-spacing:8.775216px;}
.ws3d{word-spacing:8.788392px;}
.wsc9{word-spacing:8.801568px;}
.ws2b{word-spacing:9.473544px;}
.ws2a{word-spacing:9.519660px;}
.ws36{word-spacing:9.829296px;}
.ws37{word-spacing:9.855648px;}
.ws68{word-spacing:10.211400px;}
.ws69{word-spacing:10.217988px;}
.ws22{word-spacing:10.224576px;}
.ws21{word-spacing:10.237752px;}
.ws45{word-spacing:11.305008px;}
.ws46{word-spacing:11.324772px;}
.wsba{word-spacing:12.293208px;}
.wsbb{word-spacing:12.378852px;}
.ws31{word-spacing:13.340700px;}
.ws2d{word-spacing:13.399992px;}
.ws33{word-spacing:13.426344px;}
.ws24{word-spacing:13.439520px;}
.ws32{word-spacing:13.446108px;}
.ws23{word-spacing:13.479048px;}
.ws4c{word-spacing:13.762332px;}
.ws4d{word-spacing:13.815036px;}
.ws4e{word-spacing:13.821624px;}
.wscc{word-spacing:16.641288px;}
.wscd{word-spacing:16.680816px;}
.ws8a{word-spacing:16.997040px;}
.ws44{word-spacing:18.156528px;}
.wsb8{word-spacing:18.426636px;}
.wsbe{word-spacing:18.479340px;}
.wsb9{word-spacing:18.518868px;}
.ws89{word-spacing:18.874620px;}
.ws97{word-spacing:19.935288px;}
.ws98{word-spacing:19.968228px;}
.ws1e{word-spacing:20.297628px;}
.wsc{word-spacing:20.580912px;}
.wsd{word-spacing:20.600676px;}
.ws38{word-spacing:21.285828px;}
.ws39{word-spacing:21.364884px;}
.ws81{word-spacing:21.720636px;}
.ws80{word-spacing:21.733812px;}
.ws7f{word-spacing:21.909456px;}
.ws91{word-spacing:22.115916px;}
.ws92{word-spacing:22.135680px;}
.ws25{word-spacing:23.176584px;}
.ws26{word-spacing:23.196348px;}
.wsc2{word-spacing:26.365176px;}
.wsc1{word-spacing:26.411292px;}
.ws47{word-spacing:28.124172px;}
.ws48{word-spacing:28.196640px;}
.wsbc{word-spacing:29.244132px;}
.wsbd{word-spacing:29.303424px;}
.ws10{word-spacing:31.036068px;}
.wsc3{word-spacing:31.042656px;}
.wsc4{word-spacing:31.075596px;}
.ws42{word-spacing:31.826628px;}
.ws83{word-spacing:33.012468px;}
.ws82{word-spacing:33.190344px;}
.ws7c{word-spacing:33.598800px;}
.ws7b{word-spacing:33.786864px;}
.wsce{word-spacing:33.915024px;}
.wscf{word-spacing:33.961140px;}
.wsab{word-spacing:36.537048px;}
.wsb4{word-spacing:37.485720px;}
.wsb3{word-spacing:37.498896px;}
.ws9d{word-spacing:38.948256px;}
.ws9c{word-spacing:39.000960px;}
.wsc0{word-spacing:39.692700px;}
.wsbf{word-spacing:39.719052px;}
.ws9e{word-spacing:40.107744px;}
.ws6c{word-spacing:48.639204px;}
.ws6d{word-spacing:48.665556px;}
.ws90{word-spacing:80.399952px;}
.ws8d{word-spacing:86.783724px;}
.wsad{word-spacing:86.790312px;}
.ws70{word-spacing:86.803488px;}
.wsac{word-spacing:86.816664px;}
.ws9b{word-spacing:86.823252px;}
.ws6b{word-spacing:86.829840px;}
.ws94{word-spacing:86.836428px;}
.ws6e{word-spacing:86.843016px;}
.ws9f{word-spacing:86.856192px;}
.ws62{word-spacing:139.105620px;}
.ws93{word-spacing:188.074224px;}
.wsb0{word-spacing:194.800572px;}
.wsaf{word-spacing:194.807160px;}
._32{margin-left:-194.761044px;}
._15{margin-left:-86.763960px;}
._16{margin-left:-17.557020px;}
._2{margin-left:-14.440896px;}
._33{margin-left:-10.283868px;}
._d{margin-left:-6.093900px;}
._25{margin-left:-4.677480px;}
._20{margin-left:-2.147688px;}
._1{margin-left:-1.133136px;}
._0{width:1.119960px;}
._a{width:4.170204px;}
._12{width:5.428512px;}
._19{width:7.885836px;}
._35{width:12.339324px;}
._3{width:13.551516px;}
._36{width:16.298712px;}
._9{width:19.421424px;}
._18{width:21.964392px;}
._2e{width:27.168912px;}
._29{width:29.454948px;}
._21{width:31.997916px;}
._37{width:33.934788px;}
._8{width:36.840096px;}
._2a{width:38.585916px;}
._e{width:43.039404px;}
._27{width:47.644416px;}
._5{width:51.570864px;}
._1d{width:59.726808px;}
._c{width:65.754828px;}
._1e{width:69.088356px;}
._1b{width:74.674980px;}
._11{width:76.137516px;}
._13{width:86.763960px;}
._2d{width:91.948716px;}
._26{width:99.538092px;}
._34{width:103.326192px;}
._2b{width:108.530712px;}
._1a{width:110.625696px;}
._1c{width:115.059420px;}
._17{width:122.510448px;}
._31{width:135.001296px;}
._f{width:136.444068px;}
._1f{width:146.187720px;}
._22{width:149.778180px;}
._24{width:151.886340px;}
._14{width:155.522916px;}
._b{width:160.766964px;}
._2c{width:166.715928px;}
._28{width:169.166664px;}
._30{width:175.260564px;}
._23{width:179.687700px;}
._2f{width:186.802740px;}
._4{width:190.080468px;}
._6{width:194.405292px;}
._10{width:195.479136px;}
._7{width:846.788580px;}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(255,192,0);}
.fc4{color:rgb(154,101,0);}
.fc7{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(0,112,192);}
.fc0{color:rgb(0,176,240);}
.fs2{font-size:42.120000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y220{bottom:3.870450px;}
.y20e{bottom:4.230450px;}
.y1bf{bottom:113.251683px;}
.y155{bottom:117.840612px;}
.y27{bottom:126.032349px;}
.y18c{bottom:126.932124px;}
.y121{bottom:129.901260px;}
.y12{bottom:131.342718px;}
.y20b{bottom:133.418784px;}
.y1be{bottom:133.951179px;}
.y154{bottom:135.750090px;}
.y26{bottom:144.032412px;}
.ybc{bottom:144.660900px;}
.y18b{bottom:144.932187px;}
.y120{bottom:147.810738px;}
.y11{bottom:149.252196px;}
.y1bd{bottom:153.481305px;}
.y27a{bottom:154.110450px;}
.y153{bottom:155.370801px;}
.y25{bottom:161.941890px;}
.ybb{bottom:162.660963px;}
.y18a{bottom:162.841665px;}
.y11f{bottom:165.720216px;}
.y10{bottom:167.252259px;}
.y20a{bottom:169.058217px;}
.y1bc{bottom:171.481368px;}
.y152{bottom:173.280279px;}
.y279{bottom:175.530954px;}
.y4d{bottom:179.762880px;}
.y24{bottom:179.941953px;}
.yba{bottom:180.570441px;}
.y189{bottom:180.841728px;}
.yf{bottom:185.252322px;}
.y11e{bottom:185.340927px;}
.y1bb{bottom:189.390846px;}
.y278{bottom:192.000000px;}
.y151{bottom:192.900990px;}
.y23{bottom:194.071566px;}
.y277{bottom:196.230450px;}
.y188{bottom:198.841791px;}
.yb9{bottom:200.100567px;}
.ye{bottom:203.161800px;}
.y11d{bottom:203.250405px;}
.y209{bottom:204.697650px;}
.y1ba{bottom:207.390909px;}
.y150{bottom:210.810468px;}
.y187{bottom:216.751269px;}
.y276{bottom:216.841104px;}
.yb8{bottom:218.100630px;}
.yd{bottom:221.161863px;}
.y11c{bottom:222.871116px;}
.y1b9{bottom:225.390972px;}
.y14f{bottom:230.431179px;}
.y186{bottom:234.751332px;}
.yb7{bottom:236.010108px;}
.y275{bottom:237.540600px;}
.yc{bottom:239.071341px;}
.y208{bottom:240.337083px;}
.y11b{bottom:240.780594px;}
.y1b8{bottom:243.300450px;}
.y25d{bottom:247.980450px;}
.y14e{bottom:248.340657px;}
.y185{bottom:252.751395px;}
.yb6{bottom:255.630819px;}
.yb{bottom:257.071404px;}
.y270{bottom:258.960450px;}
.y11a{bottom:260.401305px;}
.y1b7{bottom:262.290450px;}
.yed{bottom:267.960648px;}
.y14d{bottom:267.961368px;}
.y25c{bottom:270.570450px;}
.y184{bottom:270.660873px;}
.yb5{bottom:273.540297px;}
.y26f{bottom:275.340000px;}
.y207{bottom:276.067101px;}
.y119{bottom:278.310783px;}
.y26e{bottom:279.570954px;}
.ya{bottom:283.981737px;}
.y1b6{bottom:284.161422px;}
.y14c{bottom:285.870846px;}
.yec{bottom:285.960711px;}
.y183{bottom:288.660936px;}
.y25b{bottom:292.440900px;}
.yb4{bottom:293.161008px;}
.y118{bottom:296.310846px;}
.y206{bottom:296.677659px;}
.y26d{bottom:300.270450px;}
.y1b5{bottom:302.070900px;}
.yeb{bottom:303.870189px;}
.y14b{bottom:303.870909px;}
.y182{bottom:306.570414px;}
.y9{bottom:310.981008px;}
.yb3{bottom:311.070486px;}
.y25a{bottom:313.140396px;}
.y117{bottom:314.310909px;}
.y274{bottom:320.880450px;}
.y26c{bottom:320.881554px;}
.y1b4{bottom:321.691611px;}
.yea{bottom:321.779667px;}
.y14a{bottom:321.780387px;}
.y181{bottom:324.570477px;}
.yb2{bottom:329.070549px;}
.y116{bottom:332.220387px;}
.y205{bottom:332.317092px;}
.y259{bottom:333.839892px;}
.y8{bottom:337.891341px;}
.y1b3{bottom:339.601089px;}
.y149{bottom:339.780450px;}
.ye9{bottom:341.400378px;}
.y273{bottom:341.580954px;}
.y26b{bottom:341.581050px;}
.y180{bottom:342.570540px;}
.yb1{bottom:348.600675px;}
.y115{bottom:350.220450px;}
.y204{bottom:353.016588px;}
.y1d7{bottom:353.820981px;}
.y258{bottom:354.450450px;}
.y148{bottom:358.770450px;}
.y1b2{bottom:359.221800px;}
.ye8{bottom:359.400441px;}
.y17f{bottom:361.560450px;}
.y272{bottom:362.280450px;}
.y26a{bottom:362.280546px;}
.y7{bottom:364.890612px;}
.yb0{bottom:366.600738px;}
.y114{bottom:369.211053px;}
.y203{bottom:373.627146px;}
.y257{bottom:375.150450px;}
.y1b1{bottom:377.131278px;}
.ye7{bottom:377.309919px;}
.y147{bottom:380.640711px;}
.y4c{bottom:381.273330px;}
.y265{bottom:381.630600px;}
.y269{bottom:382.891104px;}
.y17e{bottom:383.343789px;}
.yaf{bottom:386.130864px;}
.y1d6{bottom:389.460414px;}
.y6{bottom:391.800945px;}
.y113{bottom:392.070450px;}
.y256{bottom:396.390450px;}
.y1b0{bottom:396.751989px;}
.ye6{bottom:396.930630px;}
.y146{bottom:398.550189px;}
.y17d{bottom:401.343852px;}
.y264{bottom:403.590042px;}
.y268{bottom:403.590600px;}
.yae{bottom:404.130927px;}
.y202{bottom:409.357164px;}
.y1af{bottom:414.661467px;}
.ye5{bottom:414.840108px;}
.y145{bottom:416.550252px;}
.y4b{bottom:416.912763px;}
.y5{bottom:418.800216px;}
.y255{bottom:418.980450px;}
.y17c{bottom:419.343915px;}
.yad{bottom:422.040405px;}
.y263{bottom:424.200600px;}
.y271{bottom:424.200954px;}
.y267{bottom:424.201050px;}
.y201{bottom:427.266642px;}
.y112{bottom:431.940972px;}
.y1ae{bottom:432.661530px;}
.ye4{bottom:432.749586px;}
.y144{bottom:436.080378px;}
.y17b{bottom:437.253393px;}
.y254{bottom:441.480450px;}
.yac{bottom:441.661116px;}
.y262{bottom:444.900450px;}
.y266{bottom:444.900546px;}
.y200{bottom:445.266705px;}
.y4{bottom:445.710549px;}
.y111{bottom:449.850450px;}
.y1ad{bottom:450.571008px;}
.ye3{bottom:452.370297px;}
.y4a{bottom:452.642781px;}
.y143{bottom:454.080441px;}
.y17a{bottom:455.253456px;}
.yab{bottom:459.570594px;}
.y1ff{bottom:463.266768px;}
.y253{bottom:463.980450px;}
.y261{bottom:465.511104px;}
.y110{bottom:467.851332px;}
.y1ac{bottom:470.191719px;}
.ye2{bottom:470.279775px;}
.y142{bottom:471.989919px;}
.y3{bottom:472.709820px;}
.y49{bottom:473.253339px;}
.y179{bottom:473.253519px;}
.yaa{bottom:479.191305px;}
.y1fe{bottom:481.176246px;}
.y10f{bottom:485.851395px;}
.y260{bottom:486.210600px;}
.y252{bottom:486.570450px;}
.y1ab{bottom:488.101197px;}
.ye1{bottom:489.900486px;}
.y178{bottom:491.162997px;}
.y141{bottom:491.610630px;}
.y86{bottom:493.774536px;}
.y48{bottom:493.952835px;}
.ya9{bottom:497.100783px;}
.y1fd{bottom:499.176309px;}
.y10e{bottom:503.760873px;}
.y2{bottom:504.480450px;}
.y25f{bottom:506.100000px;}
.y1aa{bottom:506.101260px;}
.ye0{bottom:507.809964px;}
.y251{bottom:509.070450px;}
.y177{bottom:509.163060px;}
.y140{bottom:509.520108px;}
.y25e{bottom:510.330450px;}
.y85{bottom:511.774599px;}
.y47{bottom:514.563393px;}
.ya8{bottom:515.100846px;}
.y1fc{bottom:517.085787px;}
.y10d{bottom:521.760936px;}
.y1a9{bottom:525.631386px;}
.y176{bottom:527.072538px;}
.ydf{bottom:527.430675px;}
.y13f{bottom:529.140819px;}
.y84{bottom:529.774662px;}
.y250{bottom:531.750954px;}
.ya7{bottom:533.100909px;}
.y1fb{bottom:535.085850px;}
.y10c{bottom:539.670414px;}
.y1a8{bottom:543.631449px;}
.y175{bottom:545.072601px;}
.yde{bottom:545.340153px;}
.y22{bottom:546.690972px;}
.y13e{bottom:547.050297px;}
.y83{bottom:547.684140px;}
.y46{bottom:550.293411px;}
.ya6{bottom:551.010387px;}
.y24f{bottom:552.450450px;}
.y1fa{bottom:553.085913px;}
.y10b{bottom:557.670477px;}
.y1a7{bottom:561.631512px;}
.y174{bottom:563.072664px;}
.ydd{bottom:563.340216px;}
.y21{bottom:564.691035px;}
.y82{bottom:565.684203px;}
.y13d{bottom:566.671008px;}
.ya5{bottom:569.010450px;}
.y1f9{bottom:570.995391px;}
.y24e{bottom:573.060954px;}
.y10a{bottom:575.670540px;}
.y1a6{bottom:579.540990px;}
.y173{bottom:580.982142px;}
.y20{bottom:582.691098px;}
.ydc{bottom:582.960927px;}
.y81{bottom:583.593681px;}
.y13c{bottom:584.580486px;}
.y45{bottom:585.932844px;}
.ya4{bottom:588.001053px;}
.y1f8{bottom:588.995454px;}
.y24d{bottom:593.760450px;}
.y109{bottom:594.660450px;}
.y172{bottom:598.982205px;}
.y1a5{bottom:599.071116px;}
.y1f{bottom:600.600576px;}
.y80{bottom:601.593744px;}
.ydb{bottom:602.400468px;}
.y13b{bottom:604.110612px;}
.y23b{bottom:606.180396px;}
.y44{bottom:606.543402px;}
.y1f7{bottom:606.995517px;}
.ya3{bottom:610.860450px;}
.y24c{bottom:615.179892px;}
.y247{bottom:615.180396px;}
.y108{bottom:616.441080px;}
.y1a4{bottom:617.071179px;}
.y171{bottom:618.512331px;}
.y1e{bottom:618.600639px;}
.y7f{bottom:619.593807px;}
.yda{bottom:622.021179px;}
.y13a{bottom:622.110675px;}
.y1f6{bottom:624.904995px;}
.y23a{bottom:626.879892px;}
.y43{bottom:627.242898px;}
.ya2{bottom:632.733843px;}
.y24b{bottom:635.790450px;}
.y246{bottom:635.790954px;}
.y107{bottom:636.061791px;}
.y170{bottom:636.512394px;}
.y1d{bottom:636.600702px;}
.y1a3{bottom:636.601305px;}
.y7e{bottom:637.503285px;}
.yd9{bottom:639.930657px;}
.y139{bottom:641.640801px;}
.y1f5{bottom:642.905058px;}
.y239{bottom:647.490450px;}
.y42{bottom:647.942394px;}
.ya1{bottom:650.643321px;}
.y106{bottom:653.971269px;}
.y16f{bottom:654.421872px;}
.y1c{bottom:654.510180px;}
.y1a2{bottom:654.601368px;}
.y7d{bottom:655.503348px;}
.y245{bottom:656.490450px;}
.y24a{bottom:656.490954px;}
.yd8{bottom:659.460783px;}
.y138{bottom:659.640864px;}
.y1f4{bottom:660.814536px;}
.ya0{bottom:668.643384px;}
.y238{bottom:668.820450px;}
.y105{bottom:671.971332px;}
.y16e{bottom:672.421935px;}
.y1b{bottom:672.510243px;}
.y1a1{bottom:672.601431px;}
.y7c{bottom:673.503411px;}
.y242{bottom:675.930450px;}
.y244{bottom:677.190396px;}
.y249{bottom:677.190450px;}
.yd7{bottom:677.460846px;}
.y137{bottom:677.550342px;}
.y1f3{bottom:678.814599px;}
.y41{bottom:683.581827px;}
.y1a{bottom:686.550918px;}
.y9f{bottom:686.552862px;}
.y104{bottom:689.971395px;}
.y16d{bottom:690.421998px;}
.y1a0{bottom:690.510909px;}
.y237{bottom:691.320450px;}
.y7b{bottom:691.412889px;}
.yd6{bottom:695.460909px;}
.y1f2{bottom:696.814662px;}
.y136{bottom:697.171053px;}
.y248{bottom:697.800450px;}
.y241{bottom:697.800954px;}
.y40{bottom:701.491305px;}
.y9e{bottom:707.252358px;}
.y103{bottom:707.880873px;}
.y16c{bottom:708.331476px;}
.y19f{bottom:708.510972px;}
.y7a{bottom:709.412952px;}
.yd5{bottom:713.370387px;}
.y236{bottom:713.820450px;}
.y1f1{bottom:714.724140px;}
.y135{bottom:715.080531px;}
.y240{bottom:718.500450px;}
.y3f{bottom:719.491368px;}
.y102{bottom:725.880936px;}
.y16b{bottom:726.331539px;}
.y19e{bottom:726.420450px;}
.y79{bottom:727.322430px;}
.y9d{bottom:727.951854px;}
.yd4{bottom:731.370450px;}
.y62{bottom:731.639871px;}
.y1f0{bottom:732.724203px;}
.y134{bottom:734.701242px;}
.y235{bottom:736.410450px;}
.y3e{bottom:737.491431px;}
.y23f{bottom:739.110450px;}
.y243{bottom:739.110954px;}
.y101{bottom:743.790414px;}
.y16a{bottom:744.331602px;}
.y78{bottom:745.322493px;}
.y19d{bottom:745.500450px;}
.y9c{bottom:745.861332px;}
.yd3{bottom:750.360450px;}
.y1ef{bottom:750.724266px;}
.y133{bottom:752.610720px;}
.y3d{bottom:755.400909px;}
.y234{bottom:758.910450px;}
.y23e{bottom:759.810450px;}
.y100{bottom:761.790477px;}
.y169{bottom:762.241080px;}
.y77{bottom:763.322556px;}
.y9b{bottom:763.861395px;}
.y19c{bottom:767.280630px;}
.y1ee{bottom:768.633744px;}
.yd2{bottom:772.231134px;}
.y132{bottom:772.231431px;}
.y61{bottom:772.860600px;}
.y3c{bottom:773.400972px;}
.y23d{bottom:778.530000px;}
.yff{bottom:779.790540px;}
.y168{bottom:780.150558px;}
.y76{bottom:781.232034px;}
.y233{bottom:781.500450px;}
.y9a{bottom:781.770873px;}
.y23c{bottom:782.760450px;}
.y19b{bottom:785.280693px;}
.y1ed{bottom:786.633807px;}
.yd1{bottom:790.140612px;}
.y131{bottom:790.140909px;}
.y3b{bottom:791.311242px;}
.yfe{bottom:798.780450px;}
.y75{bottom:799.232097px;}
.y99{bottom:799.770936px;}
.y167{bottom:799.771269px;}
.y19a{bottom:803.190171px;}
.y232{bottom:804.180042px;}
.y1ec{bottom:804.543285px;}
.yd0{bottom:808.140675px;}
.y130{bottom:808.140972px;}
.y3a{bottom:809.311305px;}
.y60{bottom:812.642889px;}
.y74{bottom:817.232160px;}
.y98{bottom:817.770999px;}
.y166{bottom:817.771332px;}
.yfd{bottom:820.560684px;}
.y1eb{bottom:822.543348px;}
.y199{bottom:822.810882px;}
.y231{bottom:824.790600px;}
.ycf{bottom:826.050153px;}
.y12f{bottom:826.050450px;}
.y39{bottom:827.311368px;}
.y5f{bottom:830.642952px;}
.y73{bottom:835.141638px;}
.y97{bottom:835.680477px;}
.y165{bottom:835.680810px;}
.yfc{bottom:840.181395px;}
.y1ea{bottom:840.543411px;}
.y198{bottom:840.720360px;}
.y1ce{bottom:842.878008px;}
.y12e{bottom:845.130450px;}
.y38{bottom:845.220846px;}
.y230{bottom:845.489892px;}
.yce{bottom:845.670864px;}
.y5e{bottom:848.552430px;}
.y72{bottom:853.141701px;}
.y96{bottom:853.680540px;}
.y164{bottom:853.680873px;}
.yfb{bottom:858.090873px;}
.y1e9{bottom:858.452889px;}
.y197{bottom:860.341071px;}
.y37{bottom:863.220909px;}
.y1cd{bottom:863.577504px;}
.ycd{bottom:863.580342px;}
.y22f{bottom:866.100450px;}
.y5d{bottom:866.552493px;}
.y12d{bottom:866.912679px;}
.y71{bottom:871.051179px;}
.y163{bottom:871.680936px;}
.y95{bottom:872.670450px;}
.yfa{bottom:876.090936px;}
.y1e8{bottom:876.452952px;}
.y196{bottom:878.250549px;}
.y36{bottom:881.220972px;}
.ycc{bottom:883.201053px;}
.y1cc{bottom:884.188062px;}
.y5c{bottom:884.552556px;}
.y12c{bottom:884.912742px;}
.y229{bottom:887.520450px;}
.y70{bottom:889.051242px;}
.y162{bottom:889.590414px;}
.yf9{bottom:894.000414px;}
.y1e7{bottom:894.453015px;}
.y94{bottom:894.541269px;}
.y219{bottom:896.791458px;}
.y195{bottom:897.780675px;}
.y35{bottom:899.131242px;}
.ycb{bottom:901.110531px;}
.y5b{bottom:902.462034px;}
.y12b{bottom:902.822220px;}
.y1cb{bottom:906.417621px;}
.y6f{bottom:907.051305px;}
.y161{bottom:907.590477px;}
.y22e{bottom:908.219892px;}
.y228{bottom:908.220450px;}
.yf8{bottom:912.000477px;}
.y1e6{bottom:912.362493px;}
.y93{bottom:912.450747px;}
.y194{bottom:915.780738px;}
.y34{bottom:917.131305px;}
.y218{bottom:917.490954px;}
.y5a{bottom:920.462097px;}
.y1d5{bottom:920.550387px;}
.yca{bottom:920.731242px;}
.y12a{bottom:920.822283px;}
.y6e{bottom:924.960783px;}
.y160{bottom:925.499955px;}
.y1ca{bottom:927.117117px;}
.y22d{bottom:928.830450px;}
.y227{bottom:928.830954px;}
.yf7{bottom:930.000540px;}
.y1e5{bottom:930.362556px;}
.y92{bottom:932.071458px;}
.y193{bottom:933.690216px;}
.y33{bottom:935.040783px;}
.y217{bottom:938.190450px;}
.y59{bottom:938.371575px;}
.y1d4{bottom:938.550450px;}
.yc9{bottom:938.640720px;}
.y129{bottom:938.731761px;}
.y6d{bottom:942.960846px;}
.y15f{bottom:944.580450px;}
.y1e4{bottom:948.272034px;}
.yf6{bottom:948.990450px;}
.y1c9{bottom:949.346676px;}
.y226{bottom:949.530450px;}
.y22c{bottom:949.530954px;}
.y91{bottom:949.980936px;}
.y32{bottom:953.040846px;}
.y192{bottom:953.310927px;}
.y58{bottom:956.371638px;}
.y1d3{bottom:957.540600px;}
.yc8{bottom:958.170846px;}
.y128{bottom:958.352472px;}
.y216{bottom:959.430450px;}
.y6c{bottom:960.960909px;}
.y1e3{bottom:966.272097px;}
.y15e{bottom:966.360288px;}
.y90{bottom:967.980999px;}
.y1c8{bottom:969.957234px;}
.y225{bottom:970.229892px;}
.y22b{bottom:970.230450px;}
.yf5{bottom:970.770225px;}
.y31{bottom:971.040909px;}
.y191{bottom:971.220405px;}
.y57{bottom:974.371701px;}
.yc7{bottom:976.170909px;}
.y127{bottom:976.352535px;}
.y6b{bottom:978.870387px;}
.y1d2{bottom:979.321638px;}
.y215{bottom:981.930450px;}
.y1e2{bottom:984.272160px;}
.y15d{bottom:985.890414px;}
.y8f{bottom:985.890477px;}
.y30{bottom:988.950387px;}
.yf4{bottom:990.390936px;}
.y224{bottom:990.840450px;}
.y22a{bottom:990.840954px;}
.y190{bottom:990.841116px;}
.y1c7{bottom:992.277378px;}
.y56{bottom:992.281179px;}
.yc6{bottom:994.170972px;}
.y126{bottom:994.262013px;}
.y6a{bottom:996.870450px;}
.y1d1{bottom:997.321701px;}
.y1e1{bottom:1002.181638px;}
.y15c{bottom:1003.890477px;}
.y8e{bottom:1003.890540px;}
.y214{bottom:1004.520450px;}
.y2f{bottom:1006.950783px;}
.yf3{bottom:1008.300414px;}
.y18f{bottom:1008.750594px;}
.y55{bottom:1010.281242px;}
.y223{bottom:1011.540450px;}
.yc5{bottom:1012.080450px;}
.y1c6{bottom:1012.887936px;}
.y125{bottom:1013.792139px;}
.y69{bottom:1014.780720px;}
.y1d0{bottom:1015.321764px;}
.y1e0{bottom:1020.181701px;}
.y15b{bottom:1021.890540px;}
.y8d{bottom:1022.880450px;}
.y2e{bottom:1024.950846px;}
.yf2{bottom:1026.300477px;}
.y18e{bottom:1026.750657px;}
.y213{bottom:1027.020450px;}
.y54{bottom:1028.281305px;}
.yc4{bottom:1031.070450px;}
.y124{bottom:1031.792202px;}
.y222{bottom:1032.150396px;}
.y21e{bottom:1032.150450px;}
.y68{bottom:1032.780783px;}
.y1cf{bottom:1033.231242px;}
.y1c5{bottom:1035.208080px;}
.y1df{bottom:1038.181764px;}
.y15a{bottom:1040.880450px;}
.y2d{bottom:1042.860324px;}
.yf1{bottom:1044.300540px;}
.y8c{bottom:1044.661782px;}
.y53{bottom:1046.190783px;}
.y18d{bottom:1046.280783px;}
.y212{bottom:1049.610450px;}
.y67{bottom:1050.780846px;}
.y19{bottom:1051.231305px;}
.y123{bottom:1051.322328px;}
.y221{bottom:1052.849892px;}
.y21d{bottom:1052.850450px;}
.yc3{bottom:1052.942976px;}
.y1c4{bottom:1055.818638px;}
.y1de{bottom:1056.091242px;}
.y2c{bottom:1060.860387px;}
.y159{bottom:1062.660198px;}
.yf0{bottom:1063.290450px;}
.y52{bottom:1064.190846px;}
.y8b{bottom:1064.280846px;}
.y66{bottom:1068.690324px;}
.y18{bottom:1069.140783px;}
.y122{bottom:1069.322391px;}
.y21f{bottom:1069.590000px;}
.yc2{bottom:1070.943039px;}
.y211{bottom:1072.110450px;}
.y21c{bottom:1073.460450px;}
.y1dd{bottom:1074.091305px;}
.y1c3{bottom:1076.429196px;}
.y2b{bottom:1078.860909px;}
.y51{bottom:1082.100324px;}
.y8a{bottom:1082.280909px;}
.yef{bottom:1085.070261px;}
.y65{bottom:1086.690387px;}
.y17{bottom:1087.140846px;}
.y158{bottom:1087.231869px;}
.yc1{bottom:1088.852517px;}
.y21b{bottom:1091.730000px;}
.y1dc{bottom:1092.000783px;}
.y210{bottom:1094.700450px;}
.y21a{bottom:1095.960450px;}
.y2a{bottom:1096.770387px;}
.y1c2{bottom:1098.749340px;}
.y50{bottom:1100.100387px;}
.y89{bottom:1100.190387px;}
.y64{bottom:1104.690450px;}
.yee{bottom:1104.690972px;}
.y16{bottom:1105.140909px;}
.yc0{bottom:1106.761995px;}
.y157{bottom:1106.852580px;}
.y1db{bottom:1110.000846px;}
.y29{bottom:1114.770450px;}
.y4f{bottom:1118.100450px;}
.y88{bottom:1118.190450px;}
.y1c1{bottom:1119.359898px;}
.y63{bottom:1122.600450px;}
.y15{bottom:1123.050387px;}
.y20d{bottom:1124.040000px;}
.y156{bottom:1124.762058px;}
.ybf{bottom:1126.381059px;}
.y20c{bottom:1127.010450px;}
.y1da{bottom:1128.000909px;}
.y20f{bottom:1128.270450px;}
.y28{bottom:1133.760450px;}
.y87{bottom:1137.180450px;}
.y4e{bottom:1137.181203px;}
.y14{bottom:1141.050450px;}
.y1c0{bottom:1141.680042px;}
.ybe{bottom:1144.381122px;}
.y1d9{bottom:1145.910387px;}
.y13{bottom:1160.040600px;}
.y1{bottom:1160.130450px;}
.ybd{bottom:1162.290600px;}
.y1d8{bottom:1163.910450px;}
.hb{height:17.910000px;}
.h7{height:18.270000px;}
.h15{height:20.700000px;}
.h2{height:49.410000px;}
.h4{height:54.010020px;}
.h3{height:54.685547px;}
.h5{height:54.878555px;}
.h14{height:59.022928px;}
.h17{height:59.024728px;}
.he{height:59.025328px;}
.h16{height:59.025928px;}
.h8{height:59.027344px;}
.h11{height:59.027560px;}
.hf{height:59.028976px;}
.hd{height:59.029576px;}
.ha{height:59.762193px;}
.h13{height:59.763009px;}
.h10{height:59.763609px;}
.h12{height:59.763825px;}
.h9{height:59.765625px;}
.hc{height:59.765841px;}
.h6{height:64.067344px;}
.h1{height:69.626953px;}
.h0{height:1263.000000px;}
.w3{width:4.410000px;}
.w4{width:8.100000px;}
.w5{width:8.820000px;}
.w2{width:11.970000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1f{left:84.600000px;}
.xf{left:127.620000px;}
.x7{left:137.612070px;}
.x15{left:154.620000px;}
.x6{left:157.412304px;}
.xe{left:180.723942px;}
.x22{left:198.000000px;}
.x4{left:231.481188px;}
.x17{left:233.820000px;}
.x16{left:235.620000px;}
.x9{left:240.211935px;}
.x19{left:275.760000px;}
.x18{left:286.918758px;}
.x5{left:295.381494px;}
.xa{left:297.542358px;}
.x1b{left:299.249847px;}
.xd{left:307.533060px;}
.x8{left:319.771917px;}
.xb{left:323.551782px;}
.xc{left:324.902322px;}
.x1d{left:338.040000px;}
.x14{left:360.720702px;}
.x1a{left:373.050270px;}
.x29{left:384.210000px;}
.x13{left:395.369496px;}
.x1{left:398.160000px;}
.x25{left:401.490000px;}
.x1c{left:404.639730px;}
.x23{left:410.220000px;}
.x11{left:418.050333px;}
.x12{left:421.650675px;}
.x3{left:446.490450px;}
.x1e{left:459.990000px;}
.x20{left:491.490000px;}
.x26{left:499.230000px;}
.x27{left:503.640000px;}
.x28{left:587.790000px;}
.x21{left:604.350000px;}
.x24{left:613.080000px;}
.x10{left:707.039541px;}
.x2{left:804.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.480000pt;}
.v1{vertical-align:13.438368pt;}
.v2{vertical-align:18.559467pt;}
.ls2b{letter-spacing:-0.158112pt;}
.ls14{letter-spacing:-0.127296pt;}
.ls25{letter-spacing:-0.091200pt;}
.ls37{letter-spacing:-0.074560pt;}
.ls46{letter-spacing:-0.064416pt;}
.ls2f{letter-spacing:-0.040992pt;}
.ls3d{letter-spacing:-0.035136pt;}
.ls12{letter-spacing:-0.029952pt;}
.ls2a{letter-spacing:-0.023424pt;}
.ls40{letter-spacing:-0.022368pt;}
.ls36{letter-spacing:-0.017568pt;}
.ls15{letter-spacing:-0.011712pt;}
.ls26{letter-spacing:-0.005856pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005856pt;}
.ls3f{letter-spacing:0.009600pt;}
.ls28{letter-spacing:0.011232pt;}
.ls11{letter-spacing:0.011712pt;}
.lsa{letter-spacing:0.014912pt;}
.lsb{letter-spacing:0.017568pt;}
.ls3{letter-spacing:0.023424pt;}
.ls5{letter-spacing:0.029280pt;}
.ls31{letter-spacing:0.029824pt;}
.ls6{letter-spacing:0.035136pt;}
.lse{letter-spacing:0.037280pt;}
.ls4{letter-spacing:0.040992pt;}
.ls20{letter-spacing:0.044736pt;}
.ls0{letter-spacing:0.046848pt;}
.ls23{letter-spacing:0.052192pt;}
.ls2{letter-spacing:0.052704pt;}
.ls7{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.064416pt;}
.ls1b{letter-spacing:0.067104pt;}
.ls18{letter-spacing:0.070272pt;}
.ls17{letter-spacing:0.074560pt;}
.lsd{letter-spacing:0.076128pt;}
.ls1d{letter-spacing:0.081984pt;}
.lsc{letter-spacing:0.087840pt;}
.ls21{letter-spacing:0.099552pt;}
.ls8{letter-spacing:0.104384pt;}
.ls1e{letter-spacing:0.105408pt;}
.ls24{letter-spacing:0.111264pt;}
.ls13{letter-spacing:0.123552pt;}
.ls29{letter-spacing:0.134688pt;}
.ls4b{letter-spacing:0.152256pt;}
.ls44{letter-spacing:0.158112pt;}
.ls4e{letter-spacing:0.163968pt;}
.ls34{letter-spacing:0.193248pt;}
.ls38{letter-spacing:0.194688pt;}
.ls41{letter-spacing:0.234240pt;}
.ls35{letter-spacing:0.331200pt;}
.lsf{letter-spacing:0.421632pt;}
.ls32{letter-spacing:6.500160pt;}
.ls2c{letter-spacing:16.414368pt;}
.ls45{letter-spacing:26.024064pt;}
.ls3a{letter-spacing:29.221440pt;}
.ls33{letter-spacing:29.596224pt;}
.ls1c{letter-spacing:34.603104pt;}
.ls43{letter-spacing:51.614784pt;}
.ls42{letter-spacing:53.535552pt;}
.ls22{letter-spacing:65.001600pt;}
.ls39{letter-spacing:76.637472pt;}
.ls2d{letter-spacing:77.217216pt;}
.ls4d{letter-spacing:92.315808pt;}
.ls1f{letter-spacing:127.455840pt;}
.ls3c{letter-spacing:151.453728pt;}
.ls2e{letter-spacing:156.255648pt;}
.ls19{letter-spacing:168.960416pt;}
.ls3e{letter-spacing:172.634880pt;}
.ls47{letter-spacing:172.646592pt;}
.ls27{letter-spacing:173.214624pt;}
.ls3b{letter-spacing:173.220480pt;}
.ls48{letter-spacing:385.536000pt;}
.ls49{letter-spacing:401.536000pt;}
.ls4a{letter-spacing:517.696000pt;}
.ls4c{letter-spacing:675.456000pt;}
.ls1a{letter-spacing:748.157408pt;}
.ls16{letter-spacing:751.845984pt;}
.ls30{letter-spacing:752.414016pt;}
.ws4f{word-spacing:-58.560000pt;}
.wsb1{word-spacing:-19.900064pt;}
.wsd2{word-spacing:-16.314816pt;}
.wsae{word-spacing:-16.238688pt;}
.ws75{word-spacing:-16.203552pt;}
.ws64{word-spacing:-16.197696pt;}
.ws14{word-spacing:-16.191840pt;}
.ws34{word-spacing:-16.174272pt;}
.wsd6{word-spacing:-16.168416pt;}
.wsb2{word-spacing:-16.162560pt;}
.wsd8{word-spacing:-16.156704pt;}
.wsd7{word-spacing:-16.150848pt;}
.wsd3{word-spacing:-16.144992pt;}
.ws63{word-spacing:-16.139136pt;}
.ws73{word-spacing:-15.676512pt;}
.wsd9{word-spacing:-15.658944pt;}
.wsd0{word-spacing:-15.635520pt;}
.wsda{word-spacing:-15.617952pt;}
.wsa1{word-spacing:-15.606240pt;}
.wsa3{word-spacing:-15.600384pt;}
.wsd5{word-spacing:-15.594528pt;}
.wsa2{word-spacing:-15.588672pt;}
.wsd4{word-spacing:-15.576960pt;}
.wsd1{word-spacing:-15.541824pt;}
.ws65{word-spacing:-15.535968pt;}
.ws72{word-spacing:-13.099200pt;}
.wsa0{word-spacing:-12.777600pt;}
.ws50{word-spacing:-10.344672pt;}
.ws74{word-spacing:-10.153728pt;}
.ws15{word-spacing:-10.082592pt;}
.ws13{word-spacing:-9.929088pt;}
.ws16{word-spacing:-9.831744pt;}
.wsa8{word-spacing:-0.392352pt;}
.wsdb{word-spacing:-0.281088pt;}
.ws71{word-spacing:-0.275232pt;}
.ws5b{word-spacing:-0.269376pt;}
.ws52{word-spacing:-0.257664pt;}
.ws12{word-spacing:-0.245952pt;}
.ws3a{word-spacing:-0.240096pt;}
.wse{word-spacing:-0.234240pt;}
.ws3e{word-spacing:-0.228384pt;}
.ws28{word-spacing:-0.222528pt;}
.ws2c{word-spacing:-0.216672pt;}
.ws9{word-spacing:-0.210816pt;}
.ws2f{word-spacing:-0.204960pt;}
.ws5{word-spacing:-0.199104pt;}
.ws7{word-spacing:-0.193248pt;}
.ws4b{word-spacing:-0.187392pt;}
.ws1c{word-spacing:-0.181536pt;}
.ws1a{word-spacing:-0.175680pt;}
.ws66{word-spacing:-0.169824pt;}
.ws61{word-spacing:-0.163968pt;}
.wsf{word-spacing:-0.158112pt;}
.ws59{word-spacing:-0.152256pt;}
.wsdf{word-spacing:-0.146400pt;}
.wsdd{word-spacing:-0.140544pt;}
.wsdc{word-spacing:-0.134688pt;}
.ws29{word-spacing:-0.074560pt;}
.ws35{word-spacing:-0.067104pt;}
.ws58{word-spacing:-0.052192pt;}
.wsa5{word-spacing:-0.044736pt;}
.ws17{word-spacing:-0.037280pt;}
.ws18{word-spacing:-0.014912pt;}
.ws0{word-spacing:0.000000pt;}
.ws60{word-spacing:0.005856pt;}
.ws3b{word-spacing:0.011712pt;}
.wsa9{word-spacing:0.017568pt;}
.ws2e{word-spacing:0.023424pt;}
.ws2{word-spacing:0.029280pt;}
.ws8{word-spacing:0.035136pt;}
.ws3{word-spacing:0.040992pt;}
.ws1{word-spacing:0.046848pt;}
.ws5d{word-spacing:0.052192pt;}
.ws30{word-spacing:0.052704pt;}
.ws11{word-spacing:0.058560pt;}
.ws6{word-spacing:0.064416pt;}
.ws4{word-spacing:0.070272pt;}
.wsb{word-spacing:0.076128pt;}
.ws1b{word-spacing:0.081984pt;}
.ws19{word-spacing:0.087840pt;}
.ws43{word-spacing:0.093696pt;}
.ws5c{word-spacing:0.099552pt;}
.ws1d{word-spacing:0.105408pt;}
.ws84{word-spacing:0.111264pt;}
.ws51{word-spacing:0.111840pt;}
.ws5f{word-spacing:0.122976pt;}
.ws67{word-spacing:0.128832pt;}
.ws6a{word-spacing:0.134688pt;}
.wsa{word-spacing:0.141664pt;}
.wsde{word-spacing:0.146400pt;}
.wsaa{word-spacing:0.158112pt;}
.ws6f{word-spacing:0.163968pt;}
.wsa4{word-spacing:0.342976pt;}
.ws5a{word-spacing:0.427488pt;}
.ws99{word-spacing:0.445056pt;}
.ws9a{word-spacing:0.468480pt;}
.wsb5{word-spacing:0.480192pt;}
.wsb7{word-spacing:0.714432pt;}
.ws53{word-spacing:0.961824pt;}
.ws3f{word-spacing:0.989664pt;}
.ws41{word-spacing:1.077504pt;}
.ws20{word-spacing:1.089216pt;}
.ws40{word-spacing:1.095072pt;}
.ws1f{word-spacing:1.100928pt;}
.ws57{word-spacing:1.417152pt;}
.ws56{word-spacing:1.428864pt;}
.ws5e{word-spacing:1.645536pt;}
.wsb6{word-spacing:1.657248pt;}
.ws8f{word-spacing:3.314496pt;}
.ws8e{word-spacing:3.332064pt;}
.wsc5{word-spacing:3.624864pt;}
.ws7d{word-spacing:3.630720pt;}
.ws7e{word-spacing:3.648288pt;}
.wsa6{word-spacing:3.810016pt;}
.ws88{word-spacing:3.941088pt;}
.wsa7{word-spacing:3.946944pt;}
.ws55{word-spacing:3.952800pt;}
.ws87{word-spacing:3.970368pt;}
.ws54{word-spacing:3.982080pt;}
.wsc6{word-spacing:4.263168pt;}
.ws27{word-spacing:4.292448pt;}
.wsc7{word-spacing:4.608672pt;}
.ws8b{word-spacing:4.848768pt;}
.ws8c{word-spacing:4.878048pt;}
.ws49{word-spacing:5.879424pt;}
.ws96{word-spacing:5.885280pt;}
.ws95{word-spacing:5.908704pt;}
.ws4a{word-spacing:5.914560pt;}
.ws79{word-spacing:6.201504pt;}
.ws7a{word-spacing:6.213216pt;}
.ws77{word-spacing:6.494304pt;}
.ws78{word-spacing:6.511872pt;}
.ws76{word-spacing:6.688032pt;}
.wsca{word-spacing:6.787104pt;}
.wscb{word-spacing:7.132608pt;}
.ws86{word-spacing:7.150176pt;}
.ws85{word-spacing:7.433632pt;}
.wsc8{word-spacing:7.770912pt;}
.ws3c{word-spacing:7.800192pt;}
.ws3d{word-spacing:7.811904pt;}
.wsc9{word-spacing:7.823616pt;}
.ws2b{word-spacing:8.420928pt;}
.ws2a{word-spacing:8.461920pt;}
.ws36{word-spacing:8.737152pt;}
.ws37{word-spacing:8.760576pt;}
.ws68{word-spacing:9.076800pt;}
.ws69{word-spacing:9.082656pt;}
.ws22{word-spacing:9.088512pt;}
.ws21{word-spacing:9.100224pt;}
.ws45{word-spacing:10.048896pt;}
.ws46{word-spacing:10.066464pt;}
.wsba{word-spacing:10.927296pt;}
.wsbb{word-spacing:11.003424pt;}
.ws31{word-spacing:11.858400pt;}
.ws2d{word-spacing:11.911104pt;}
.ws33{word-spacing:11.934528pt;}
.ws24{word-spacing:11.946240pt;}
.ws32{word-spacing:11.952096pt;}
.ws23{word-spacing:11.981376pt;}
.ws4c{word-spacing:12.233184pt;}
.ws4d{word-spacing:12.280032pt;}
.ws4e{word-spacing:12.285888pt;}
.wscc{word-spacing:14.792256pt;}
.wscd{word-spacing:14.827392pt;}
.ws8a{word-spacing:15.108480pt;}
.ws44{word-spacing:16.139136pt;}
.wsb8{word-spacing:16.379232pt;}
.wsbe{word-spacing:16.426080pt;}
.wsb9{word-spacing:16.461216pt;}
.ws89{word-spacing:16.777440pt;}
.ws97{word-spacing:17.720256pt;}
.ws98{word-spacing:17.749536pt;}
.ws1e{word-spacing:18.042336pt;}
.wsc{word-spacing:18.294144pt;}
.wsd{word-spacing:18.311712pt;}
.ws38{word-spacing:18.920736pt;}
.ws39{word-spacing:18.991008pt;}
.ws81{word-spacing:19.307232pt;}
.ws80{word-spacing:19.318944pt;}
.ws7f{word-spacing:19.475072pt;}
.ws91{word-spacing:19.658592pt;}
.ws92{word-spacing:19.676160pt;}
.ws25{word-spacing:20.601408pt;}
.ws26{word-spacing:20.618976pt;}
.wsc2{word-spacing:23.435712pt;}
.wsc1{word-spacing:23.476704pt;}
.ws47{word-spacing:24.999264pt;}
.ws48{word-spacing:25.063680pt;}
.wsbc{word-spacing:25.994784pt;}
.wsbd{word-spacing:26.047488pt;}
.ws10{word-spacing:27.587616pt;}
.wsc3{word-spacing:27.593472pt;}
.wsc4{word-spacing:27.622752pt;}
.ws42{word-spacing:28.290336pt;}
.ws83{word-spacing:29.344416pt;}
.ws82{word-spacing:29.502528pt;}
.ws7c{word-spacing:29.865600pt;}
.ws7b{word-spacing:30.032768pt;}
.wsce{word-spacing:30.146688pt;}
.wscf{word-spacing:30.187680pt;}
.wsab{word-spacing:32.477376pt;}
.wsb4{word-spacing:33.320640pt;}
.wsb3{word-spacing:33.332352pt;}
.ws9d{word-spacing:34.620672pt;}
.ws9c{word-spacing:34.667520pt;}
.wsc0{word-spacing:35.282400pt;}
.wsbf{word-spacing:35.305824pt;}
.ws9e{word-spacing:35.651328pt;}
.ws6c{word-spacing:43.234848pt;}
.ws6d{word-spacing:43.258272pt;}
.ws90{word-spacing:71.466624pt;}
.ws8d{word-spacing:77.141088pt;}
.wsad{word-spacing:77.146944pt;}
.ws70{word-spacing:77.158656pt;}
.wsac{word-spacing:77.170368pt;}
.ws9b{word-spacing:77.176224pt;}
.ws6b{word-spacing:77.182080pt;}
.ws94{word-spacing:77.187936pt;}
.ws6e{word-spacing:77.193792pt;}
.ws9f{word-spacing:77.205504pt;}
.ws62{word-spacing:123.649440pt;}
.ws93{word-spacing:167.177088pt;}
.wsb0{word-spacing:173.156064pt;}
.wsaf{word-spacing:173.161920pt;}
._32{margin-left:-173.120928pt;}
._15{margin-left:-77.123520pt;}
._16{margin-left:-15.606240pt;}
._2{margin-left:-12.836352pt;}
._33{margin-left:-9.141216pt;}
._d{margin-left:-5.416800pt;}
._25{margin-left:-4.157760pt;}
._20{margin-left:-1.909056pt;}
._1{margin-left:-1.007232pt;}
._0{width:0.995520pt;}
._a{width:3.706848pt;}
._12{width:4.825344pt;}
._19{width:7.009632pt;}
._35{width:10.968288pt;}
._3{width:12.045792pt;}
._36{width:14.487744pt;}
._9{width:17.263488pt;}
._18{width:19.523904pt;}
._2e{width:24.150144pt;}
._29{width:26.182176pt;}
._21{width:28.442592pt;}
._37{width:30.164256pt;}
._8{width:32.746752pt;}
._2a{width:34.298592pt;}
._e{width:38.257248pt;}
._27{width:42.350592pt;}
._5{width:45.840768pt;}
._1d{width:53.090496pt;}
._c{width:58.448736pt;}
._1e{width:61.411872pt;}
._1b{width:66.377760pt;}
._11{width:67.677792pt;}
._13{width:77.123520pt;}
._2d{width:81.732192pt;}
._26{width:88.478304pt;}
._34{width:91.845504pt;}
._2b{width:96.471744pt;}
._1a{width:98.333952pt;}
._1c{width:102.275040pt;}
._17{width:108.898176pt;}
._31{width:120.001152pt;}
._f{width:121.283616pt;}
._1f{width:129.944640pt;}
._22{width:133.136160pt;}
._24{width:135.010080pt;}
._14{width:138.242592pt;}
._b{width:142.903968pt;}
._2c{width:148.191936pt;}
._28{width:150.370368pt;}
._30{width:155.787168pt;}
._23{width:159.722400pt;}
._2f{width:166.046880pt;}
._4{width:168.960416pt;}
._6{width:172.804704pt;}
._10{width:173.759232pt;}
._7{width:752.700960pt;}
.fs2{font-size:37.440000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y220{bottom:3.440400pt;}
.y20e{bottom:3.760400pt;}
.y1bf{bottom:100.668163pt;}
.y155{bottom:104.747211pt;}
.y27{bottom:112.028755pt;}
.y18c{bottom:112.828555pt;}
.y121{bottom:115.467787pt;}
.y12{bottom:116.749083pt;}
.y20b{bottom:118.594475pt;}
.y1be{bottom:119.067715pt;}
.y154{bottom:120.666747pt;}
.y26{bottom:128.028811pt;}
.ybc{bottom:128.587467pt;}
.y18b{bottom:128.828611pt;}
.y120{bottom:131.387323pt;}
.y11{bottom:132.668619pt;}
.y1bd{bottom:136.427827pt;}
.y27a{bottom:136.987067pt;}
.y153{bottom:138.107379pt;}
.y25{bottom:143.948347pt;}
.ybb{bottom:144.587523pt;}
.y18a{bottom:144.748147pt;}
.y11f{bottom:147.306859pt;}
.y10{bottom:148.668675pt;}
.y20a{bottom:150.273971pt;}
.y1bc{bottom:152.427883pt;}
.y152{bottom:154.026915pt;}
.y279{bottom:156.027515pt;}
.y4d{bottom:159.789227pt;}
.y24{bottom:159.948403pt;}
.yba{bottom:160.507059pt;}
.y189{bottom:160.748203pt;}
.yf{bottom:164.668731pt;}
.y11e{bottom:164.747491pt;}
.y1bb{bottom:168.347419pt;}
.y278{bottom:170.666667pt;}
.y151{bottom:171.467547pt;}
.y23{bottom:172.508059pt;}
.y277{bottom:174.427067pt;}
.y188{bottom:176.748259pt;}
.yb9{bottom:177.867171pt;}
.ye{bottom:180.588267pt;}
.y11d{bottom:180.667027pt;}
.y209{bottom:181.953467pt;}
.y1ba{bottom:184.347475pt;}
.y150{bottom:187.387083pt;}
.y187{bottom:192.667795pt;}
.y276{bottom:192.747648pt;}
.yb8{bottom:193.867227pt;}
.yd{bottom:196.588323pt;}
.y11c{bottom:198.107659pt;}
.y1b9{bottom:200.347531pt;}
.y14f{bottom:204.827715pt;}
.y186{bottom:208.667851pt;}
.yb7{bottom:209.786763pt;}
.y275{bottom:211.147200pt;}
.yc{bottom:212.507859pt;}
.y208{bottom:213.632963pt;}
.y11b{bottom:214.027195pt;}
.y1b8{bottom:216.267067pt;}
.y25d{bottom:220.427067pt;}
.y14e{bottom:220.747251pt;}
.y185{bottom:224.667907pt;}
.yb6{bottom:227.227395pt;}
.yb{bottom:228.507915pt;}
.y270{bottom:230.187067pt;}
.y11a{bottom:231.467827pt;}
.y1b7{bottom:233.147067pt;}
.yed{bottom:238.187243pt;}
.y14d{bottom:238.187883pt;}
.y25c{bottom:240.507067pt;}
.y184{bottom:240.587443pt;}
.yb5{bottom:243.146931pt;}
.y26f{bottom:244.746667pt;}
.y207{bottom:245.392979pt;}
.y119{bottom:247.387363pt;}
.y26e{bottom:248.507515pt;}
.ya{bottom:252.428211pt;}
.y1b6{bottom:252.587931pt;}
.y14c{bottom:254.107419pt;}
.yec{bottom:254.187299pt;}
.y183{bottom:256.587499pt;}
.y25b{bottom:259.947467pt;}
.yb4{bottom:260.587563pt;}
.y118{bottom:263.387419pt;}
.y206{bottom:263.713475pt;}
.y26d{bottom:266.907067pt;}
.y1b5{bottom:268.507467pt;}
.yeb{bottom:270.106835pt;}
.y14b{bottom:270.107475pt;}
.y182{bottom:272.507035pt;}
.y9{bottom:276.427563pt;}
.yb3{bottom:276.507099pt;}
.y25a{bottom:278.347019pt;}
.y117{bottom:279.387475pt;}
.y274{bottom:285.227067pt;}
.y26c{bottom:285.228048pt;}
.y1b4{bottom:285.948099pt;}
.yea{bottom:286.026371pt;}
.y14a{bottom:286.027011pt;}
.y181{bottom:288.507091pt;}
.yb2{bottom:292.507155pt;}
.y116{bottom:295.307011pt;}
.y205{bottom:295.392971pt;}
.y259{bottom:296.746571pt;}
.y8{bottom:300.347859pt;}
.y1b3{bottom:301.867635pt;}
.y149{bottom:302.027067pt;}
.ye9{bottom:303.467003pt;}
.y273{bottom:303.627515pt;}
.y26b{bottom:303.627600pt;}
.y180{bottom:304.507147pt;}
.yb1{bottom:309.867267pt;}
.y115{bottom:311.307067pt;}
.y204{bottom:313.792523pt;}
.y1d7{bottom:314.507539pt;}
.y258{bottom:315.067067pt;}
.y148{bottom:318.907067pt;}
.y1b2{bottom:319.308267pt;}
.ye8{bottom:319.467059pt;}
.y17f{bottom:321.387067pt;}
.y272{bottom:322.027067pt;}
.y26a{bottom:322.027152pt;}
.y7{bottom:324.347211pt;}
.yb0{bottom:325.867323pt;}
.y114{bottom:328.187603pt;}
.y203{bottom:332.113019pt;}
.y257{bottom:333.467067pt;}
.y1b1{bottom:335.227803pt;}
.ye7{bottom:335.386595pt;}
.y147{bottom:338.347299pt;}
.y4c{bottom:338.909627pt;}
.y265{bottom:339.227200pt;}
.y269{bottom:340.347648pt;}
.y17e{bottom:340.750035pt;}
.yaf{bottom:343.227435pt;}
.y1d6{bottom:346.187035pt;}
.y6{bottom:348.267507pt;}
.y113{bottom:348.507067pt;}
.y256{bottom:352.347067pt;}
.y1b0{bottom:352.668435pt;}
.ye6{bottom:352.827227pt;}
.y146{bottom:354.266835pt;}
.y17d{bottom:356.750091pt;}
.y264{bottom:358.746704pt;}
.y268{bottom:358.747200pt;}
.yae{bottom:359.227491pt;}
.y202{bottom:363.873035pt;}
.y1af{bottom:368.587971pt;}
.ye5{bottom:368.746763pt;}
.y145{bottom:370.266891pt;}
.y4b{bottom:370.589123pt;}
.y5{bottom:372.266859pt;}
.y255{bottom:372.427067pt;}
.y17c{bottom:372.750147pt;}
.yad{bottom:375.147027pt;}
.y263{bottom:377.067200pt;}
.y271{bottom:377.067515pt;}
.y267{bottom:377.067600pt;}
.y201{bottom:379.792571pt;}
.y112{bottom:383.947531pt;}
.y1ae{bottom:384.588027pt;}
.ye4{bottom:384.666299pt;}
.y144{bottom:387.627003pt;}
.y17b{bottom:388.669683pt;}
.y254{bottom:392.427067pt;}
.yac{bottom:392.587659pt;}
.y262{bottom:395.467067pt;}
.y266{bottom:395.467152pt;}
.y200{bottom:395.792627pt;}
.y4{bottom:396.187155pt;}
.y111{bottom:399.867067pt;}
.y1ad{bottom:400.507563pt;}
.ye3{bottom:402.106931pt;}
.y4a{bottom:402.349139pt;}
.y143{bottom:403.627059pt;}
.y17a{bottom:404.669739pt;}
.yab{bottom:408.507195pt;}
.y1ff{bottom:411.792683pt;}
.y253{bottom:412.427067pt;}
.y261{bottom:413.787648pt;}
.y110{bottom:415.867851pt;}
.y1ac{bottom:417.948195pt;}
.ye2{bottom:418.026467pt;}
.y142{bottom:419.546595pt;}
.y3{bottom:420.186507pt;}
.y49{bottom:420.669635pt;}
.y179{bottom:420.669795pt;}
.yaa{bottom:425.947827pt;}
.y1fe{bottom:427.712219pt;}
.y10f{bottom:431.867907pt;}
.y260{bottom:432.187200pt;}
.y252{bottom:432.507067pt;}
.y1ab{bottom:433.867731pt;}
.ye1{bottom:435.467099pt;}
.y178{bottom:436.589331pt;}
.y141{bottom:436.987227pt;}
.y86{bottom:438.910699pt;}
.y48{bottom:439.069187pt;}
.ya9{bottom:441.867363pt;}
.y1fd{bottom:443.712275pt;}
.y10e{bottom:447.787443pt;}
.y2{bottom:448.427067pt;}
.y25f{bottom:449.866667pt;}
.y1aa{bottom:449.867787pt;}
.ye0{bottom:451.386635pt;}
.y251{bottom:452.507067pt;}
.y177{bottom:452.589387pt;}
.y140{bottom:452.906763pt;}
.y25e{bottom:453.627067pt;}
.y85{bottom:454.910755pt;}
.y47{bottom:457.389683pt;}
.ya8{bottom:457.867419pt;}
.y1fc{bottom:459.631811pt;}
.y10d{bottom:463.787499pt;}
.y1a9{bottom:467.227899pt;}
.y176{bottom:468.508923pt;}
.ydf{bottom:468.827267pt;}
.y13f{bottom:470.347395pt;}
.y84{bottom:470.910811pt;}
.y250{bottom:472.667515pt;}
.ya7{bottom:473.867475pt;}
.y1fb{bottom:475.631867pt;}
.y10c{bottom:479.707035pt;}
.y1a8{bottom:483.227955pt;}
.y175{bottom:484.508979pt;}
.yde{bottom:484.746803pt;}
.y22{bottom:485.947531pt;}
.y13e{bottom:486.266931pt;}
.y83{bottom:486.830347pt;}
.y46{bottom:489.149699pt;}
.ya6{bottom:489.787011pt;}
.y24f{bottom:491.067067pt;}
.y1fa{bottom:491.631923pt;}
.y10b{bottom:495.707091pt;}
.y1a7{bottom:499.228011pt;}
.y174{bottom:500.509035pt;}
.ydd{bottom:500.746859pt;}
.y21{bottom:501.947587pt;}
.y82{bottom:502.830403pt;}
.y13d{bottom:503.707563pt;}
.ya5{bottom:505.787067pt;}
.y1f9{bottom:507.551459pt;}
.y24e{bottom:509.387515pt;}
.y10a{bottom:511.707147pt;}
.y1a6{bottom:515.147547pt;}
.y173{bottom:516.428571pt;}
.y20{bottom:517.947643pt;}
.ydc{bottom:518.187491pt;}
.y81{bottom:518.749939pt;}
.y13c{bottom:519.627099pt;}
.y45{bottom:520.829195pt;}
.ya4{bottom:522.667603pt;}
.y1f8{bottom:523.551515pt;}
.y24d{bottom:527.787067pt;}
.y109{bottom:528.587067pt;}
.y172{bottom:532.428627pt;}
.y1a5{bottom:532.507659pt;}
.y1f{bottom:533.867179pt;}
.y80{bottom:534.749995pt;}
.ydb{bottom:535.467083pt;}
.y13b{bottom:536.987211pt;}
.y23b{bottom:538.827019pt;}
.y44{bottom:539.149691pt;}
.y1f7{bottom:539.551571pt;}
.ya3{bottom:542.987067pt;}
.y24c{bottom:546.826571pt;}
.y247{bottom:546.827019pt;}
.y108{bottom:547.947627pt;}
.y1a4{bottom:548.507715pt;}
.y171{bottom:549.788739pt;}
.y1e{bottom:549.867235pt;}
.y7f{bottom:550.750051pt;}
.yda{bottom:552.907715pt;}
.y13a{bottom:552.987267pt;}
.y1f6{bottom:555.471107pt;}
.y23a{bottom:557.226571pt;}
.y43{bottom:557.549243pt;}
.ya2{bottom:562.430083pt;}
.y24b{bottom:565.147067pt;}
.y246{bottom:565.147515pt;}
.y107{bottom:565.388259pt;}
.y170{bottom:565.788795pt;}
.y1d{bottom:565.867291pt;}
.y1a3{bottom:565.867827pt;}
.y7e{bottom:566.669587pt;}
.yd9{bottom:568.827251pt;}
.y139{bottom:570.347379pt;}
.y1f5{bottom:571.471163pt;}
.y239{bottom:575.547067pt;}
.y42{bottom:575.948795pt;}
.ya1{bottom:578.349619pt;}
.y106{bottom:581.307795pt;}
.y16f{bottom:581.708331pt;}
.y1c{bottom:581.786827pt;}
.y1a2{bottom:581.867883pt;}
.y7d{bottom:582.669643pt;}
.y245{bottom:583.547067pt;}
.y24a{bottom:583.547515pt;}
.yd8{bottom:586.187363pt;}
.y138{bottom:586.347435pt;}
.y1f4{bottom:587.390699pt;}
.ya0{bottom:594.349675pt;}
.y238{bottom:594.507067pt;}
.y105{bottom:597.307851pt;}
.y16e{bottom:597.708387pt;}
.y1b{bottom:597.786883pt;}
.y1a1{bottom:597.867939pt;}
.y7c{bottom:598.669699pt;}
.y242{bottom:600.827067pt;}
.y244{bottom:601.947019pt;}
.y249{bottom:601.947067pt;}
.yd7{bottom:602.187419pt;}
.y137{bottom:602.266971pt;}
.y1f3{bottom:603.390755pt;}
.y41{bottom:607.628291pt;}
.y1a{bottom:610.267483pt;}
.y9f{bottom:610.269211pt;}
.y104{bottom:613.307907pt;}
.y16d{bottom:613.708443pt;}
.y1a0{bottom:613.787475pt;}
.y237{bottom:614.507067pt;}
.y7b{bottom:614.589235pt;}
.yd6{bottom:618.187475pt;}
.y1f2{bottom:619.390811pt;}
.y136{bottom:619.707603pt;}
.y248{bottom:620.267067pt;}
.y241{bottom:620.267515pt;}
.y40{bottom:623.547827pt;}
.y9e{bottom:628.668763pt;}
.y103{bottom:629.227443pt;}
.y16c{bottom:629.627979pt;}
.y19f{bottom:629.787531pt;}
.y7a{bottom:630.589291pt;}
.yd5{bottom:634.107011pt;}
.y236{bottom:634.507067pt;}
.y1f1{bottom:635.310347pt;}
.y135{bottom:635.627139pt;}
.y240{bottom:638.667067pt;}
.y3f{bottom:639.547883pt;}
.y102{bottom:645.227499pt;}
.y16b{bottom:645.628035pt;}
.y19e{bottom:645.707067pt;}
.y79{bottom:646.508827pt;}
.y9d{bottom:647.068315pt;}
.yd4{bottom:650.107067pt;}
.y62{bottom:650.346552pt;}
.y1f0{bottom:651.310403pt;}
.y134{bottom:653.067771pt;}
.y235{bottom:654.587067pt;}
.y3e{bottom:655.547939pt;}
.y23f{bottom:656.987067pt;}
.y243{bottom:656.987515pt;}
.y101{bottom:661.147035pt;}
.y16a{bottom:661.628091pt;}
.y78{bottom:662.508883pt;}
.y19d{bottom:662.667067pt;}
.y9c{bottom:662.987851pt;}
.yd3{bottom:666.987067pt;}
.y1ef{bottom:667.310459pt;}
.y133{bottom:668.987307pt;}
.y3d{bottom:671.467475pt;}
.y234{bottom:674.587067pt;}
.y23e{bottom:675.387067pt;}
.y100{bottom:677.147091pt;}
.y169{bottom:677.547627pt;}
.y77{bottom:678.508939pt;}
.y9b{bottom:678.987907pt;}
.y19c{bottom:682.027227pt;}
.y1ee{bottom:683.229995pt;}
.yd2{bottom:686.427675pt;}
.y132{bottom:686.427939pt;}
.y61{bottom:686.987200pt;}
.y3c{bottom:687.467531pt;}
.y23d{bottom:692.026667pt;}
.yff{bottom:693.147147pt;}
.y168{bottom:693.467163pt;}
.y76{bottom:694.428475pt;}
.y233{bottom:694.667067pt;}
.y9a{bottom:694.907443pt;}
.y23c{bottom:695.787067pt;}
.y19b{bottom:698.027283pt;}
.y1ed{bottom:699.230051pt;}
.yd1{bottom:702.347211pt;}
.y131{bottom:702.347475pt;}
.y3b{bottom:703.387771pt;}
.yfe{bottom:710.027067pt;}
.y75{bottom:710.428531pt;}
.y99{bottom:710.907499pt;}
.y167{bottom:710.907795pt;}
.y19a{bottom:713.946819pt;}
.y232{bottom:714.826704pt;}
.y1ec{bottom:715.149587pt;}
.yd0{bottom:718.347267pt;}
.y130{bottom:718.347531pt;}
.y3a{bottom:719.387827pt;}
.y60{bottom:722.349235pt;}
.y74{bottom:726.428587pt;}
.y98{bottom:726.907555pt;}
.y166{bottom:726.907851pt;}
.yfd{bottom:729.387275pt;}
.y1eb{bottom:731.149643pt;}
.y199{bottom:731.387451pt;}
.y231{bottom:733.147200pt;}
.ycf{bottom:734.266803pt;}
.y12f{bottom:734.267067pt;}
.y39{bottom:735.387883pt;}
.y5f{bottom:738.349291pt;}
.y73{bottom:742.348123pt;}
.y97{bottom:742.827091pt;}
.y165{bottom:742.827387pt;}
.yfc{bottom:746.827907pt;}
.y1ea{bottom:747.149699pt;}
.y198{bottom:747.306987pt;}
.y1ce{bottom:749.224896pt;}
.y12e{bottom:751.227067pt;}
.y38{bottom:751.307419pt;}
.y230{bottom:751.546571pt;}
.yce{bottom:751.707435pt;}
.y5e{bottom:754.268827pt;}
.y72{bottom:758.348179pt;}
.y96{bottom:758.827147pt;}
.y164{bottom:758.827443pt;}
.yfb{bottom:762.747443pt;}
.y1e9{bottom:763.069235pt;}
.y197{bottom:764.747619pt;}
.y37{bottom:767.307475pt;}
.y1cd{bottom:767.624448pt;}
.ycd{bottom:767.626971pt;}
.y22f{bottom:769.867067pt;}
.y5d{bottom:770.268883pt;}
.y12d{bottom:770.589048pt;}
.y71{bottom:774.267715pt;}
.y163{bottom:774.827499pt;}
.y95{bottom:775.707067pt;}
.yfa{bottom:778.747499pt;}
.y1e8{bottom:779.069291pt;}
.y196{bottom:780.667155pt;}
.y36{bottom:783.307531pt;}
.ycc{bottom:785.067603pt;}
.y1cc{bottom:785.944944pt;}
.y5c{bottom:786.268939pt;}
.y12c{bottom:786.589104pt;}
.y229{bottom:788.907067pt;}
.y70{bottom:790.267771pt;}
.y162{bottom:790.747035pt;}
.yf9{bottom:794.667035pt;}
.y1e7{bottom:795.069347pt;}
.y94{bottom:795.147795pt;}
.y219{bottom:797.147963pt;}
.y195{bottom:798.027267pt;}
.y35{bottom:799.227771pt;}
.ycb{bottom:800.987139pt;}
.y5b{bottom:802.188475pt;}
.y12b{bottom:802.508640pt;}
.y1cb{bottom:805.704552pt;}
.y6f{bottom:806.267827pt;}
.y161{bottom:806.747091pt;}
.y22e{bottom:807.306571pt;}
.y228{bottom:807.307067pt;}
.yf8{bottom:810.667091pt;}
.y1e6{bottom:810.988883pt;}
.y93{bottom:811.067331pt;}
.y194{bottom:814.027323pt;}
.y34{bottom:815.227827pt;}
.y218{bottom:815.547515pt;}
.y5a{bottom:818.188531pt;}
.y1d5{bottom:818.267011pt;}
.yca{bottom:818.427771pt;}
.y12a{bottom:818.508696pt;}
.y6e{bottom:822.187363pt;}
.y160{bottom:822.666627pt;}
.y1ca{bottom:824.104104pt;}
.y22d{bottom:825.627067pt;}
.y227{bottom:825.627515pt;}
.yf7{bottom:826.667147pt;}
.y1e5{bottom:826.988939pt;}
.y92{bottom:828.507963pt;}
.y193{bottom:829.946859pt;}
.y33{bottom:831.147363pt;}
.y217{bottom:833.947067pt;}
.y59{bottom:834.108067pt;}
.y1d4{bottom:834.267067pt;}
.yc9{bottom:834.347307pt;}
.y129{bottom:834.428232pt;}
.y6d{bottom:838.187419pt;}
.y15f{bottom:839.627067pt;}
.y1e4{bottom:842.908475pt;}
.yf6{bottom:843.547067pt;}
.y1c9{bottom:843.863712pt;}
.y226{bottom:844.027067pt;}
.y22c{bottom:844.027515pt;}
.y91{bottom:844.427499pt;}
.y32{bottom:847.147419pt;}
.y192{bottom:847.387491pt;}
.y58{bottom:850.108123pt;}
.y1d3{bottom:851.147200pt;}
.yc8{bottom:851.707419pt;}
.y128{bottom:851.868864pt;}
.y216{bottom:852.827067pt;}
.y6c{bottom:854.187475pt;}
.y1e3{bottom:858.908531pt;}
.y15e{bottom:858.986923pt;}
.y90{bottom:860.427555pt;}
.y1c8{bottom:862.184208pt;}
.y225{bottom:862.426571pt;}
.y22b{bottom:862.427067pt;}
.yf5{bottom:862.906867pt;}
.y31{bottom:863.147475pt;}
.y191{bottom:863.307027pt;}
.y57{bottom:866.108179pt;}
.yc7{bottom:867.707475pt;}
.y127{bottom:867.868920pt;}
.y6b{bottom:870.107011pt;}
.y1d2{bottom:870.508123pt;}
.y215{bottom:872.827067pt;}
.y1e2{bottom:874.908587pt;}
.y15d{bottom:876.347035pt;}
.y8f{bottom:876.347091pt;}
.y30{bottom:879.067011pt;}
.yf4{bottom:880.347499pt;}
.y224{bottom:880.747067pt;}
.y22a{bottom:880.747515pt;}
.y190{bottom:880.747659pt;}
.y1c7{bottom:882.024336pt;}
.y56{bottom:882.027715pt;}
.yc6{bottom:883.707531pt;}
.y126{bottom:883.788456pt;}
.y6a{bottom:886.107067pt;}
.y1d1{bottom:886.508179pt;}
.y1e1{bottom:890.828123pt;}
.y15c{bottom:892.347091pt;}
.y8e{bottom:892.347147pt;}
.y214{bottom:892.907067pt;}
.y2f{bottom:895.067363pt;}
.yf3{bottom:896.267035pt;}
.y18f{bottom:896.667195pt;}
.y55{bottom:898.027771pt;}
.y223{bottom:899.147067pt;}
.yc5{bottom:899.627067pt;}
.y1c6{bottom:900.344832pt;}
.y125{bottom:901.148568pt;}
.y69{bottom:902.027307pt;}
.y1d0{bottom:902.508235pt;}
.y1e0{bottom:906.828179pt;}
.y15b{bottom:908.347147pt;}
.y8d{bottom:909.227067pt;}
.y2e{bottom:911.067419pt;}
.yf2{bottom:912.267091pt;}
.y18e{bottom:912.667251pt;}
.y213{bottom:912.907067pt;}
.y54{bottom:914.027827pt;}
.yc4{bottom:916.507067pt;}
.y124{bottom:917.148624pt;}
.y222{bottom:917.467019pt;}
.y21e{bottom:917.467067pt;}
.y68{bottom:918.027363pt;}
.y1cf{bottom:918.427771pt;}
.y1c5{bottom:920.184960pt;}
.y1df{bottom:922.828235pt;}
.y15a{bottom:925.227067pt;}
.y2d{bottom:926.986955pt;}
.yf1{bottom:928.267147pt;}
.y8c{bottom:928.588251pt;}
.y53{bottom:929.947363pt;}
.y18d{bottom:930.027363pt;}
.y212{bottom:932.987067pt;}
.y67{bottom:934.027419pt;}
.y19{bottom:934.427827pt;}
.y123{bottom:934.508736pt;}
.y221{bottom:935.866571pt;}
.y21d{bottom:935.867067pt;}
.yc3{bottom:935.949312pt;}
.y1c4{bottom:938.505456pt;}
.y1de{bottom:938.747771pt;}
.y2c{bottom:942.987011pt;}
.y159{bottom:944.586843pt;}
.yf0{bottom:945.147067pt;}
.y52{bottom:945.947419pt;}
.y8b{bottom:946.027419pt;}
.y66{bottom:949.946955pt;}
.y18{bottom:950.347363pt;}
.y122{bottom:950.508792pt;}
.y21f{bottom:950.746667pt;}
.yc2{bottom:951.949368pt;}
.y211{bottom:952.987067pt;}
.y21c{bottom:954.187067pt;}
.y1dd{bottom:954.747827pt;}
.y1c3{bottom:956.825952pt;}
.y2b{bottom:958.987475pt;}
.y51{bottom:961.866955pt;}
.y8a{bottom:962.027475pt;}
.yef{bottom:964.506899pt;}
.y65{bottom:965.947011pt;}
.y17{bottom:966.347419pt;}
.y158{bottom:966.428328pt;}
.yc1{bottom:967.868904pt;}
.y21b{bottom:970.426667pt;}
.y1dc{bottom:970.667363pt;}
.y210{bottom:973.067067pt;}
.y21a{bottom:974.187067pt;}
.y2a{bottom:974.907011pt;}
.y1c2{bottom:976.666080pt;}
.y50{bottom:977.867011pt;}
.y89{bottom:977.947011pt;}
.y64{bottom:981.947067pt;}
.yee{bottom:981.947531pt;}
.y16{bottom:982.347475pt;}
.yc0{bottom:983.788440pt;}
.y157{bottom:983.868960pt;}
.y1db{bottom:986.667419pt;}
.y29{bottom:990.907067pt;}
.y4f{bottom:993.867067pt;}
.y88{bottom:993.947067pt;}
.y1c1{bottom:994.986576pt;}
.y63{bottom:997.867067pt;}
.y15{bottom:998.267011pt;}
.y20d{bottom:999.146667pt;}
.y156{bottom:999.788496pt;}
.ybf{bottom:1001.227608pt;}
.y20c{bottom:1001.787067pt;}
.y1da{bottom:1002.667475pt;}
.y20f{bottom:1002.907067pt;}
.y28{bottom:1007.787067pt;}
.y87{bottom:1010.827067pt;}
.y4e{bottom:1010.827736pt;}
.y14{bottom:1014.267067pt;}
.y1c0{bottom:1014.826704pt;}
.ybe{bottom:1017.227664pt;}
.y1d9{bottom:1018.587011pt;}
.y13{bottom:1031.147200pt;}
.y1{bottom:1031.227067pt;}
.ybd{bottom:1033.147200pt;}
.y1d8{bottom:1034.587067pt;}
.hb{height:15.920000pt;}
.h7{height:16.240000pt;}
.h15{height:18.400000pt;}
.h2{height:43.920000pt;}
.h4{height:48.008906pt;}
.h3{height:48.609375pt;}
.h5{height:48.780938pt;}
.h14{height:52.464825pt;}
.h17{height:52.466425pt;}
.he{height:52.466958pt;}
.h16{height:52.467491pt;}
.h8{height:52.468750pt;}
.h11{height:52.468942pt;}
.hf{height:52.470201pt;}
.hd{height:52.470734pt;}
.ha{height:53.121949pt;}
.h13{height:53.122675pt;}
.h10{height:53.123208pt;}
.h12{height:53.123400pt;}
.h9{height:53.125000pt;}
.hc{height:53.125192pt;}
.h6{height:56.948750pt;}
.h1{height:61.890625pt;}
.h0{height:1122.666667pt;}
.w3{width:3.920000pt;}
.w4{width:7.200000pt;}
.w5{width:7.840000pt;}
.w2{width:10.640000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1f{left:75.200000pt;}
.xf{left:113.440000pt;}
.x7{left:122.321840pt;}
.x15{left:137.440000pt;}
.x6{left:139.922048pt;}
.xe{left:160.643504pt;}
.x22{left:176.000000pt;}
.x4{left:205.761056pt;}
.x17{left:207.840000pt;}
.x16{left:209.440000pt;}
.x9{left:213.521720pt;}
.x19{left:245.120000pt;}
.x18{left:255.038896pt;}
.x5{left:262.561328pt;}
.xa{left:264.482096pt;}
.x1b{left:265.999864pt;}
.xd{left:273.362720pt;}
.x8{left:284.241704pt;}
.xb{left:287.601584pt;}
.xc{left:288.802064pt;}
.x1d{left:300.480000pt;}
.x14{left:320.640624pt;}
.x1a{left:331.600240pt;}
.x29{left:341.520000pt;}
.x13{left:351.439552pt;}
.x1{left:353.920000pt;}
.x25{left:356.880000pt;}
.x1c{left:359.679760pt;}
.x23{left:364.640000pt;}
.x11{left:371.600296pt;}
.x12{left:374.800600pt;}
.x3{left:396.880400pt;}
.x1e{left:408.880000pt;}
.x20{left:436.880000pt;}
.x26{left:443.760000pt;}
.x27{left:447.680000pt;}
.x28{left:522.480000pt;}
.x21{left:537.200000pt;}
.x24{left:544.960000pt;}
.x10{left:628.479592pt;}
.x2{left:715.520000pt;}
}




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