
    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_f776391c39b79bd7e92bc6b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b3296758bc03104958cc31ab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f2e8e7cb6a73e1acd32d1a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_5641f42798a0abcde643e6c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062988;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_2a7053da18c9b00acfb52cf8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2d4ff42aa78cf328a7b64360.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_c35db44a71ca1f61a209ff02.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.770920px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.757120px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:30.960000px;}
.ls20{letter-spacing:-1.673280px;}
.ls15{letter-spacing:-1.419840px;}
.ls22{letter-spacing:-1.314720px;}
.ls21{letter-spacing:-1.075680px;}
.ls14{letter-spacing:-1.073520px;}
.lsa{letter-spacing:-0.964800px;}
.ls25{letter-spacing:-0.728640px;}
.ls26{letter-spacing:-0.596160px;}
.ls53{letter-spacing:-0.537840px;}
.ls32{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.478080px;}
.ls27{letter-spacing:-0.463680px;}
.ls48{letter-spacing:-0.397440px;}
.ls12{letter-spacing:-0.378000px;}
.ls4e{letter-spacing:-0.358560px;}
.lsd{letter-spacing:-0.337680px;}
.lsf{letter-spacing:-0.331200px;}
.ls9{letter-spacing:-0.289440px;}
.ls31{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.264960px;}
.lsc{letter-spacing:-0.241200px;}
.ls2f{letter-spacing:-0.239040px;}
.ls13{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.162000px;}
.ls4f{letter-spacing:-0.119520px;}
.ls2c{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.083520px;}
.ls1a{letter-spacing:-0.059760px;}
.lse{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.045360px;}
.ls6{letter-spacing:0.048240px;}
.ls5{letter-spacing:0.053280px;}
.ls2d{letter-spacing:0.059760px;}
.ls3e{letter-spacing:0.066240px;}
.ls2b{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.119520px;}
.ls23{letter-spacing:0.132480px;}
.ls18{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.176400px;}
.ls19{letter-spacing:0.178560px;}
.ls4b{letter-spacing:0.179280px;}
.ls16{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.192960px;}
.ls34{letter-spacing:0.195840px;}
.ls8{letter-spacing:0.204480px;}
.ls42{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.221112px;}
.ls2{letter-spacing:0.239040px;}
.ls1d{letter-spacing:0.241200px;}
.ls54{letter-spacing:0.245016px;}
.ls58{letter-spacing:0.250992px;}
.ls57{letter-spacing:0.256968px;}
.ls59{letter-spacing:0.259920px;}
.ls46{letter-spacing:0.264960px;}
.ls4d{letter-spacing:0.286848px;}
.ls3b{letter-spacing:0.317952px;}
.ls52{letter-spacing:0.322704px;}
.ls24{letter-spacing:0.331200px;}
.ls56{letter-spacing:0.334656px;}
.ls1{letter-spacing:0.337680px;}
.ls51{letter-spacing:0.340632px;}
.ls37{letter-spacing:0.351072px;}
.ls3{letter-spacing:0.358560px;}
.ls50{letter-spacing:0.376488px;}
.ls38{letter-spacing:0.377568px;}
.ls11{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.384192px;}
.lsb{letter-spacing:0.385920px;}
.ls29{letter-spacing:0.728640px;}
.ls7{letter-spacing:0.920160px;}
.ls4c{letter-spacing:1.727064px;}
.ls39{letter-spacing:2.848320px;}
.ls44{letter-spacing:3.576960px;}
.ls1f{letter-spacing:3.764880px;}
.ls47{letter-spacing:4.093632px;}
.ls1e{letter-spacing:4.482000px;}
.ls3d{letter-spacing:7.220160px;}
.ls28{letter-spacing:7.869312px;}
.ls3c{letter-spacing:8.611200px;}
.ls41{letter-spacing:11.525760px;}
.ls45{letter-spacing:12.983040px;}
.ls33{letter-spacing:15.102720px;}
.ls43{letter-spacing:25.171200px;}
.ls55{letter-spacing:36.871920px;}
.ls2e{letter-spacing:42.062400px;}
.ls2a{letter-spacing:45.639360px;}
.ls3a{letter-spacing:61.934400px;}
.ls4a{letter-spacing:87.309360px;}
.ls40{letter-spacing:182.358000px;}
.ls3f{letter-spacing:300.438000px;}
.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;}
}
.ws8f{word-spacing:-66.240000px;}
.wsa9{word-spacing:-16.824960px;}
.ws69{word-spacing:-16.692480px;}
.ws42{word-spacing:-16.560000px;}
.ws71{word-spacing:-16.228800px;}
.ws89{word-spacing:-15.831360px;}
.ws4{word-spacing:-15.298560px;}
.wsb3{word-spacing:-15.179040px;}
.ws76{word-spacing:-15.059520px;}
.ws77{word-spacing:-14.999760px;}
.ws5{word-spacing:-14.940000px;}
.ws24{word-spacing:-14.880240px;}
.wsb4{word-spacing:-14.820480px;}
.wsb5{word-spacing:-14.700960px;}
.wsb2{word-spacing:-14.581440px;}
.ws22{word-spacing:-13.878000px;}
.wsa7{word-spacing:-13.716000px;}
.ws9a{word-spacing:-13.662000px;}
.ws41{word-spacing:-13.625280px;}
.ws8{word-spacing:-13.500000px;}
.ws75{word-spacing:-13.392000px;}
.ws90{word-spacing:-13.284000px;}
.ws40{word-spacing:-13.266720px;}
.ws9{word-spacing:-13.122000px;}
.wsa1{word-spacing:-13.014000px;}
.wsc{word-spacing:-12.780000px;}
.ws1{word-spacing:-12.445920px;}
.ws25{word-spacing:-12.301200px;}
.ws83{word-spacing:-12.204000px;}
.ws23{word-spacing:-12.108240px;}
.ws3{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.770560px;}
.ws2{word-spacing:-11.722320px;}
.wsa{word-spacing:-11.706480px;}
.ws0{word-spacing:-11.095200px;}
.ws6{word-spacing:-10.440000px;}
.ws8e{word-spacing:-10.356480px;}
.ws21{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.020160px;}
.ws73{word-spacing:-4.305600px;}
.wsbe{word-spacing:-3.764880px;}
.ws6c{word-spacing:-3.709440px;}
.ws82{word-spacing:-3.576960px;}
.ws9d{word-spacing:-3.186000px;}
.ws49{word-spacing:-3.047760px;}
.ws7e{word-spacing:-2.980800px;}
.wsc7{word-spacing:-2.868480px;}
.ws68{word-spacing:-2.848320px;}
.wsd3{word-spacing:-2.808720px;}
.ws3e{word-spacing:-2.629440px;}
.ws5d{word-spacing:-2.517120px;}
.ws31{word-spacing:-2.330640px;}
.ws5e{word-spacing:-2.318400px;}
.wsd4{word-spacing:-2.211120px;}
.ws5a{word-spacing:-2.185920px;}
.ws2d{word-spacing:-2.091600px;}
.ws4c{word-spacing:-1.912320px;}
.wsb6{word-spacing:-1.854720px;}
.ws1f{word-spacing:-1.635840px;}
.wsb8{word-spacing:-1.613520px;}
.ws6b{word-spacing:-1.589760px;}
.ws26{word-spacing:-1.457280px;}
.ws35{word-spacing:-1.374480px;}
.ws44{word-spacing:-1.254240px;}
.ws8b{word-spacing:-1.059840px;}
.ws29{word-spacing:-0.918000px;}
.ws43{word-spacing:-0.916560px;}
.ws2f{word-spacing:-0.896400px;}
.ws58{word-spacing:-0.861120px;}
.wsbc{word-spacing:-0.776880px;}
.ws52{word-spacing:-0.728640px;}
.wsc8{word-spacing:-0.717120px;}
.ws2e{word-spacing:-0.657360px;}
.ws19{word-spacing:-0.378000px;}
.ws16{word-spacing:-0.358560px;}
.ws27{word-spacing:-0.349920px;}
.ws8a{word-spacing:-0.331200px;}
.wsc2{word-spacing:-0.239040px;}
.ws99{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.204480px;}
.ws12{word-spacing:-0.179280px;}
.ws28{word-spacing:-0.162000px;}
.ws5c{word-spacing:-0.132480px;}
.wsbb{word-spacing:-0.119520px;}
.wsa4{word-spacing:-0.066240px;}
.ws4f{word-spacing:-0.059760px;}
.ws17{word-spacing:-0.048240px;}
.wse{word-spacing:0.000000px;}
.ws7a{word-spacing:0.054000px;}
.ws34{word-spacing:0.059760px;}
.wsa5{word-spacing:0.108000px;}
.ws7f{word-spacing:0.119520px;}
.ws85{word-spacing:0.162000px;}
.ws1a{word-spacing:0.216000px;}
.ws7d{word-spacing:0.239040px;}
.wsf{word-spacing:0.241200px;}
.ws14{word-spacing:0.264960px;}
.ws81{word-spacing:0.270000px;}
.ws15{word-spacing:0.289440px;}
.ws86{word-spacing:0.324000px;}
.ws13{word-spacing:0.331200px;}
.ws11{word-spacing:0.337680px;}
.wsbd{word-spacing:0.358560px;}
.ws95{word-spacing:0.378000px;}
.ws6e{word-spacing:0.397440px;}
.ws80{word-spacing:0.418320px;}
.ws88{word-spacing:0.432000px;}
.ws74{word-spacing:0.463680px;}
.ws39{word-spacing:0.478080px;}
.wsd{word-spacing:0.482400px;}
.ws1e{word-spacing:0.511200px;}
.ws10{word-spacing:0.530640px;}
.ws2b{word-spacing:0.537840px;}
.ws87{word-spacing:0.540000px;}
.ws6d{word-spacing:0.596160px;}
.wsbf{word-spacing:0.717120px;}
.ws57{word-spacing:0.728640px;}
.ws38{word-spacing:0.776880px;}
.ws2a{word-spacing:0.956160px;}
.ws18{word-spacing:0.964800px;}
.ws79{word-spacing:1.134000px;}
.ws36{word-spacing:1.254960px;}
.ws1d{word-spacing:1.278000px;}
.ws53{word-spacing:1.324800px;}
.ws62{word-spacing:1.457280px;}
.ws33{word-spacing:1.494000px;}
.ws4b{word-spacing:1.673280px;}
.ws2c{word-spacing:1.972080px;}
.ws1b{word-spacing:1.993680px;}
.ws5f{word-spacing:2.053440px;}
.wsc4{word-spacing:2.151360px;}
.ws56{word-spacing:2.185920px;}
.ws37{word-spacing:2.211120px;}
.ws4a{word-spacing:2.390400px;}
.wsa0{word-spacing:2.538000px;}
.ws7b{word-spacing:2.583360px;}
.ws4d{word-spacing:2.689200px;}
.ws20{word-spacing:2.709360px;}
.ws64{word-spacing:2.782080px;}
.ws5b{word-spacing:2.914560px;}
.ws3c{word-spacing:2.928240px;}
.ws9b{word-spacing:3.294000px;}
.ws30{word-spacing:3.406320px;}
.ws63{word-spacing:3.444480px;}
.ws6f{word-spacing:3.576960px;}
.wsc5{word-spacing:3.585600px;}
.ws3b{word-spacing:3.645360px;}
.ws3f{word-spacing:3.824640px;}
.ws3a{word-spacing:4.123440px;}
.ws72{word-spacing:4.173120px;}
.wscb{word-spacing:4.302720px;}
.ws70{word-spacing:4.305600px;}
.wsd2{word-spacing:4.362480px;}
.ws45{word-spacing:4.541760px;}
.ws32{word-spacing:4.840560px;}
.ws6a{word-spacing:4.901760px;}
.wscc{word-spacing:4.960080px;}
.ws66{word-spacing:5.034240px;}
.wscd{word-spacing:5.079600px;}
.wsce{word-spacing:5.438160px;}
.ws4e{word-spacing:5.557680px;}
.wsae{word-spacing:5.562000px;}
.ws67{word-spacing:5.630400px;}
.wsb7{word-spacing:5.677200px;}
.ws60{word-spacing:5.762880px;}
.ws3d{word-spacing:5.976000px;}
.ws47{word-spacing:6.274800px;}
.ws51{word-spacing:6.359040px;}
.wsca{word-spacing:6.454080px;}
.ws54{word-spacing:6.491520px;}
.ws46{word-spacing:6.513840px;}
.ws98{word-spacing:6.858000px;}
.ws48{word-spacing:7.051680px;}
.wsa6{word-spacing:7.087680px;}
.ws59{word-spacing:7.220160px;}
.wsba{word-spacing:7.230960px;}
.wsb9{word-spacing:7.768800px;}
.ws50{word-spacing:7.816320px;}
.ws55{word-spacing:7.948800px;}
.ws91{word-spacing:8.478720px;}
.wsc3{word-spacing:8.485920px;}
.ws78{word-spacing:8.611200px;}
.wsad{word-spacing:9.018000px;}
.wsc9{word-spacing:9.203040px;}
.ws61{word-spacing:9.207360px;}
.wsc1{word-spacing:9.920160px;}
.ws84{word-spacing:9.936000px;}
.wsc0{word-spacing:10.338480px;}
.ws92{word-spacing:11.393280px;}
.wsa8{word-spacing:11.525760px;}
.ws65{word-spacing:12.254400px;}
.wsc6{word-spacing:12.788640px;}
.wsac{word-spacing:12.983040px;}
.wsb1{word-spacing:13.579200px;}
.ws9c{word-spacing:14.202000px;}
.ws93{word-spacing:14.970240px;}
.ws94{word-spacing:15.102720px;}
.ws96{word-spacing:17.658000px;}
.wsd0{word-spacing:22.888080px;}
.ws7c{word-spacing:23.051520px;}
.wscf{word-spacing:23.605200px;}
.wsab{word-spacing:25.171200px;}
.wsaa{word-spacing:26.298000px;}
.ws97{word-spacing:32.184000px;}
.ws8d{word-spacing:32.788800px;}
.wsd1{word-spacing:36.573120px;}
.ws9e{word-spacing:39.150000px;}
.wsb0{word-spacing:45.036000px;}
.ws9f{word-spacing:47.196000px;}
.wsa2{word-spacing:61.801920px;}
.wsa3{word-spacing:61.934400px;}
.ws8c{word-spacing:73.327680px;}
.wsaf{word-spacing:89.694000px;}
._3{margin-left:-9.001152px;}
._4{margin-left:-2.443104px;}
._1{margin-left:-1.331424px;}
._0{width:1.022688px;}
._5{width:2.026944px;}
._2{width:3.656736px;}
._7{width:5.398272px;}
._6{width:6.994512px;}
.fc6{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(4,98,193);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y181{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y1c8{bottom:2.879850px;}
.y1b4{bottom:2.880000px;}
.y1bb{bottom:3.060000px;}
.yed{bottom:3.240000px;}
.y194{bottom:3.600000px;}
.y17{bottom:3.780000px;}
.y11{bottom:3.960000px;}
.y321{bottom:4.320000px;}
.y185{bottom:7.200000px;}
.yef{bottom:8.460000px;}
.y183{bottom:8.819850px;}
.y106{bottom:9.900000px;}
.y1b5{bottom:18.360000px;}
.y1f6{bottom:18.540000px;}
.y1c1{bottom:19.800000px;}
.y1bc{bottom:19.980000px;}
.y193{bottom:22.500000px;}
.y1a3{bottom:22.680000px;}
.y23f{bottom:23.219850px;}
.y278{bottom:23.220000px;}
.ydb{bottom:23.400000px;}
.y1b7{bottom:23.940000px;}
.y1dd{bottom:24.120000px;}
.y242{bottom:24.840000px;}
.y27{bottom:25.020000px;}
.y1da{bottom:33.840000px;}
.y1b3{bottom:34.020000px;}
.y1b9{bottom:41.040000px;}
.ye{bottom:42.840000px;}
.y1d9{bottom:49.500000px;}
.y26{bottom:50.940000px;}
.y212{bottom:57.240000px;}
.y13{bottom:62.280000px;}
.y262{bottom:62.460000px;}
.y1d8{bottom:64.980000px;}
.y214{bottom:65.160000px;}
.y285{bottom:81.720000px;}
.y261{bottom:81.900000px;}
.y260{bottom:101.339850px;}
.y325{bottom:101.340000px;}
.y31d{bottom:101.880000px;}
.y24{bottom:109.079640px;}
.y129{bottom:110.525040px;}
.yaf{bottom:110.840250px;}
.y4d{bottom:110.887920px;}
.y216{bottom:111.600000px;}
.y71{bottom:112.318560px;}
.y2e8{bottom:116.945820px;}
.y2a0{bottom:117.512640px;}
.y2ba{bottom:118.375050px;}
.ydd{bottom:120.780000px;}
.y32c{bottom:120.960000px;}
.y31b{bottom:121.320000px;}
.y169{bottom:121.852650px;}
.y25e{bottom:122.097600px;}
.yd9{bottom:122.225760px;}
.y23{bottom:123.840540px;}
.y105{bottom:125.820000px;}
.y1ee{bottom:127.794240px;}
.y97{bottom:128.824410px;}
.y128{bottom:129.966480px;}
.yae{bottom:130.281690px;}
.y4c{bottom:130.324860px;}
.y70{bottom:131.942160px;}
.y1a2{bottom:133.920000px;}
.y30c{bottom:136.545120px;}
.y2e7{bottom:136.562040px;}
.y23d{bottom:136.651680px;}
.y29f{bottom:137.136240px;}
.y2b9{bottom:137.816490px;}
.y22{bottom:138.422520px;}
.y281{bottom:139.503240px;}
.y32a{bottom:140.220000px;}
.y168{bottom:141.294090px;}
.y1cb{bottom:141.479850px;}
.yd8{bottom:141.849360px;}
.y1ed{bottom:147.600000px;}
.y96{bottom:148.265850px;}
.y14b{bottom:148.348650px;}
.y139{bottom:148.365210px;}
.y104{bottom:149.760000px;}
.yad{bottom:149.905290px;}
.y4b{bottom:149.941080px;}
.y25d{bottom:150.713280px;}
.y21{bottom:153.183420px;}
.y30b{bottom:155.982060px;}
.y2e6{bottom:155.998980px;}
.y29e{bottom:156.577680px;}
.y2b8{bottom:157.257930px;}
.y127{bottom:158.408640px;}
.y2d7{bottom:159.032160px;}
.y318{bottom:159.660000px;}
.y6f{bottom:160.375680px;}
.y280{bottom:160.560000px;}
.y167{bottom:160.735530px;}
.y23c{bottom:165.085200px;}
.y1ca{bottom:167.580000px;}
.y95{bottom:167.889450px;}
.yac{bottom:169.346730px;}
.y4a{bottom:169.378020px;}
.yd7{bottom:170.282880px;}
.y1a1{bottom:171.900000px;}
.y103{bottom:172.260000px;}
.y20{bottom:174.600000px;}
.y1ec{bottom:175.320000px;}
.y30a{bottom:175.419000px;}
.y2e5{bottom:175.435920px;}
.y210{bottom:175.864320px;}
.y29d{bottom:176.019120px;}
.y2b7{bottom:176.881530px;}
.y14a{bottom:176.964330px;}
.y138{bottom:176.980890px;}
.y2d6{bottom:178.469100px;}
.y25c{bottom:179.146800px;}
.y6e{bottom:179.817120px;}
.y166{bottom:180.359130px;}
.y1c9{bottom:184.680000px;}
.y1f{bottom:186.661620px;}
.y126{bottom:187.024320px;}
.y94{bottom:187.330890px;}
.y27f{bottom:188.280000px;}
.yab{bottom:188.788170px;}
.y49{bottom:188.814960px;}
.yd6{bottom:189.724320px;}
.y1eb{bottom:190.800000px;}
.y23b{bottom:193.518720px;}
.y1a0{bottom:194.400000px;}
.y102{bottom:194.760000px;}
.y309{bottom:195.035220px;}
.y2e4{bottom:195.052140px;}
.y2b6{bottom:196.322970px;}
.y2d5{bottom:197.906040px;}
.y6d{bottom:199.440720px;}
.y1e{bottom:201.422520px;}
.y1c7{bottom:201.600000px;}
.y27d{bottom:203.760000px;}
.y20f{bottom:204.480000px;}
.y29c{bottom:204.634800px;}
.y149{bottom:205.397850px;}
.y137{bottom:205.414410px;}
.y93{bottom:206.772330px;}
.y25b{bottom:207.580320px;}
.y1ea{bottom:207.720000px;}
.yaa{bottom:208.411770px;}
.y165{bottom:208.444890px;}
.y308{bottom:214.472160px;}
.y2e3{bottom:214.489080px;}
.y125{bottom:215.457840px;}
.y2b5{bottom:215.764410px;}
.y1d{bottom:216.004500px;}
.y19f{bottom:216.900000px;}
.y101{bottom:217.260000px;}
.y48{bottom:217.509690px;}
.y2d4{bottom:217.522260px;}
.yd5{bottom:218.337840px;}
.y1c6{bottom:218.700000px;}
.y6c{bottom:218.882160px;}
.y23a{bottom:222.134400px;}
.y29b{bottom:224.076240px;}
.y1e9{bottom:224.820000px;}
.y92{bottom:226.395930px;}
.ya9{bottom:227.853210px;}
.y27e{bottom:228.600000px;}
.y20e{bottom:232.913520px;}
.y148{bottom:233.831370px;}
.y136{bottom:233.847930px;}
.y307{bottom:233.909100px;}
.y2e2{bottom:233.926020px;}
.y124{bottom:234.899280px;}
.y2b4{bottom:235.388010px;}
.y1c5{bottom:235.620000px;}
.y25a{bottom:236.196000px;}
.y2d3{bottom:236.959200px;}
.y1c{bottom:237.600000px;}
.y6b{bottom:238.323600px;}
.y19e{bottom:239.400000px;}
.y100{bottom:239.760000px;}
.y1e8{bottom:241.740000px;}
.ybf{bottom:242.838720px;}
.y29a{bottom:243.517680px;}
.y27b{bottom:245.700000px;}
.y91{bottom:245.837370px;}
.y47{bottom:245.955450px;}
.yd4{bottom:246.771360px;}
.y239{bottom:250.567920px;}
.y20d{bottom:252.354960px;}
.y1c4{bottom:252.720000px;}
.y306{bottom:253.525320px;}
.y2e1{bottom:253.542240px;}
.y123{bottom:254.522880px;}
.y2b3{bottom:254.829450px;}
.y335{bottom:254.880000px;}
.ya8{bottom:256.286730px;}
.y2d2{bottom:256.396140px;}
.y17a{bottom:257.846100px;}
.y6a{bottom:257.947200px;}
.y17d{bottom:258.588600px;}
.y1e7{bottom:258.840000px;}
.y1b{bottom:259.746480px;}
.y19d{bottom:261.900000px;}
.yff{bottom:262.260000px;}
.y147{bottom:262.447050px;}
.y135{bottom:262.463610px;}
.y299{bottom:263.141280px;}
.y259{bottom:264.629520px;}
.y90{bottom:265.278810px;}
.y27a{bottom:266.760000px;}
.y1c3{bottom:269.640000px;}
.y27c{bottom:270.540000px;}
.ybe{bottom:271.454400px;}
.y20c{bottom:271.978560px;}
.y305{bottom:272.962260px;}
.y2e0{bottom:272.979180px;}
.y2b2{bottom:274.270890px;}
.y46{bottom:274.401210px;}
.yd3{bottom:275.204880px;}
.ya7{bottom:275.910330px;}
.y1e6{bottom:275.940000px;}
.y2d1{bottom:276.012360px;}
.y69{bottom:277.388640px;}
.y238{bottom:279.001440px;}
.y298{bottom:282.582720px;}
.y122{bottom:282.956400px;}
.y19c{bottom:284.400000px;}
.yfe{bottom:284.760000px;}
.y8f{bottom:284.902410px;}
.y1c2{bottom:286.740000px;}
.y277{bottom:287.820000px;}
.y1a{bottom:288.180000px;}
.y146{bottom:290.880570px;}
.y134{bottom:290.897130px;}
.y20b{bottom:291.418560px;}
.y304{bottom:292.399200px;}
.y2df{bottom:292.416120px;}
.y1e5{bottom:292.860000px;}
.y258{bottom:293.063040px;}
.y2b1{bottom:293.894490px;}
.y334{bottom:293.946840px;}
.y330{bottom:293.949900px;}
.yd2{bottom:294.828480px;}
.ya6{bottom:295.351770px;}
.y2d0{bottom:295.449300px;}
.ybd{bottom:299.887920px;}
.y17b{bottom:300.668100px;}
.y17e{bottom:301.410600px;}
.y297{bottom:302.024160px;}
.y121{bottom:302.397840px;}
.y45{bottom:303.026250px;}
.y1c0{bottom:303.840000px;}
.y8e{bottom:304.343850px;}
.y19b{bottom:306.900000px;}
.yfd{bottom:307.260000px;}
.y237{bottom:307.617120px;}
.y1e4{bottom:309.960000px;}
.y20a{bottom:310.856400px;}
.y279{bottom:311.040000px;}
.y303{bottom:312.015420px;}
.y2de{bottom:312.032340px;}
.y333{bottom:313.383780px;}
.y32f{bottom:313.386840px;}
.yd1{bottom:314.269920px;}
.ya5{bottom:314.793210px;}
.y68{bottom:314.830800px;}
.y2cf{bottom:314.886240px;}
.y19{bottom:316.080000px;}
.y145{bottom:319.314090px;}
.y133{bottom:319.330650px;}
.y1bf{bottom:320.760000px;}
.y296{bottom:321.647760px;}
.y257{bottom:321.678720px;}
.y120{bottom:322.021440px;}
.y2b0{bottom:322.328010px;}
.y44{bottom:322.463190px;}
.y8d{bottom:323.785290px;}
.y1e3{bottom:326.880000px;}
.y236{bottom:327.058560px;}
.ybc{bottom:328.321440px;}
.y19a{bottom:329.400000px;}
.yfc{bottom:329.760000px;}
.y209{bottom:330.476400px;}
.y302{bottom:331.452360px;}
.y2dd{bottom:331.469280px;}
.y332{bottom:333.000000px;}
.y32e{bottom:333.003060px;}
.yd0{bottom:333.711360px;}
.y2ce{bottom:334.502460px;}
.y1be{bottom:337.860000px;}
.y295{bottom:341.089200px;}
.y11f{bottom:341.462880px;}
.y2af{bottom:341.769450px;}
.y43{bottom:341.900130px;}
.ya4{bottom:343.408890px;}
.y67{bottom:343.446480px;}
.y17c{bottom:343.490100px;}
.y1e2{bottom:343.980000px;}
.y17f{bottom:344.232600px;}
.y235{bottom:346.492800px;}
.y144{bottom:347.929770px;}
.ybb{bottom:347.945040px;}
.y132{bottom:347.946330px;}
.y208{bottom:350.100000px;}
.y256{bottom:350.112240px;}
.y301{bottom:350.889300px;}
.y2dc{bottom:350.906220px;}
.y199{bottom:351.900000px;}
.yfb{bottom:352.260000px;}
.y8c{bottom:352.400970px;}
.y32d{bottom:352.440000px;}
.ycf{bottom:353.334960px;}
.y2cd{bottom:353.939400px;}
.y1bd{bottom:354.780000px;}
.y276{bottom:359.105760px;}
.y294{bottom:360.530640px;}
.y1e1{bottom:360.900000px;}
.y11e{bottom:360.904320px;}
.y2ae{bottom:361.393050px;}
.y42{bottom:361.516350px;}
.ya3{bottom:362.850330px;}
.y234{bottom:366.116400px;}
.y143{bottom:367.371210px;}
.yba{bottom:367.386480px;}
.y300{bottom:370.505520px;}
.y2db{bottom:370.522440px;}
.y8b{bottom:371.842410px;}
.y66{bottom:371.880000px;}
.y331{bottom:371.883780px;}
.y2cc{bottom:373.376340px;}
.y198{bottom:374.400000px;}
.yfa{bottom:374.760000px;}
.y131{bottom:376.379850px;}
.y18{bottom:376.380000px;}
.y207{bottom:377.820000px;}
.y1e0{bottom:378.000000px;}
.y255{bottom:378.545760px;}
.y275{bottom:378.547200px;}
.y293{bottom:380.154240px;}
.y11d{bottom:380.527920px;}
.y2ad{bottom:380.834490px;}
.y41{bottom:380.953290px;}
.yce{bottom:381.768480px;}
.ya2{bottom:382.291770px;}
.y233{bottom:385.740000px;}
.y142{bottom:386.812650px;}
.y1ba{bottom:388.800000px;}
.y2ff{bottom:389.942460px;}
.y2da{bottom:389.959380px;}
.y8a{bottom:391.283850px;}
.y32b{bottom:391.500000px;}
.y2cb{bottom:392.992560px;}
.y206{bottom:393.300000px;}
.y1df{bottom:395.100000px;}
.yb9{bottom:395.821290px;}
.y197{bottom:396.900000px;}
.yf9{bottom:397.260000px;}
.y164{bottom:398.172810px;}
.y292{bottom:399.595680px;}
.y11c{bottom:399.969360px;}
.y2ac{bottom:400.275930px;}
.y65{bottom:400.387500px;}
.y40{bottom:400.390230px;}
.y12{bottom:401.040000px;}
.ycd{bottom:401.209920px;}
.ya1{bottom:401.915370px;}
.y1b8{bottom:405.900000px;}
.y141{bottom:406.436250px;}
.y254{bottom:407.161440px;}
.y274{bottom:407.162880px;}
.y2fe{bottom:409.379400px;}
.y2d9{bottom:409.396320px;}
.y205{bottom:410.400000px;}
.y89{bottom:410.907450px;}
.y1de{bottom:412.020000px;}
.y2ca{bottom:412.429500px;}
.y232{bottom:413.460000px;}
.y130{bottom:415.444890px;}
.y291{bottom:419.037120px;}
.y196{bottom:419.400000px;}
.yf8{bottom:419.760000px;}
.y2ab{bottom:419.899530px;}
.y64{bottom:420.003720px;}
.y3f{bottom:420.006450px;}
.ycc{bottom:420.833520px;}
.ya0{bottom:421.356810px;}
.y1b6{bottom:423.000000px;}
.yb8{bottom:424.436970px;}
.y16{bottom:424.443060px;}
.y317{bottom:426.060000px;}
.y163{bottom:426.606330px;}
.y204{bottom:427.320000px;}
.y11b{bottom:428.402880px;}
.y231{bottom:428.940000px;}
.y2fd{bottom:428.995620px;}
.y2d8{bottom:429.012540px;}
.y1dc{bottom:429.120000px;}
.y88{bottom:430.348890px;}
.y2c9{bottom:431.866440px;}
.y140{bottom:434.869770px;}
.y12f{bottom:434.886330px;}
.y253{bottom:435.594960px;}
.y273{bottom:435.596400px;}
.y290{bottom:438.660720px;}
.y2aa{bottom:439.340970px;}
.y3e{bottom:439.443390px;}
.ycb{bottom:440.274960px;}
.y230{bottom:440.460000px;}
.y9f{bottom:440.798250px;}
.y195{bottom:441.900000px;}
.yf7{bottom:442.260000px;}
.y15{bottom:443.880000px;}
.y203{bottom:444.420000px;}
.y1db{bottom:446.040000px;}
.y11a{bottom:448.026480px;}
.y2fc{bottom:448.432560px;}
.y63{bottom:448.449480px;}
.y329{bottom:449.469900px;}
.y87{bottom:449.790330px;}
.y320{bottom:450.009900px;}
.y2c8{bottom:451.482660px;}
.yb7{bottom:452.870490px;}
.y13f{bottom:454.311210px;}
.y252{bottom:455.036400px;}
.y162{bottom:455.039850px;}
.y272{bottom:455.220000px;}
.y28f{bottom:458.102160px;}
.y2a9{bottom:458.782410px;}
.y3d{bottom:458.880330px;}
.yca{bottom:459.716400px;}
.y9e{bottom:460.421850px;}
.y1b2{bottom:460.980000px;}
.y202{bottom:461.340000px;}
.y22f{bottom:462.960000px;}
.y12e{bottom:463.319850px;}
.y14{bottom:463.320000px;}
.y192{bottom:464.400000px;}
.yf6{bottom:464.760000px;}
.y1d7{bottom:467.460000px;}
.y2fb{bottom:467.869500px;}
.y62{bottom:467.886420px;}
.y328{bottom:468.906840px;}
.y86{bottom:469.413930px;}
.y31f{bottom:469.446840px;}
.y2c7{bottom:470.919600px;}
.yb6{bottom:472.311930px;}
.y13e{bottom:473.934810px;}
.y22e{bottom:474.480000px;}
.y251{bottom:474.658560px;}
.y161{bottom:474.663450px;}
.y119{bottom:476.447610px;}
.y2a8{bottom:478.406010px;}
.y201{bottom:478.440000px;}
.y3c{bottom:478.496550px;}
.yd{bottom:478.980000px;}
.yc9{bottom:479.340000px;}
.y22d{bottom:480.060000px;}
.y271{bottom:482.940000px;}
.y12d{bottom:482.943450px;}
.yf5{bottom:487.260000px;}
.y2fa{bottom:487.485720px;}
.y61{bottom:487.502640px;}
.y327{bottom:488.343780px;}
.y85{bottom:488.855370px;}
.y31e{bottom:488.883780px;}
.y2c6{bottom:490.356540px;}
.yb5{bottom:491.935530px;}
.y13d{bottom:493.376250px;}
.y250{bottom:494.098560px;}
.y160{bottom:494.104890px;}
.y200{bottom:495.540000px;}
.y28e{bottom:495.544320px;}
.y22c{bottom:496.980000px;}
.y2a7{bottom:497.847450px;}
.y3b{bottom:497.933490px;}
.y26f{bottom:498.600000px;}
.yc8{bottom:498.781440px;}
.y191{bottom:502.200000px;}
.y10{bottom:502.380000px;}
.y118{bottom:504.881130px;}
.y2f9{bottom:506.922660px;}
.y60{bottom:506.939580px;}
.y326{bottom:507.960000px;}
.y84{bottom:508.296810px;}
.y22b{bottom:508.500000px;}
.yf4{bottom:509.760000px;}
.y2c5{bottom:509.972760px;}
.yb4{bottom:511.376970px;}
.y1ff{bottom:512.460000px;}
.y13c{bottom:512.817690px;}
.y24f{bottom:513.534240px;}
.y15f{bottom:513.546330px;}
.y22a{bottom:514.080000px;}
.y2a6{bottom:517.288890px;}
.y3a{bottom:517.370430px;}
.yc7{bottom:518.222880px;}
.y26e{bottom:519.480000px;}
.y1b1{bottom:520.387920px;}
.yf{bottom:521.820000px;}
.y270{bottom:523.440000px;}
.y28d{bottom:524.160000px;}
.y190{bottom:524.700000px;}
.y2f8{bottom:526.359600px;}
.y5f{bottom:526.376520px;}
.y324{bottom:527.400000px;}
.y83{bottom:527.920410px;}
.y31c{bottom:527.940000px;}
.y2c4{bottom:529.409700px;}
.y1fe{bottom:529.560000px;}
.y12c{bottom:530.818410px;}
.y229{bottom:531.180000px;}
.yf3{bottom:532.260000px;}
.y24e{bottom:533.340000px;}
.y117{bottom:533.496810px;}
.y2a5{bottom:536.912490px;}
.y39{bottom:536.986650px;}
.yc6{bottom:537.846480px;}
.y1b0{bottom:539.829360px;}
.y26c{bottom:540.540000px;}
.y13b{bottom:541.433370px;}
.yc{bottom:541.449900px;}
.y15e{bottom:542.162010px;}
.y228{bottom:542.520000px;}
.y2f7{bottom:545.975820px;}
.y5e{bottom:545.992740px;}
.y1fd{bottom:546.480000px;}
.y323{bottom:546.843780px;}
.y18f{bottom:547.200000px;}
.y82{bottom:547.361850px;}
.y31a{bottom:547.380000px;}
.y227{bottom:548.100000px;}
.yb3{bottom:548.819130px;}
.y2c3{bottom:548.846640px;}
.y28c{bottom:552.060000px;}
.y116{bottom:552.938250px;}
.yf2{bottom:554.760000px;}
.y2a4{bottom:556.353930px;}
.y38{bottom:556.423590px;}
.y1d6{bottom:557.822880px;}
.yb{bottom:560.886840px;}
.y24d{bottom:561.060000px;}
.y26b{bottom:561.600000px;}
.y1fc{bottom:563.580000px;}
.y226{bottom:565.200000px;}
.y26d{bottom:565.380000px;}
.y2f6{bottom:565.412760px;}
.y5d{bottom:565.429680px;}
.y13a{bottom:566.091210px;}
.yc5{bottom:566.280000px;}
.y322{bottom:566.460000px;}
.y15d{bottom:566.637690px;}
.y81{bottom:566.803290px;}
.y319{bottom:566.820000px;}
.y28a{bottom:567.540000px;}
.y12b{bottom:568.442730px;}
.y1af{bottom:568.445040px;}
.y2c2{bottom:568.462860px;}
.y18e{bottom:569.700000px;}
.y115{bottom:572.379690px;}
.y9d{bottom:575.795370px;}
.y37{bottom:575.860530px;}
.y225{bottom:576.540000px;}
.yf1{bottom:577.260000px;}
.yb2{bottom:577.434810px;}
.y1d5{bottom:577.446480px;}
.ya{bottom:580.323780px;}
.y1fb{bottom:580.500000px;}
.y224{bottom:582.120000px;}
.y269{bottom:582.480000px;}
.y2f5{bottom:584.849700px;}
.y5c{bottom:584.866620px;}
.y80{bottom:586.426890px;}
.y2c1{bottom:587.899800px;}
.y289{bottom:588.600000px;}
.y114{bottom:592.003290px;}
.y18d{bottom:592.200000px;}
.y16a{bottom:592.280400px;}
.y28b{bottom:592.380000px;}
.y172{bottom:593.036400px;}
.y14c{bottom:593.569500px;}
.y154{bottom:594.339000px;}
.yc4{bottom:594.724500px;}
.y9c{bottom:595.418970px;}
.y36{bottom:595.476750px;}
.y12a{bottom:596.876250px;}
.y1ae{bottom:596.878560px;}
.y1d4{bottom:596.887920px;}
.y1fa{bottom:597.600000px;}
.y223{bottom:599.220000px;}
.yf0{bottom:599.760000px;}
.y9{bottom:599.928480px;}
.y24c{bottom:601.380000px;}
.y268{bottom:603.540000px;}
.y2f4{bottom:604.465920px;}
.y5b{bottom:604.482840px;}
.y316{bottom:605.005920px;}
.y7f{bottom:605.868330px;}
.y26a{bottom:607.320000px;}
.y2c0{bottom:607.336740px;}
.y287{bottom:609.480000px;}
.y222{bottom:610.560000px;}
.y113{bottom:611.444730px;}
.yc3{bottom:614.340000px;}
.y18c{bottom:614.700000px;}
.y9b{bottom:614.860410px;}
.y35{bottom:614.913690px;}
.y221{bottom:616.140000px;}
.y1ad{bottom:616.316400px;}
.y24a{bottom:618.480000px;}
.y16b{bottom:619.374900px;}
.y173{bottom:620.130900px;}
.yee{bottom:622.260000px;}
.y2a3{bottom:623.852490px;}
.y2f3{bottom:623.902860px;}
.y5a{bottom:623.919780px;}
.y14d{bottom:624.295500px;}
.y315{bottom:624.442860px;}
.y267{bottom:624.600000px;}
.y155{bottom:625.065000px;}
.y7e{bottom:625.309770px;}
.y1d3{bottom:625.321440px;}
.y2bf{bottom:626.952960px;}
.y8{bottom:628.374240px;}
.ydc{bottom:630.000000px;}
.y286{bottom:630.540000px;}
.y112{bottom:630.886170px;}
.y1f9{bottom:631.620000px;}
.y220{bottom:633.240000px;}
.y9a{bottom:634.301850px;}
.y288{bottom:634.320000px;}
.y34{bottom:634.350630px;}
.y1ac{bottom:635.938560px;}
.y18b{bottom:637.200000px;}
.y249{bottom:639.540000px;}
.y2a2{bottom:643.293930px;}
.y24b{bottom:643.320000px;}
.y2f2{bottom:643.339800px;}
.y59{bottom:643.356720px;}
.y314{bottom:643.879800px;}
.y21f{bottom:644.760000px;}
.yb1{bottom:644.933370px;}
.yec{bottom:645.480000px;}
.y2be{bottom:646.389900px;}
.y16c{bottom:646.469400px;}
.y174{bottom:647.225400px;}
.y1f8{bottom:648.720000px;}
.ye6{bottom:649.440000px;}
.y21e{bottom:650.340000px;}
.y111{bottom:650.509770px;}
.y284{bottom:651.600000px;}
.y7d{bottom:653.925450px;}
.y1d2{bottom:653.937120px;}
.y33{bottom:653.966850px;}
.y14e{bottom:655.021500px;}
.y1ab{bottom:655.382730px;}
.y156{bottom:655.791000px;}
.y7{bottom:656.804880px;}
.y18a{bottom:659.700000px;}
.y247{bottom:660.600000px;}
.y2a1{bottom:662.917530px;}
.y2f1{bottom:662.956020px;}
.y58{bottom:662.972940px;}
.y313{bottom:663.496020px;}
.yb0{bottom:664.374810px;}
.y1f5{bottom:665.640000px;}
.y2bd{bottom:665.826840px;}
.y265{bottom:666.540000px;}
.y21d{bottom:667.260000px;}
.ye5{bottom:668.880000px;}
.y110{bottom:669.951210px;}
.y7c{bottom:673.366890px;}
.y1d1{bottom:673.378560px;}
.y32{bottom:673.403790px;}
.y16d{bottom:673.563900px;}
.y175{bottom:674.319900px;}
.y6{bottom:676.610640px;}
.y21c{bottom:678.780000px;}
.y246{bottom:681.480000px;}
.y189{bottom:682.200000px;}
.yeb{bottom:682.358970px;}
.y2f0{bottom:682.392960px;}
.y57{bottom:682.409880px;}
.y312{bottom:682.932960px;}
.y1aa{bottom:683.816250px;}
.y1f7{bottom:684.180000px;}
.y21b{bottom:684.360000px;}
.y248{bottom:685.440000px;}
.y2bc{bottom:685.443060px;}
.y14f{bottom:685.747500px;}
.y157{bottom:686.517000px;}
.y264{bottom:687.600000px;}
.ye4{bottom:688.500000px;}
.y10f{bottom:689.392650px;}
.y266{bottom:691.380000px;}
.ye0{bottom:692.280000px;}
.y7b{bottom:692.808330px;}
.y1d0{bottom:692.816400px;}
.y31{bottom:692.840730px;}
.y16e{bottom:700.658400px;}
.y211{bottom:701.280000px;}
.y176{bottom:701.414400px;}
.yea{bottom:701.800410px;}
.y2ef{bottom:701.829900px;}
.y56{bottom:701.846820px;}
.y311{bottom:702.369900px;}
.y245{bottom:702.540000px;}
.y1a9{bottom:703.439850px;}
.y188{bottom:704.700000px;}
.y5{bottom:704.878560px;}
.y2bb{bottom:704.880000px;}
.ye3{bottom:707.940000px;}
.y25f{bottom:708.480000px;}
.y10e{bottom:709.016250px;}
.ydf{bottom:711.720000px;}
.y7a{bottom:712.431930px;}
.y1cf{bottom:712.433520px;}
.y30{bottom:712.456950px;}
.y1f4{bottom:715.500000px;}
.y150{bottom:716.473500px;}
.y158{bottom:717.243000px;}
.y21a{bottom:719.820000px;}
.ye9{bottom:721.424010px;}
.y2ee{bottom:721.446120px;}
.y55{bottom:721.463040px;}
.y310{bottom:721.986120px;}
.y1a8{bottom:722.881290px;}
.y244{bottom:723.600000px;}
.y4{bottom:724.316400px;}
.y187{bottom:727.200000px;}
.ye2{bottom:727.380000px;}
.y16f{bottom:727.752900px;}
.y177{bottom:728.508900px;}
.y10d{bottom:728.639850px;}
.yde{bottom:731.340000px;}
.y79{bottom:731.873370px;}
.y1ce{bottom:731.874960px;}
.y263{bottom:731.880000px;}
.y2f{bottom:731.893890px;}
.y219{bottom:735.300000px;}
.ye8{bottom:740.865450px;}
.y2ed{bottom:740.883060px;}
.y54{bottom:740.899980px;}
.y30f{bottom:741.423060px;}
.y1a7{bottom:742.322730px;}
.y1f3{bottom:742.324320px;}
.y3{bottom:743.940000px;}
.y241{bottom:744.480000px;}
.ye1{bottom:747.000000px;}
.y151{bottom:747.199500px;}
.y159{bottom:747.969000px;}
.y186{bottom:749.700000px;}
.y215{bottom:750.780000px;}
.y78{bottom:751.314810px;}
.y1cd{bottom:751.316400px;}
.y2e{bottom:751.330830px;}
.y170{bottom:754.847400px;}
.y178{bottom:755.603400px;}
.y10c{bottom:756.540000px;}
.ye7{bottom:760.306890px;}
.y2ec{bottom:760.320000px;}
.y53{bottom:760.336920px;}
.y30e{bottom:760.860000px;}
.y1a6{bottom:761.946330px;}
.y1f2{bottom:761.947920px;}
.y240{bottom:765.540000px;}
.y213{bottom:766.440000px;}
.yda{bottom:767.160000px;}
.y243{bottom:769.320000px;}
.y1cc{bottom:769.500720px;}
.y77{bottom:770.938410px;}
.y2d{bottom:770.947050px;}
.y184{bottom:772.200000px;}
.y152{bottom:777.925500px;}
.y15a{bottom:778.695000px;}
.y99{bottom:779.930490px;}
.y2eb{bottom:779.940000px;}
.y52{bottom:779.953140px;}
.y30d{bottom:780.302880px;}
.y10b{bottom:780.480000px;}
.y283{bottom:781.387770px;}
.y218{bottom:781.920000px;}
.y171{bottom:781.941900px;}
.y179{bottom:782.697900px;}
.y23e{bottom:786.600000px;}
.y76{bottom:790.379850px;}
.y1f1{bottom:790.381440px;}
.y2c{bottom:790.383990px;}
.y182{bottom:794.700000px;}
.y217{bottom:797.400000px;}
.y98{bottom:799.371930px;}
.y2ea{bottom:799.380000px;}
.y51{bottom:799.390080px;}
.y282{bottom:800.829210px;}
.y10a{bottom:802.980000px;}
.y153{bottom:808.651500px;}
.y15b{bottom:809.421000px;}
.y2b{bottom:809.820930px;}
.y1a5{bottom:809.821290px;}
.y75{bottom:818.813370px;}
.y1f0{bottom:818.814960px;}
.y2e9{bottom:818.819850px;}
.y50{bottom:818.827020px;}
.y180{bottom:820.980000px;}
.y109{bottom:825.480000px;}
.y2a{bottom:829.437150px;}
.y15c{bottom:829.444890px;}
.yc2{bottom:838.434810px;}
.y74{bottom:838.436970px;}
.y1ef{bottom:838.438560px;}
.y4f{bottom:838.443240px;}
.y108{bottom:847.980000px;}
.y29{bottom:848.874090px;}
.y1a4{bottom:848.886330px;}
.yc1{bottom:857.876250px;}
.y73{bottom:857.878410px;}
.y4e{bottom:857.880180px;}
.y2{bottom:868.319850px;}
.y107{bottom:870.480000px;}
.y28{bottom:877.317120px;}
.y72{bottom:877.319850px;}
.yc0{bottom:877.499850px;}
.y1{bottom:919.440000px;}
.y25{bottom:925.740000px;}
.h28{height:15.478500px;}
.h2b{height:15.480000px;}
.h29{height:15.660000px;}
.h17{height:19.440000px;}
.h18{height:19.620000px;}
.h3a{height:19.621500px;}
.h32{height:19.800000px;}
.h1b{height:22.498500px;}
.h1a{height:22.500000px;}
.h1c{height:23.940000px;}
.h20{height:24.118500px;}
.h19{height:24.120000px;}
.h2c{height:32.400000px;}
.h2a{height:32.580000px;}
.h2d{height:32.581500px;}
.h26{height:36.540000px;}
.h10{height:36.641953px;}
.h33{height:36.720000px;}
.h1f{height:36.966797px;}
.h21{height:37.800000px;}
.h22{height:37.980000px;}
.h15{height:39.060000px;}
.h39{height:40.500000px;}
.h2{height:42.327773px;}
.h11{height:44.854805px;}
.h7{height:44.893125px;}
.h12{height:45.747070px;}
.h25{height:46.620000px;}
.he{height:47.381836px;}
.ha{height:50.626758px;}
.h3{height:52.435898px;}
.h13{height:52.446818px;}
.h9{height:52.481978px;}
.h8{height:52.496378px;}
.hd{height:53.077852px;}
.h27{height:53.640000px;}
.h1d{height:56.116406px;}
.hf{height:58.121719px;}
.h2e{height:58.122319px;}
.h23{height:58.127479px;}
.h34{height:58.128079px;}
.h14{height:58.130359px;}
.h24{height:58.136119px;}
.h3b{height:58.144759px;}
.h30{height:58.147639px;}
.h38{height:58.150519px;}
.h1e{height:58.171279px;}
.hb{height:58.500000px;}
.h6{height:58.833281px;}
.h4{height:60.850547px;}
.h5{height:60.864947px;}
.h3d{height:63.868759px;}
.h2f{height:63.878839px;}
.h37{height:76.707070px;}
.h31{height:77.578500px;}
.hc{height:77.940000px;}
.h36{height:78.341836px;}
.h3e{height:97.380000px;}
.h3c{height:117.000000px;}
.h35{height:124.200000px;}
.h16{height:136.438500px;}
.h40{height:155.520000px;}
.h3f{height:174.960000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.wb{width:3.060000px;}
.w1c{width:20.338500px;}
.w29{width:31.138500px;}
.wd{width:32.580000px;}
.w13{width:35.458500px;}
.w23{width:41.760000px;}
.w1b{width:52.198500px;}
.w11{width:52.380000px;}
.w22{width:52.560000px;}
.w25{width:56.700000px;}
.w15{width:60.120000px;}
.w19{width:60.121500px;}
.w16{width:62.280000px;}
.w1a{width:62.281500px;}
.w2b{width:63.000000px;}
.w1e{width:63.180000px;}
.w2a{width:64.440000px;}
.w20{width:68.580000px;}
.w26{width:70.740000px;}
.w1d{width:72.900000px;}
.we{width:73.080000px;}
.w28{width:73.621500px;}
.w27{width:81.540000px;}
.wf{width:83.518500px;}
.w21{width:83.520000px;}
.w10{width:83.700000px;}
.w18{width:85.860000px;}
.w5{width:93.240000px;}
.w24{width:94.318500px;}
.wa{width:97.558500px;}
.w14{width:102.780000px;}
.w1f{width:167.040000px;}
.w12{width:184.140000px;}
.wc{width:188.460000px;}
.w7{width:191.160000px;}
.w4{width:191.518500px;}
.w17{width:205.380000px;}
.w3{width:244.620000px;}
.w6{width:246.960000px;}
.w2d{width:257.400000px;}
.w8{width:279.538500px;}
.w9{width:288.001500px;}
.w2c{width:316.798500px;}
.w2{width:340.200000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x74{left:1.440000px;}
.x6d{left:3.420000px;}
.x3e{left:5.220000px;}
.x21{left:8.100000px;}
.x71{left:10.980000px;}
.x6f{left:13.860000px;}
.x3a{left:17.100000px;}
.x6c{left:19.080000px;}
.x87{left:20.880000px;}
.x7a{left:22.500000px;}
.x82{left:24.300000px;}
.x5e{left:26.820000px;}
.x60{left:27.900000px;}
.x61{left:29.520000px;}
.x2a{left:37.800000px;}
.xb{left:44.280000px;}
.x91{left:45.720000px;}
.xc{left:46.980000px;}
.x72{left:52.920000px;}
.x3b{left:54.540000px;}
.x9c{left:55.800000px;}
.x2c{left:68.940000px;}
.x7b{left:75.240000px;}
.x37{left:82.440000px;}
.x19{left:84.420000px;}
.x3c{left:90.540000px;}
.xe{left:92.520000px;}
.x34{left:97.740000px;}
.x22{left:100.980000px;}
.x3{left:102.420000px;}
.xd{left:104.580000px;}
.x93{left:105.660000px;}
.x48{left:107.548050px;}
.x53{left:110.021100px;}
.x1b{left:121.320000px;}
.x35{left:123.300000px;}
.x58{left:125.460000px;}
.x1{left:127.440000px;}
.x2e{left:132.120000px;}
.x6{left:135.902880px;}
.x75{left:139.860000px;}
.xf{left:147.600000px;}
.x36{left:150.840000px;}
.x10{left:152.460000px;}
.x23{left:158.580000px;}
.x47{left:161.548050px;}
.x49{left:167.933550px;}
.x30{left:169.020000px;}
.x5f{left:171.900000px;}
.x24{left:183.960000px;}
.x44{left:188.831550px;}
.x7{left:194.409360px;}
.x1e{left:206.280000px;}
.x11{left:207.540000px;}
.x96{left:209.877480px;}
.x46{left:212.888550px;}
.x4{left:215.818560px;}
.x3d{left:219.600000px;}
.x52{left:220.950600px;}
.x16{left:228.420000px;}
.x32{left:231.300000px;}
.x25{left:236.520000px;}
.x20{left:239.400000px;}
.x12{left:241.020000px;}
.x54{left:242.402100px;}
.x45{left:244.654050px;}
.x26{left:246.420000px;}
.x9a{left:253.080000px;}
.x51{left:254.687100px;}
.x56{left:260.017950px;}
.x79{left:267.840000px;}
.x14{left:269.640000px;}
.x38{left:273.960000px;}
.x95{left:276.480000px;}
.x62{left:284.940000px;}
.x5a{left:289.260000px;}
.x13{left:293.580000px;}
.x27{left:296.460000px;}
.x67{left:306.180000px;}
.x6b{left:311.220000px;}
.x94{left:312.300000px;}
.x63{left:321.840000px;}
.x2{left:323.640000px;}
.x76{left:326.520000px;}
.x77{left:327.600000px;}
.x3f{left:328.934550px;}
.x17{left:332.100000px;}
.x15{left:335.160000px;}
.x86{left:338.220000px;}
.x92{left:345.240000px;}
.x28{left:351.000000px;}
.x5{left:359.280720px;}
.x4e{left:363.092100px;}
.x39{left:367.200000px;}
.x97{left:371.700000px;}
.x29{left:376.385760px;}
.x98{left:380.160000px;}
.x9b{left:382.313700px;}
.x18{left:384.480000px;}
.x4d{left:385.569600px;}
.x4f{left:388.796100px;}
.x33{left:392.587380px;}
.x88{left:394.020000px;}
.x7c{left:396.180000px;}
.x5b{left:397.800000px;}
.x6e{left:406.440000px;}
.x59{left:413.460000px;}
.x57{left:420.735450px;}
.x81{left:423.900000px;}
.x64{left:426.060000px;}
.x2b{left:433.080000px;}
.x4b{left:436.964100px;}
.x68{left:447.300000px;}
.x78{left:455.760000px;}
.x70{left:460.080000px;}
.x2d{left:461.700000px;}
.x40{left:465.217050px;}
.x90{left:467.101440px;}
.x9{left:472.866480px;}
.x99{left:473.940000px;}
.x4c{left:475.506600px;}
.x89{left:477.000000px;}
.x1a{left:478.800000px;}
.x7d{left:481.320000px;}
.x5c{left:482.760000px;}
.x65{left:487.620000px;}
.x8f{left:488.704680px;}
.x8b{left:491.940000px;}
.x8{left:499.867560px;}
.x8e{left:504.362160px;}
.x69{left:508.860000px;}
.x1c{left:516.600000px;}
.x41{left:520.486050px;}
.x2f{left:525.780000px;}
.x73{left:534.420000px;}
.x1d{left:547.740000px;}
.x66{left:551.520000px;}
.x50{left:553.536600px;}
.x8c{left:555.840000px;}
.x43{left:557.543550px;}
.x42{left:559.582050px;}
.x31{left:562.500000px;}
.x7e{left:566.280000px;}
.x5d{left:567.900000px;}
.x6a{left:572.760000px;}
.x8a{left:575.100000px;}
.x55{left:576.970950px;}
.x85{left:581.400000px;}
.x8d{left:586.260000px;}
.x83{left:588.240000px;}
.x7f{left:589.860000px;}
.x4a{left:592.751520px;}
.x84{left:594.900000px;}
.x80{left:596.700000px;}
.x1f{left:600.840000px;}
.xa{left:620.832240px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.129707pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.117440pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:27.520000pt;}
.ls20{letter-spacing:-1.487360pt;}
.ls15{letter-spacing:-1.262080pt;}
.ls22{letter-spacing:-1.168640pt;}
.ls21{letter-spacing:-0.956160pt;}
.ls14{letter-spacing:-0.954240pt;}
.lsa{letter-spacing:-0.857600pt;}
.ls25{letter-spacing:-0.647680pt;}
.ls26{letter-spacing:-0.529920pt;}
.ls53{letter-spacing:-0.478080pt;}
.ls32{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.424960pt;}
.ls27{letter-spacing:-0.412160pt;}
.ls48{letter-spacing:-0.353280pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls4e{letter-spacing:-0.318720pt;}
.lsd{letter-spacing:-0.300160pt;}
.lsf{letter-spacing:-0.294400pt;}
.ls9{letter-spacing:-0.257280pt;}
.ls31{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.235520pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls2f{letter-spacing:-0.212480pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.144000pt;}
.ls4f{letter-spacing:-0.106240pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.074240pt;}
.ls1a{letter-spacing:-0.053120pt;}
.lse{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.040320pt;}
.ls6{letter-spacing:0.042880pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2d{letter-spacing:0.053120pt;}
.ls3e{letter-spacing:0.058880pt;}
.ls2b{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls23{letter-spacing:0.117760pt;}
.ls18{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.156800pt;}
.ls19{letter-spacing:0.158720pt;}
.ls4b{letter-spacing:0.159360pt;}
.ls16{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.171520pt;}
.ls34{letter-spacing:0.174080pt;}
.ls8{letter-spacing:0.181760pt;}
.ls42{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.196544pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1d{letter-spacing:0.214400pt;}
.ls54{letter-spacing:0.217792pt;}
.ls58{letter-spacing:0.223104pt;}
.ls57{letter-spacing:0.228416pt;}
.ls59{letter-spacing:0.231040pt;}
.ls46{letter-spacing:0.235520pt;}
.ls4d{letter-spacing:0.254976pt;}
.ls3b{letter-spacing:0.282624pt;}
.ls52{letter-spacing:0.286848pt;}
.ls24{letter-spacing:0.294400pt;}
.ls56{letter-spacing:0.297472pt;}
.ls1{letter-spacing:0.300160pt;}
.ls51{letter-spacing:0.302784pt;}
.ls37{letter-spacing:0.312064pt;}
.ls3{letter-spacing:0.318720pt;}
.ls50{letter-spacing:0.334656pt;}
.ls38{letter-spacing:0.335616pt;}
.ls11{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.341504pt;}
.lsb{letter-spacing:0.343040pt;}
.ls29{letter-spacing:0.647680pt;}
.ls7{letter-spacing:0.817920pt;}
.ls4c{letter-spacing:1.535168pt;}
.ls39{letter-spacing:2.531840pt;}
.ls44{letter-spacing:3.179520pt;}
.ls1f{letter-spacing:3.346560pt;}
.ls47{letter-spacing:3.638784pt;}
.ls1e{letter-spacing:3.984000pt;}
.ls3d{letter-spacing:6.417920pt;}
.ls28{letter-spacing:6.994944pt;}
.ls3c{letter-spacing:7.654400pt;}
.ls41{letter-spacing:10.245120pt;}
.ls45{letter-spacing:11.540480pt;}
.ls33{letter-spacing:13.424640pt;}
.ls43{letter-spacing:22.374400pt;}
.ls55{letter-spacing:32.775040pt;}
.ls2e{letter-spacing:37.388800pt;}
.ls2a{letter-spacing:40.568320pt;}
.ls3a{letter-spacing:55.052800pt;}
.ls4a{letter-spacing:77.608320pt;}
.ls40{letter-spacing:162.096000pt;}
.ls3f{letter-spacing:267.056000pt;}
.ws8f{word-spacing:-58.880000pt;}
.wsa9{word-spacing:-14.955520pt;}
.ws69{word-spacing:-14.837760pt;}
.ws42{word-spacing:-14.720000pt;}
.ws71{word-spacing:-14.425600pt;}
.ws89{word-spacing:-14.072320pt;}
.ws4{word-spacing:-13.598720pt;}
.wsb3{word-spacing:-13.492480pt;}
.ws76{word-spacing:-13.386240pt;}
.ws77{word-spacing:-13.333120pt;}
.ws5{word-spacing:-13.280000pt;}
.ws24{word-spacing:-13.226880pt;}
.wsb4{word-spacing:-13.173760pt;}
.wsb5{word-spacing:-13.067520pt;}
.wsb2{word-spacing:-12.961280pt;}
.ws22{word-spacing:-12.336000pt;}
.wsa7{word-spacing:-12.192000pt;}
.ws9a{word-spacing:-12.144000pt;}
.ws41{word-spacing:-12.111360pt;}
.ws8{word-spacing:-12.000000pt;}
.ws75{word-spacing:-11.904000pt;}
.ws90{word-spacing:-11.808000pt;}
.ws40{word-spacing:-11.792640pt;}
.ws9{word-spacing:-11.664000pt;}
.wsa1{word-spacing:-11.568000pt;}
.wsc{word-spacing:-11.360000pt;}
.ws1{word-spacing:-11.063040pt;}
.ws25{word-spacing:-10.934400pt;}
.ws83{word-spacing:-10.848000pt;}
.ws23{word-spacing:-10.762880pt;}
.ws3{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.462720pt;}
.ws2{word-spacing:-10.419840pt;}
.wsa{word-spacing:-10.405760pt;}
.ws0{word-spacing:-9.862400pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8e{word-spacing:-9.205760pt;}
.ws21{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.017920pt;}
.ws73{word-spacing:-3.827200pt;}
.wsbe{word-spacing:-3.346560pt;}
.ws6c{word-spacing:-3.297280pt;}
.ws82{word-spacing:-3.179520pt;}
.ws9d{word-spacing:-2.832000pt;}
.ws49{word-spacing:-2.709120pt;}
.ws7e{word-spacing:-2.649600pt;}
.wsc7{word-spacing:-2.549760pt;}
.ws68{word-spacing:-2.531840pt;}
.wsd3{word-spacing:-2.496640pt;}
.ws3e{word-spacing:-2.337280pt;}
.ws5d{word-spacing:-2.237440pt;}
.ws31{word-spacing:-2.071680pt;}
.ws5e{word-spacing:-2.060800pt;}
.wsd4{word-spacing:-1.965440pt;}
.ws5a{word-spacing:-1.943040pt;}
.ws2d{word-spacing:-1.859200pt;}
.ws4c{word-spacing:-1.699840pt;}
.wsb6{word-spacing:-1.648640pt;}
.ws1f{word-spacing:-1.454080pt;}
.wsb8{word-spacing:-1.434240pt;}
.ws6b{word-spacing:-1.413120pt;}
.ws26{word-spacing:-1.295360pt;}
.ws35{word-spacing:-1.221760pt;}
.ws44{word-spacing:-1.114880pt;}
.ws8b{word-spacing:-0.942080pt;}
.ws29{word-spacing:-0.816000pt;}
.ws43{word-spacing:-0.814720pt;}
.ws2f{word-spacing:-0.796800pt;}
.ws58{word-spacing:-0.765440pt;}
.wsbc{word-spacing:-0.690560pt;}
.ws52{word-spacing:-0.647680pt;}
.wsc8{word-spacing:-0.637440pt;}
.ws2e{word-spacing:-0.584320pt;}
.ws19{word-spacing:-0.336000pt;}
.ws16{word-spacing:-0.318720pt;}
.ws27{word-spacing:-0.311040pt;}
.ws8a{word-spacing:-0.294400pt;}
.wsc2{word-spacing:-0.212480pt;}
.ws99{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.181760pt;}
.ws12{word-spacing:-0.159360pt;}
.ws28{word-spacing:-0.144000pt;}
.ws5c{word-spacing:-0.117760pt;}
.wsbb{word-spacing:-0.106240pt;}
.wsa4{word-spacing:-0.058880pt;}
.ws4f{word-spacing:-0.053120pt;}
.ws17{word-spacing:-0.042880pt;}
.wse{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.048000pt;}
.ws34{word-spacing:0.053120pt;}
.wsa5{word-spacing:0.096000pt;}
.ws7f{word-spacing:0.106240pt;}
.ws85{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.212480pt;}
.wsf{word-spacing:0.214400pt;}
.ws14{word-spacing:0.235520pt;}
.ws81{word-spacing:0.240000pt;}
.ws15{word-spacing:0.257280pt;}
.ws86{word-spacing:0.288000pt;}
.ws13{word-spacing:0.294400pt;}
.ws11{word-spacing:0.300160pt;}
.wsbd{word-spacing:0.318720pt;}
.ws95{word-spacing:0.336000pt;}
.ws6e{word-spacing:0.353280pt;}
.ws80{word-spacing:0.371840pt;}
.ws88{word-spacing:0.384000pt;}
.ws74{word-spacing:0.412160pt;}
.ws39{word-spacing:0.424960pt;}
.wsd{word-spacing:0.428800pt;}
.ws1e{word-spacing:0.454400pt;}
.ws10{word-spacing:0.471680pt;}
.ws2b{word-spacing:0.478080pt;}
.ws87{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.529920pt;}
.wsbf{word-spacing:0.637440pt;}
.ws57{word-spacing:0.647680pt;}
.ws38{word-spacing:0.690560pt;}
.ws2a{word-spacing:0.849920pt;}
.ws18{word-spacing:0.857600pt;}
.ws79{word-spacing:1.008000pt;}
.ws36{word-spacing:1.115520pt;}
.ws1d{word-spacing:1.136000pt;}
.ws53{word-spacing:1.177600pt;}
.ws62{word-spacing:1.295360pt;}
.ws33{word-spacing:1.328000pt;}
.ws4b{word-spacing:1.487360pt;}
.ws2c{word-spacing:1.752960pt;}
.ws1b{word-spacing:1.772160pt;}
.ws5f{word-spacing:1.825280pt;}
.wsc4{word-spacing:1.912320pt;}
.ws56{word-spacing:1.943040pt;}
.ws37{word-spacing:1.965440pt;}
.ws4a{word-spacing:2.124800pt;}
.wsa0{word-spacing:2.256000pt;}
.ws7b{word-spacing:2.296320pt;}
.ws4d{word-spacing:2.390400pt;}
.ws20{word-spacing:2.408320pt;}
.ws64{word-spacing:2.472960pt;}
.ws5b{word-spacing:2.590720pt;}
.ws3c{word-spacing:2.602880pt;}
.ws9b{word-spacing:2.928000pt;}
.ws30{word-spacing:3.027840pt;}
.ws63{word-spacing:3.061760pt;}
.ws6f{word-spacing:3.179520pt;}
.wsc5{word-spacing:3.187200pt;}
.ws3b{word-spacing:3.240320pt;}
.ws3f{word-spacing:3.399680pt;}
.ws3a{word-spacing:3.665280pt;}
.ws72{word-spacing:3.709440pt;}
.wscb{word-spacing:3.824640pt;}
.ws70{word-spacing:3.827200pt;}
.wsd2{word-spacing:3.877760pt;}
.ws45{word-spacing:4.037120pt;}
.ws32{word-spacing:4.302720pt;}
.ws6a{word-spacing:4.357120pt;}
.wscc{word-spacing:4.408960pt;}
.ws66{word-spacing:4.474880pt;}
.wscd{word-spacing:4.515200pt;}
.wsce{word-spacing:4.833920pt;}
.ws4e{word-spacing:4.940160pt;}
.wsae{word-spacing:4.944000pt;}
.ws67{word-spacing:5.004800pt;}
.wsb7{word-spacing:5.046400pt;}
.ws60{word-spacing:5.122560pt;}
.ws3d{word-spacing:5.312000pt;}
.ws47{word-spacing:5.577600pt;}
.ws51{word-spacing:5.652480pt;}
.wsca{word-spacing:5.736960pt;}
.ws54{word-spacing:5.770240pt;}
.ws46{word-spacing:5.790080pt;}
.ws98{word-spacing:6.096000pt;}
.ws48{word-spacing:6.268160pt;}
.wsa6{word-spacing:6.300160pt;}
.ws59{word-spacing:6.417920pt;}
.wsba{word-spacing:6.427520pt;}
.wsb9{word-spacing:6.905600pt;}
.ws50{word-spacing:6.947840pt;}
.ws55{word-spacing:7.065600pt;}
.ws91{word-spacing:7.536640pt;}
.wsc3{word-spacing:7.543040pt;}
.ws78{word-spacing:7.654400pt;}
.wsad{word-spacing:8.016000pt;}
.wsc9{word-spacing:8.180480pt;}
.ws61{word-spacing:8.184320pt;}
.wsc1{word-spacing:8.817920pt;}
.ws84{word-spacing:8.832000pt;}
.wsc0{word-spacing:9.189760pt;}
.ws92{word-spacing:10.127360pt;}
.wsa8{word-spacing:10.245120pt;}
.ws65{word-spacing:10.892800pt;}
.wsc6{word-spacing:11.367680pt;}
.wsac{word-spacing:11.540480pt;}
.wsb1{word-spacing:12.070400pt;}
.ws9c{word-spacing:12.624000pt;}
.ws93{word-spacing:13.306880pt;}
.ws94{word-spacing:13.424640pt;}
.ws96{word-spacing:15.696000pt;}
.wsd0{word-spacing:20.344960pt;}
.ws7c{word-spacing:20.490240pt;}
.wscf{word-spacing:20.982400pt;}
.wsab{word-spacing:22.374400pt;}
.wsaa{word-spacing:23.376000pt;}
.ws97{word-spacing:28.608000pt;}
.ws8d{word-spacing:29.145600pt;}
.wsd1{word-spacing:32.509440pt;}
.ws9e{word-spacing:34.800000pt;}
.wsb0{word-spacing:40.032000pt;}
.ws9f{word-spacing:41.952000pt;}
.wsa2{word-spacing:54.935040pt;}
.wsa3{word-spacing:55.052800pt;}
.ws8c{word-spacing:65.180160pt;}
.wsaf{word-spacing:79.728000pt;}
._3{margin-left:-8.001024pt;}
._4{margin-left:-2.171648pt;}
._1{margin-left:-1.183488pt;}
._0{width:0.909056pt;}
._5{width:1.801728pt;}
._2{width:3.250432pt;}
._7{width:4.798464pt;}
._6{width:6.217344pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y181{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y1c8{bottom:2.559867pt;}
.y1b4{bottom:2.560000pt;}
.y1bb{bottom:2.720000pt;}
.yed{bottom:2.880000pt;}
.y194{bottom:3.200000pt;}
.y17{bottom:3.360000pt;}
.y11{bottom:3.520000pt;}
.y321{bottom:3.840000pt;}
.y185{bottom:6.400000pt;}
.yef{bottom:7.520000pt;}
.y183{bottom:7.839867pt;}
.y106{bottom:8.800000pt;}
.y1b5{bottom:16.320000pt;}
.y1f6{bottom:16.480000pt;}
.y1c1{bottom:17.600000pt;}
.y1bc{bottom:17.760000pt;}
.y193{bottom:20.000000pt;}
.y1a3{bottom:20.160000pt;}
.y23f{bottom:20.639867pt;}
.y278{bottom:20.640000pt;}
.ydb{bottom:20.800000pt;}
.y1b7{bottom:21.280000pt;}
.y1dd{bottom:21.440000pt;}
.y242{bottom:22.080000pt;}
.y27{bottom:22.240000pt;}
.y1da{bottom:30.080000pt;}
.y1b3{bottom:30.240000pt;}
.y1b9{bottom:36.480000pt;}
.ye{bottom:38.080000pt;}
.y1d9{bottom:44.000000pt;}
.y26{bottom:45.280000pt;}
.y212{bottom:50.880000pt;}
.y13{bottom:55.360000pt;}
.y262{bottom:55.520000pt;}
.y1d8{bottom:57.760000pt;}
.y214{bottom:57.920000pt;}
.y285{bottom:72.640000pt;}
.y261{bottom:72.800000pt;}
.y260{bottom:90.079867pt;}
.y325{bottom:90.080000pt;}
.y31d{bottom:90.560000pt;}
.y24{bottom:96.959680pt;}
.y129{bottom:98.244480pt;}
.yaf{bottom:98.524667pt;}
.y4d{bottom:98.567040pt;}
.y216{bottom:99.200000pt;}
.y71{bottom:99.838720pt;}
.y2e8{bottom:103.951840pt;}
.y2a0{bottom:104.455680pt;}
.y2ba{bottom:105.222267pt;}
.ydd{bottom:107.360000pt;}
.y32c{bottom:107.520000pt;}
.y31b{bottom:107.840000pt;}
.y169{bottom:108.313467pt;}
.y25e{bottom:108.531200pt;}
.yd9{bottom:108.645120pt;}
.y23{bottom:110.080480pt;}
.y105{bottom:111.840000pt;}
.y1ee{bottom:113.594880pt;}
.y97{bottom:114.510587pt;}
.y128{bottom:115.525760pt;}
.yae{bottom:115.805947pt;}
.y4c{bottom:115.844320pt;}
.y70{bottom:117.281920pt;}
.y1a2{bottom:119.040000pt;}
.y30c{bottom:121.373440pt;}
.y2e7{bottom:121.388480pt;}
.y23d{bottom:121.468160pt;}
.y29f{bottom:121.898880pt;}
.y2b9{bottom:122.503547pt;}
.y22{bottom:123.042240pt;}
.y281{bottom:124.002880pt;}
.y32a{bottom:124.640000pt;}
.y168{bottom:125.594747pt;}
.y1cb{bottom:125.759867pt;}
.yd8{bottom:126.088320pt;}
.y1ed{bottom:131.200000pt;}
.y96{bottom:131.791867pt;}
.y14b{bottom:131.865467pt;}
.y139{bottom:131.880187pt;}
.y104{bottom:133.120000pt;}
.yad{bottom:133.249147pt;}
.y4b{bottom:133.280960pt;}
.y25d{bottom:133.967360pt;}
.y21{bottom:136.163040pt;}
.y30b{bottom:138.650720pt;}
.y2e6{bottom:138.665760pt;}
.y29e{bottom:139.180160pt;}
.y2b8{bottom:139.784827pt;}
.y127{bottom:140.807680pt;}
.y2d7{bottom:141.361920pt;}
.y318{bottom:141.920000pt;}
.y6f{bottom:142.556160pt;}
.y280{bottom:142.720000pt;}
.y167{bottom:142.876027pt;}
.y23c{bottom:146.742400pt;}
.y1ca{bottom:148.960000pt;}
.y95{bottom:149.235067pt;}
.yac{bottom:150.530427pt;}
.y4a{bottom:150.558240pt;}
.yd7{bottom:151.362560pt;}
.y1a1{bottom:152.800000pt;}
.y103{bottom:153.120000pt;}
.y20{bottom:155.200000pt;}
.y1ec{bottom:155.840000pt;}
.y30a{bottom:155.928000pt;}
.y2e5{bottom:155.943040pt;}
.y210{bottom:156.323840pt;}
.y29d{bottom:156.461440pt;}
.y2b7{bottom:157.228027pt;}
.y14a{bottom:157.301627pt;}
.y138{bottom:157.316347pt;}
.y2d6{bottom:158.639200pt;}
.y25c{bottom:159.241600pt;}
.y6e{bottom:159.837440pt;}
.y166{bottom:160.319227pt;}
.y1c9{bottom:164.160000pt;}
.y1f{bottom:165.921440pt;}
.y126{bottom:166.243840pt;}
.y94{bottom:166.516347pt;}
.y27f{bottom:167.360000pt;}
.yab{bottom:167.811707pt;}
.y49{bottom:167.835520pt;}
.yd6{bottom:168.643840pt;}
.y1eb{bottom:169.600000pt;}
.y23b{bottom:172.016640pt;}
.y1a0{bottom:172.800000pt;}
.y102{bottom:173.120000pt;}
.y309{bottom:173.364640pt;}
.y2e4{bottom:173.379680pt;}
.y2b6{bottom:174.509307pt;}
.y2d5{bottom:175.916480pt;}
.y6d{bottom:177.280640pt;}
.y1e{bottom:179.042240pt;}
.y1c7{bottom:179.200000pt;}
.y27d{bottom:181.120000pt;}
.y20f{bottom:181.760000pt;}
.y29c{bottom:181.897600pt;}
.y149{bottom:182.575867pt;}
.y137{bottom:182.590587pt;}
.y93{bottom:183.797627pt;}
.y25b{bottom:184.515840pt;}
.y1ea{bottom:184.640000pt;}
.yaa{bottom:185.254907pt;}
.y165{bottom:185.284347pt;}
.y308{bottom:190.641920pt;}
.y2e3{bottom:190.656960pt;}
.y125{bottom:191.518080pt;}
.y2b5{bottom:191.790587pt;}
.y1d{bottom:192.004000pt;}
.y19f{bottom:192.800000pt;}
.y101{bottom:193.120000pt;}
.y48{bottom:193.341947pt;}
.y2d4{bottom:193.353120pt;}
.yd5{bottom:194.078080pt;}
.y1c6{bottom:194.400000pt;}
.y6c{bottom:194.561920pt;}
.y23a{bottom:197.452800pt;}
.y29b{bottom:199.178880pt;}
.y1e9{bottom:199.840000pt;}
.y92{bottom:201.240827pt;}
.ya9{bottom:202.536187pt;}
.y27e{bottom:203.200000pt;}
.y20e{bottom:207.034240pt;}
.y148{bottom:207.850107pt;}
.y136{bottom:207.864827pt;}
.y307{bottom:207.919200pt;}
.y2e2{bottom:207.934240pt;}
.y124{bottom:208.799360pt;}
.y2b4{bottom:209.233787pt;}
.y1c5{bottom:209.440000pt;}
.y25a{bottom:209.952000pt;}
.y2d3{bottom:210.630400pt;}
.y1c{bottom:211.200000pt;}
.y6b{bottom:211.843200pt;}
.y19e{bottom:212.800000pt;}
.y100{bottom:213.120000pt;}
.y1e8{bottom:214.880000pt;}
.ybf{bottom:215.856640pt;}
.y29a{bottom:216.460160pt;}
.y27b{bottom:218.400000pt;}
.y91{bottom:218.522107pt;}
.y47{bottom:218.627067pt;}
.yd4{bottom:219.352320pt;}
.y239{bottom:222.727040pt;}
.y20d{bottom:224.315520pt;}
.y1c4{bottom:224.640000pt;}
.y306{bottom:225.355840pt;}
.y2e1{bottom:225.370880pt;}
.y123{bottom:226.242560pt;}
.y2b3{bottom:226.515067pt;}
.y335{bottom:226.560000pt;}
.ya8{bottom:227.810427pt;}
.y2d2{bottom:227.907680pt;}
.y17a{bottom:229.196533pt;}
.y6a{bottom:229.286400pt;}
.y17d{bottom:229.856533pt;}
.y1e7{bottom:230.080000pt;}
.y1b{bottom:230.885760pt;}
.y19d{bottom:232.800000pt;}
.yff{bottom:233.120000pt;}
.y147{bottom:233.286267pt;}
.y135{bottom:233.300987pt;}
.y299{bottom:233.903360pt;}
.y259{bottom:235.226240pt;}
.y90{bottom:235.803387pt;}
.y27a{bottom:237.120000pt;}
.y1c3{bottom:239.680000pt;}
.y27c{bottom:240.480000pt;}
.ybe{bottom:241.292800pt;}
.y20c{bottom:241.758720pt;}
.y305{bottom:242.633120pt;}
.y2e0{bottom:242.648160pt;}
.y2b2{bottom:243.796347pt;}
.y46{bottom:243.912187pt;}
.yd3{bottom:244.626560pt;}
.ya7{bottom:245.253627pt;}
.y1e6{bottom:245.280000pt;}
.y2d1{bottom:245.344320pt;}
.y69{bottom:246.567680pt;}
.y238{bottom:248.001280pt;}
.y298{bottom:251.184640pt;}
.y122{bottom:251.516800pt;}
.y19c{bottom:252.800000pt;}
.yfe{bottom:253.120000pt;}
.y8f{bottom:253.246587pt;}
.y1c2{bottom:254.880000pt;}
.y277{bottom:255.840000pt;}
.y1a{bottom:256.160000pt;}
.y146{bottom:258.560507pt;}
.y134{bottom:258.575227pt;}
.y20b{bottom:259.038720pt;}
.y304{bottom:259.910400pt;}
.y2df{bottom:259.925440pt;}
.y1e5{bottom:260.320000pt;}
.y258{bottom:260.500480pt;}
.y2b1{bottom:261.239547pt;}
.y334{bottom:261.286080pt;}
.y330{bottom:261.288800pt;}
.yd2{bottom:262.069760pt;}
.ya6{bottom:262.534907pt;}
.y2d0{bottom:262.621600pt;}
.ybd{bottom:266.567040pt;}
.y17b{bottom:267.260533pt;}
.y17e{bottom:267.920533pt;}
.y297{bottom:268.465920pt;}
.y121{bottom:268.798080pt;}
.y45{bottom:269.356667pt;}
.y1c0{bottom:270.080000pt;}
.y8e{bottom:270.527867pt;}
.y19b{bottom:272.800000pt;}
.yfd{bottom:273.120000pt;}
.y237{bottom:273.437440pt;}
.y1e4{bottom:275.520000pt;}
.y20a{bottom:276.316800pt;}
.y279{bottom:276.480000pt;}
.y303{bottom:277.347040pt;}
.y2de{bottom:277.362080pt;}
.y333{bottom:278.563360pt;}
.y32f{bottom:278.566080pt;}
.yd1{bottom:279.351040pt;}
.ya5{bottom:279.816187pt;}
.y68{bottom:279.849600pt;}
.y2cf{bottom:279.898880pt;}
.y19{bottom:280.960000pt;}
.y145{bottom:283.834747pt;}
.y133{bottom:283.849467pt;}
.y1bf{bottom:285.120000pt;}
.y296{bottom:285.909120pt;}
.y257{bottom:285.936640pt;}
.y120{bottom:286.241280pt;}
.y2b0{bottom:286.513787pt;}
.y44{bottom:286.633947pt;}
.y8d{bottom:287.809147pt;}
.y1e3{bottom:290.560000pt;}
.y236{bottom:290.718720pt;}
.ybc{bottom:291.841280pt;}
.y19a{bottom:292.800000pt;}
.yfc{bottom:293.120000pt;}
.y209{bottom:293.756800pt;}
.y302{bottom:294.624320pt;}
.y2dd{bottom:294.639360pt;}
.y332{bottom:296.000000pt;}
.y32e{bottom:296.002720pt;}
.yd0{bottom:296.632320pt;}
.y2ce{bottom:297.335520pt;}
.y1be{bottom:300.320000pt;}
.y295{bottom:303.190400pt;}
.y11f{bottom:303.522560pt;}
.y2af{bottom:303.795067pt;}
.y43{bottom:303.911227pt;}
.ya4{bottom:305.252347pt;}
.y67{bottom:305.285760pt;}
.y17c{bottom:305.324533pt;}
.y1e2{bottom:305.760000pt;}
.y17f{bottom:305.984533pt;}
.y235{bottom:307.993600pt;}
.y144{bottom:309.270907pt;}
.ybb{bottom:309.284480pt;}
.y132{bottom:309.285627pt;}
.y208{bottom:311.200000pt;}
.y256{bottom:311.210880pt;}
.y301{bottom:311.901600pt;}
.y2dc{bottom:311.916640pt;}
.y199{bottom:312.800000pt;}
.yfb{bottom:313.120000pt;}
.y8c{bottom:313.245307pt;}
.y32d{bottom:313.280000pt;}
.ycf{bottom:314.075520pt;}
.y2cd{bottom:314.612800pt;}
.y1bd{bottom:315.360000pt;}
.y276{bottom:319.205120pt;}
.y294{bottom:320.471680pt;}
.y1e1{bottom:320.800000pt;}
.y11e{bottom:320.803840pt;}
.y2ae{bottom:321.238267pt;}
.y42{bottom:321.347867pt;}
.ya3{bottom:322.533627pt;}
.y234{bottom:325.436800pt;}
.y143{bottom:326.552187pt;}
.yba{bottom:326.565760pt;}
.y300{bottom:329.338240pt;}
.y2db{bottom:329.353280pt;}
.y8b{bottom:330.526587pt;}
.y66{bottom:330.560000pt;}
.y331{bottom:330.563360pt;}
.y2cc{bottom:331.890080pt;}
.y198{bottom:332.800000pt;}
.yfa{bottom:333.120000pt;}
.y131{bottom:334.559867pt;}
.y18{bottom:334.560000pt;}
.y207{bottom:335.840000pt;}
.y1e0{bottom:336.000000pt;}
.y255{bottom:336.485120pt;}
.y275{bottom:336.486400pt;}
.y293{bottom:337.914880pt;}
.y11d{bottom:338.247040pt;}
.y2ad{bottom:338.519547pt;}
.y41{bottom:338.625147pt;}
.yce{bottom:339.349760pt;}
.ya2{bottom:339.814907pt;}
.y233{bottom:342.880000pt;}
.y142{bottom:343.833467pt;}
.y1ba{bottom:345.600000pt;}
.y2ff{bottom:346.615520pt;}
.y2da{bottom:346.630560pt;}
.y8a{bottom:347.807867pt;}
.y32b{bottom:348.000000pt;}
.y2cb{bottom:349.326720pt;}
.y206{bottom:349.600000pt;}
.y1df{bottom:351.200000pt;}
.yb9{bottom:351.841147pt;}
.y197{bottom:352.800000pt;}
.yf9{bottom:353.120000pt;}
.y164{bottom:353.931387pt;}
.y292{bottom:355.196160pt;}
.y11c{bottom:355.528320pt;}
.y2ac{bottom:355.800827pt;}
.y65{bottom:355.900000pt;}
.y40{bottom:355.902427pt;}
.y12{bottom:356.480000pt;}
.ycd{bottom:356.631040pt;}
.ya1{bottom:357.258107pt;}
.y1b8{bottom:360.800000pt;}
.y141{bottom:361.276667pt;}
.y254{bottom:361.921280pt;}
.y274{bottom:361.922560pt;}
.y2fe{bottom:363.892800pt;}
.y2d9{bottom:363.907840pt;}
.y205{bottom:364.800000pt;}
.y89{bottom:365.251067pt;}
.y1de{bottom:366.240000pt;}
.y2ca{bottom:366.604000pt;}
.y232{bottom:367.520000pt;}
.y130{bottom:369.284347pt;}
.y291{bottom:372.477440pt;}
.y196{bottom:372.800000pt;}
.yf8{bottom:373.120000pt;}
.y2ab{bottom:373.244027pt;}
.y64{bottom:373.336640pt;}
.y3f{bottom:373.339067pt;}
.ycc{bottom:374.074240pt;}
.ya0{bottom:374.539387pt;}
.y1b6{bottom:376.000000pt;}
.yb8{bottom:377.277307pt;}
.y16{bottom:377.282720pt;}
.y317{bottom:378.720000pt;}
.y163{bottom:379.205627pt;}
.y204{bottom:379.840000pt;}
.y11b{bottom:380.802560pt;}
.y231{bottom:381.280000pt;}
.y2fd{bottom:381.329440pt;}
.y2d8{bottom:381.344480pt;}
.y1dc{bottom:381.440000pt;}
.y88{bottom:382.532347pt;}
.y2c9{bottom:383.881280pt;}
.y140{bottom:386.550907pt;}
.y12f{bottom:386.565627pt;}
.y253{bottom:387.195520pt;}
.y273{bottom:387.196800pt;}
.y290{bottom:389.920640pt;}
.y2aa{bottom:390.525307pt;}
.y3e{bottom:390.616347pt;}
.ycb{bottom:391.355520pt;}
.y230{bottom:391.520000pt;}
.y9f{bottom:391.820667pt;}
.y195{bottom:392.800000pt;}
.yf7{bottom:393.120000pt;}
.y15{bottom:394.560000pt;}
.y203{bottom:395.040000pt;}
.y1db{bottom:396.480000pt;}
.y11a{bottom:398.245760pt;}
.y2fc{bottom:398.606720pt;}
.y63{bottom:398.621760pt;}
.y329{bottom:399.528800pt;}
.y87{bottom:399.813627pt;}
.y320{bottom:400.008800pt;}
.y2c8{bottom:401.317920pt;}
.yb7{bottom:402.551547pt;}
.y13f{bottom:403.832187pt;}
.y252{bottom:404.476800pt;}
.y162{bottom:404.479867pt;}
.y272{bottom:404.640000pt;}
.y28f{bottom:407.201920pt;}
.y2a9{bottom:407.806587pt;}
.y3d{bottom:407.893627pt;}
.yca{bottom:408.636800pt;}
.y9e{bottom:409.263867pt;}
.y1b2{bottom:409.760000pt;}
.y202{bottom:410.080000pt;}
.y22f{bottom:411.520000pt;}
.y12e{bottom:411.839867pt;}
.y14{bottom:411.840000pt;}
.y192{bottom:412.800000pt;}
.yf6{bottom:413.120000pt;}
.y1d7{bottom:415.520000pt;}
.y2fb{bottom:415.884000pt;}
.y62{bottom:415.899040pt;}
.y328{bottom:416.806080pt;}
.y86{bottom:417.256827pt;}
.y31f{bottom:417.286080pt;}
.y2c7{bottom:418.595200pt;}
.yb6{bottom:419.832827pt;}
.y13e{bottom:421.275387pt;}
.y22e{bottom:421.760000pt;}
.y251{bottom:421.918720pt;}
.y161{bottom:421.923067pt;}
.y119{bottom:423.508987pt;}
.y2a8{bottom:425.249787pt;}
.y201{bottom:425.280000pt;}
.y3c{bottom:425.330267pt;}
.yd{bottom:425.760000pt;}
.yc9{bottom:426.080000pt;}
.y22d{bottom:426.720000pt;}
.y271{bottom:429.280000pt;}
.y12d{bottom:429.283067pt;}
.yf5{bottom:433.120000pt;}
.y2fa{bottom:433.320640pt;}
.y61{bottom:433.335680pt;}
.y327{bottom:434.083360pt;}
.y85{bottom:434.538107pt;}
.y31e{bottom:434.563360pt;}
.y2c6{bottom:435.872480pt;}
.yb5{bottom:437.276027pt;}
.y13d{bottom:438.556667pt;}
.y250{bottom:439.198720pt;}
.y160{bottom:439.204347pt;}
.y200{bottom:440.480000pt;}
.y28e{bottom:440.483840pt;}
.y22c{bottom:441.760000pt;}
.y2a7{bottom:442.531067pt;}
.y3b{bottom:442.607547pt;}
.y26f{bottom:443.200000pt;}
.yc8{bottom:443.361280pt;}
.y191{bottom:446.400000pt;}
.y10{bottom:446.560000pt;}
.y118{bottom:448.783227pt;}
.y2f9{bottom:450.597920pt;}
.y60{bottom:450.612960pt;}
.y326{bottom:451.520000pt;}
.y84{bottom:451.819387pt;}
.y22b{bottom:452.000000pt;}
.yf4{bottom:453.120000pt;}
.y2c5{bottom:453.309120pt;}
.yb4{bottom:454.557307pt;}
.y1ff{bottom:455.520000pt;}
.y13c{bottom:455.837947pt;}
.y24f{bottom:456.474880pt;}
.y15f{bottom:456.485627pt;}
.y22a{bottom:456.960000pt;}
.y2a6{bottom:459.812347pt;}
.y3a{bottom:459.884827pt;}
.yc7{bottom:460.642560pt;}
.y26e{bottom:461.760000pt;}
.y1b1{bottom:462.567040pt;}
.yf{bottom:463.840000pt;}
.y270{bottom:465.280000pt;}
.y28d{bottom:465.920000pt;}
.y190{bottom:466.400000pt;}
.y2f8{bottom:467.875200pt;}
.y5f{bottom:467.890240pt;}
.y324{bottom:468.800000pt;}
.y83{bottom:469.262587pt;}
.y31c{bottom:469.280000pt;}
.y2c4{bottom:470.586400pt;}
.y1fe{bottom:470.720000pt;}
.y12c{bottom:471.838587pt;}
.y229{bottom:472.160000pt;}
.yf3{bottom:473.120000pt;}
.y24e{bottom:474.080000pt;}
.y117{bottom:474.219387pt;}
.y2a5{bottom:477.255547pt;}
.y39{bottom:477.321467pt;}
.yc6{bottom:478.085760pt;}
.y1b0{bottom:479.848320pt;}
.y26c{bottom:480.480000pt;}
.y13b{bottom:481.274107pt;}
.yc{bottom:481.288800pt;}
.y15e{bottom:481.921787pt;}
.y228{bottom:482.240000pt;}
.y2f7{bottom:485.311840pt;}
.y5e{bottom:485.326880pt;}
.y1fd{bottom:485.760000pt;}
.y323{bottom:486.083360pt;}
.y18f{bottom:486.400000pt;}
.y82{bottom:486.543867pt;}
.y31a{bottom:486.560000pt;}
.y227{bottom:487.200000pt;}
.yb3{bottom:487.839227pt;}
.y2c3{bottom:487.863680pt;}
.y28c{bottom:490.720000pt;}
.y116{bottom:491.500667pt;}
.yf2{bottom:493.120000pt;}
.y2a4{bottom:494.536827pt;}
.y38{bottom:494.598747pt;}
.y1d6{bottom:495.842560pt;}
.yb{bottom:498.566080pt;}
.y24d{bottom:498.720000pt;}
.y26b{bottom:499.200000pt;}
.y1fc{bottom:500.960000pt;}
.y226{bottom:502.400000pt;}
.y26d{bottom:502.560000pt;}
.y2f6{bottom:502.589120pt;}
.y5d{bottom:502.604160pt;}
.y13a{bottom:503.192187pt;}
.yc5{bottom:503.360000pt;}
.y322{bottom:503.520000pt;}
.y15d{bottom:503.677947pt;}
.y81{bottom:503.825147pt;}
.y319{bottom:503.840000pt;}
.y28a{bottom:504.480000pt;}
.y12b{bottom:505.282427pt;}
.y1af{bottom:505.284480pt;}
.y2c2{bottom:505.300320pt;}
.y18e{bottom:506.400000pt;}
.y115{bottom:508.781947pt;}
.y9d{bottom:511.818107pt;}
.y37{bottom:511.876027pt;}
.y225{bottom:512.480000pt;}
.yf1{bottom:513.120000pt;}
.yb2{bottom:513.275387pt;}
.y1d5{bottom:513.285760pt;}
.ya{bottom:515.843360pt;}
.y1fb{bottom:516.000000pt;}
.y224{bottom:517.440000pt;}
.y269{bottom:517.760000pt;}
.y2f5{bottom:519.866400pt;}
.y5c{bottom:519.881440pt;}
.y80{bottom:521.268347pt;}
.y2c1{bottom:522.577600pt;}
.y289{bottom:523.200000pt;}
.y114{bottom:526.225147pt;}
.y18d{bottom:526.400000pt;}
.y16a{bottom:526.471467pt;}
.y28b{bottom:526.560000pt;}
.y172{bottom:527.143467pt;}
.y14c{bottom:527.617333pt;}
.y154{bottom:528.301333pt;}
.yc4{bottom:528.644000pt;}
.y9c{bottom:529.261307pt;}
.y36{bottom:529.312667pt;}
.y12a{bottom:530.556667pt;}
.y1ae{bottom:530.558720pt;}
.y1d4{bottom:530.567040pt;}
.y1fa{bottom:531.200000pt;}
.y223{bottom:532.640000pt;}
.yf0{bottom:533.120000pt;}
.y9{bottom:533.269760pt;}
.y24c{bottom:534.560000pt;}
.y268{bottom:536.480000pt;}
.y2f4{bottom:537.303040pt;}
.y5b{bottom:537.318080pt;}
.y316{bottom:537.783040pt;}
.y7f{bottom:538.549627pt;}
.y26a{bottom:539.840000pt;}
.y2c0{bottom:539.854880pt;}
.y287{bottom:541.760000pt;}
.y222{bottom:542.720000pt;}
.y113{bottom:543.506427pt;}
.yc3{bottom:546.080000pt;}
.y18c{bottom:546.400000pt;}
.y9b{bottom:546.542587pt;}
.y35{bottom:546.589947pt;}
.y221{bottom:547.680000pt;}
.y1ad{bottom:547.836800pt;}
.y24a{bottom:549.760000pt;}
.y16b{bottom:550.555467pt;}
.y173{bottom:551.227467pt;}
.yee{bottom:553.120000pt;}
.y2a3{bottom:554.535547pt;}
.y2f3{bottom:554.580320pt;}
.y5a{bottom:554.595360pt;}
.y14d{bottom:554.929333pt;}
.y315{bottom:555.060320pt;}
.y267{bottom:555.200000pt;}
.y155{bottom:555.613333pt;}
.y7e{bottom:555.830907pt;}
.y1d3{bottom:555.841280pt;}
.y2bf{bottom:557.291520pt;}
.y8{bottom:558.554880pt;}
.ydc{bottom:560.000000pt;}
.y286{bottom:560.480000pt;}
.y112{bottom:560.787707pt;}
.y1f9{bottom:561.440000pt;}
.y220{bottom:562.880000pt;}
.y9a{bottom:563.823867pt;}
.y288{bottom:563.840000pt;}
.y34{bottom:563.867227pt;}
.y1ac{bottom:565.278720pt;}
.y18b{bottom:566.400000pt;}
.y249{bottom:568.480000pt;}
.y2a2{bottom:571.816827pt;}
.y24b{bottom:571.840000pt;}
.y2f2{bottom:571.857600pt;}
.y59{bottom:571.872640pt;}
.y314{bottom:572.337600pt;}
.y21f{bottom:573.120000pt;}
.yb1{bottom:573.274107pt;}
.yec{bottom:573.760000pt;}
.y2be{bottom:574.568800pt;}
.y16c{bottom:574.639467pt;}
.y174{bottom:575.311467pt;}
.y1f8{bottom:576.640000pt;}
.ye6{bottom:577.280000pt;}
.y21e{bottom:578.080000pt;}
.y111{bottom:578.230907pt;}
.y284{bottom:579.200000pt;}
.y7d{bottom:581.267067pt;}
.y1d2{bottom:581.277440pt;}
.y33{bottom:581.303867pt;}
.y14e{bottom:582.241333pt;}
.y1ab{bottom:582.562427pt;}
.y156{bottom:582.925333pt;}
.y7{bottom:583.826560pt;}
.y18a{bottom:586.400000pt;}
.y247{bottom:587.200000pt;}
.y2a1{bottom:589.260027pt;}
.y2f1{bottom:589.294240pt;}
.y58{bottom:589.309280pt;}
.y313{bottom:589.774240pt;}
.yb0{bottom:590.555387pt;}
.y1f5{bottom:591.680000pt;}
.y2bd{bottom:591.846080pt;}
.y265{bottom:592.480000pt;}
.y21d{bottom:593.120000pt;}
.ye5{bottom:594.560000pt;}
.y110{bottom:595.512187pt;}
.y7c{bottom:598.548347pt;}
.y1d1{bottom:598.558720pt;}
.y32{bottom:598.581147pt;}
.y16d{bottom:598.723467pt;}
.y175{bottom:599.395467pt;}
.y6{bottom:601.431680pt;}
.y21c{bottom:603.360000pt;}
.y246{bottom:605.760000pt;}
.y189{bottom:606.400000pt;}
.yeb{bottom:606.541307pt;}
.y2f0{bottom:606.571520pt;}
.y57{bottom:606.586560pt;}
.y312{bottom:607.051520pt;}
.y1aa{bottom:607.836667pt;}
.y1f7{bottom:608.160000pt;}
.y21b{bottom:608.320000pt;}
.y248{bottom:609.280000pt;}
.y2bc{bottom:609.282720pt;}
.y14f{bottom:609.553333pt;}
.y157{bottom:610.237333pt;}
.y264{bottom:611.200000pt;}
.ye4{bottom:612.000000pt;}
.y10f{bottom:612.793467pt;}
.y266{bottom:614.560000pt;}
.ye0{bottom:615.360000pt;}
.y7b{bottom:615.829627pt;}
.y1d0{bottom:615.836800pt;}
.y31{bottom:615.858427pt;}
.y16e{bottom:622.807467pt;}
.y211{bottom:623.360000pt;}
.y176{bottom:623.479467pt;}
.yea{bottom:623.822587pt;}
.y2ef{bottom:623.848800pt;}
.y56{bottom:623.863840pt;}
.y311{bottom:624.328800pt;}
.y245{bottom:624.480000pt;}
.y1a9{bottom:625.279867pt;}
.y188{bottom:626.400000pt;}
.y5{bottom:626.558720pt;}
.y2bb{bottom:626.560000pt;}
.ye3{bottom:629.280000pt;}
.y25f{bottom:629.760000pt;}
.y10e{bottom:630.236667pt;}
.ydf{bottom:632.640000pt;}
.y7a{bottom:633.272827pt;}
.y1cf{bottom:633.274240pt;}
.y30{bottom:633.295067pt;}
.y1f4{bottom:636.000000pt;}
.y150{bottom:636.865333pt;}
.y158{bottom:637.549333pt;}
.y21a{bottom:639.840000pt;}
.ye9{bottom:641.265787pt;}
.y2ee{bottom:641.285440pt;}
.y55{bottom:641.300480pt;}
.y310{bottom:641.765440pt;}
.y1a8{bottom:642.561147pt;}
.y244{bottom:643.200000pt;}
.y4{bottom:643.836800pt;}
.y187{bottom:646.400000pt;}
.ye2{bottom:646.560000pt;}
.y16f{bottom:646.891467pt;}
.y177{bottom:647.563467pt;}
.y10d{bottom:647.679867pt;}
.yde{bottom:650.080000pt;}
.y79{bottom:650.554107pt;}
.y1ce{bottom:650.555520pt;}
.y263{bottom:650.560000pt;}
.y2f{bottom:650.572347pt;}
.y219{bottom:653.600000pt;}
.ye8{bottom:658.547067pt;}
.y2ed{bottom:658.562720pt;}
.y54{bottom:658.577760pt;}
.y30f{bottom:659.042720pt;}
.y1a7{bottom:659.842427pt;}
.y1f3{bottom:659.843840pt;}
.y3{bottom:661.280000pt;}
.y241{bottom:661.760000pt;}
.ye1{bottom:664.000000pt;}
.y151{bottom:664.177333pt;}
.y159{bottom:664.861333pt;}
.y186{bottom:666.400000pt;}
.y215{bottom:667.360000pt;}
.y78{bottom:667.835387pt;}
.y1cd{bottom:667.836800pt;}
.y2e{bottom:667.849627pt;}
.y170{bottom:670.975467pt;}
.y178{bottom:671.647467pt;}
.y10c{bottom:672.480000pt;}
.ye7{bottom:675.828347pt;}
.y2ec{bottom:675.840000pt;}
.y53{bottom:675.855040pt;}
.y30e{bottom:676.320000pt;}
.y1a6{bottom:677.285627pt;}
.y1f2{bottom:677.287040pt;}
.y240{bottom:680.480000pt;}
.y213{bottom:681.280000pt;}
.yda{bottom:681.920000pt;}
.y243{bottom:683.840000pt;}
.y1cc{bottom:684.000640pt;}
.y77{bottom:685.278587pt;}
.y2d{bottom:685.286267pt;}
.y184{bottom:686.400000pt;}
.y152{bottom:691.489333pt;}
.y15a{bottom:692.173333pt;}
.y99{bottom:693.271547pt;}
.y2eb{bottom:693.280000pt;}
.y52{bottom:693.291680pt;}
.y30d{bottom:693.602560pt;}
.y10b{bottom:693.760000pt;}
.y283{bottom:694.566907pt;}
.y218{bottom:695.040000pt;}
.y171{bottom:695.059467pt;}
.y179{bottom:695.731467pt;}
.y23e{bottom:699.200000pt;}
.y76{bottom:702.559867pt;}
.y1f1{bottom:702.561280pt;}
.y2c{bottom:702.563547pt;}
.y182{bottom:706.400000pt;}
.y217{bottom:708.800000pt;}
.y98{bottom:710.552827pt;}
.y2ea{bottom:710.560000pt;}
.y51{bottom:710.568960pt;}
.y282{bottom:711.848187pt;}
.y10a{bottom:713.760000pt;}
.y153{bottom:718.801333pt;}
.y15b{bottom:719.485333pt;}
.y2b{bottom:719.840827pt;}
.y1a5{bottom:719.841147pt;}
.y75{bottom:727.834107pt;}
.y1f0{bottom:727.835520pt;}
.y2e9{bottom:727.839867pt;}
.y50{bottom:727.846240pt;}
.y180{bottom:729.760000pt;}
.y109{bottom:733.760000pt;}
.y2a{bottom:737.277467pt;}
.y15c{bottom:737.284347pt;}
.yc2{bottom:745.275387pt;}
.y74{bottom:745.277307pt;}
.y1ef{bottom:745.278720pt;}
.y4f{bottom:745.282880pt;}
.y108{bottom:753.760000pt;}
.y29{bottom:754.554747pt;}
.y1a4{bottom:754.565627pt;}
.yc1{bottom:762.556667pt;}
.y73{bottom:762.558587pt;}
.y4e{bottom:762.560160pt;}
.y2{bottom:771.839867pt;}
.y107{bottom:773.760000pt;}
.y28{bottom:779.837440pt;}
.y72{bottom:779.839867pt;}
.yc0{bottom:779.999867pt;}
.y1{bottom:817.280000pt;}
.y25{bottom:822.880000pt;}
.h28{height:13.758667pt;}
.h2b{height:13.760000pt;}
.h29{height:13.920000pt;}
.h17{height:17.280000pt;}
.h18{height:17.440000pt;}
.h3a{height:17.441333pt;}
.h32{height:17.600000pt;}
.h1b{height:19.998667pt;}
.h1a{height:20.000000pt;}
.h1c{height:21.280000pt;}
.h20{height:21.438667pt;}
.h19{height:21.440000pt;}
.h2c{height:28.800000pt;}
.h2a{height:28.960000pt;}
.h2d{height:28.961333pt;}
.h26{height:32.480000pt;}
.h10{height:32.570625pt;}
.h33{height:32.640000pt;}
.h1f{height:32.859375pt;}
.h21{height:33.600000pt;}
.h22{height:33.760000pt;}
.h15{height:34.720000pt;}
.h39{height:36.000000pt;}
.h2{height:37.624687pt;}
.h11{height:39.870937pt;}
.h7{height:39.905000pt;}
.h12{height:40.664062pt;}
.h25{height:41.440000pt;}
.he{height:42.117188pt;}
.ha{height:45.001562pt;}
.h3{height:46.609688pt;}
.h13{height:46.619394pt;}
.h9{height:46.650648pt;}
.h8{height:46.663448pt;}
.hd{height:47.180312pt;}
.h27{height:47.680000pt;}
.h1d{height:49.881250pt;}
.hf{height:51.663750pt;}
.h2e{height:51.664283pt;}
.h23{height:51.668870pt;}
.h34{height:51.669403pt;}
.h14{height:51.671430pt;}
.h24{height:51.676550pt;}
.h3b{height:51.684230pt;}
.h30{height:51.686790pt;}
.h38{height:51.689350pt;}
.h1e{height:51.707803pt;}
.hb{height:52.000000pt;}
.h6{height:52.296250pt;}
.h4{height:54.089375pt;}
.h5{height:54.102175pt;}
.h3d{height:56.772230pt;}
.h2f{height:56.781190pt;}
.h37{height:68.184063pt;}
.h31{height:68.958667pt;}
.hc{height:69.280000pt;}
.h36{height:69.637188pt;}
.h3e{height:86.560000pt;}
.h3c{height:104.000000pt;}
.h35{height:110.400000pt;}
.h16{height:121.278667pt;}
.h40{height:138.240000pt;}
.h3f{height:155.520000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.wb{width:2.720000pt;}
.w1c{width:18.078667pt;}
.w29{width:27.678667pt;}
.wd{width:28.960000pt;}
.w13{width:31.518667pt;}
.w23{width:37.120000pt;}
.w1b{width:46.398667pt;}
.w11{width:46.560000pt;}
.w22{width:46.720000pt;}
.w25{width:50.400000pt;}
.w15{width:53.440000pt;}
.w19{width:53.441333pt;}
.w16{width:55.360000pt;}
.w1a{width:55.361333pt;}
.w2b{width:56.000000pt;}
.w1e{width:56.160000pt;}
.w2a{width:57.280000pt;}
.w20{width:60.960000pt;}
.w26{width:62.880000pt;}
.w1d{width:64.800000pt;}
.we{width:64.960000pt;}
.w28{width:65.441333pt;}
.w27{width:72.480000pt;}
.wf{width:74.238667pt;}
.w21{width:74.240000pt;}
.w10{width:74.400000pt;}
.w18{width:76.320000pt;}
.w5{width:82.880000pt;}
.w24{width:83.838667pt;}
.wa{width:86.718667pt;}
.w14{width:91.360000pt;}
.w1f{width:148.480000pt;}
.w12{width:163.680000pt;}
.wc{width:167.520000pt;}
.w7{width:169.920000pt;}
.w4{width:170.238667pt;}
.w17{width:182.560000pt;}
.w3{width:217.440000pt;}
.w6{width:219.520000pt;}
.w2d{width:228.800000pt;}
.w8{width:248.478667pt;}
.w9{width:256.001333pt;}
.w2c{width:281.598667pt;}
.w2{width:302.400000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x74{left:1.280000pt;}
.x6d{left:3.040000pt;}
.x3e{left:4.640000pt;}
.x21{left:7.200000pt;}
.x71{left:9.760000pt;}
.x6f{left:12.320000pt;}
.x3a{left:15.200000pt;}
.x6c{left:16.960000pt;}
.x87{left:18.560000pt;}
.x7a{left:20.000000pt;}
.x82{left:21.600000pt;}
.x5e{left:23.840000pt;}
.x60{left:24.800000pt;}
.x61{left:26.240000pt;}
.x2a{left:33.600000pt;}
.xb{left:39.360000pt;}
.x91{left:40.640000pt;}
.xc{left:41.760000pt;}
.x72{left:47.040000pt;}
.x3b{left:48.480000pt;}
.x9c{left:49.600000pt;}
.x2c{left:61.280000pt;}
.x7b{left:66.880000pt;}
.x37{left:73.280000pt;}
.x19{left:75.040000pt;}
.x3c{left:80.480000pt;}
.xe{left:82.240000pt;}
.x34{left:86.880000pt;}
.x22{left:89.760000pt;}
.x3{left:91.040000pt;}
.xd{left:92.960000pt;}
.x93{left:93.920000pt;}
.x48{left:95.598267pt;}
.x53{left:97.796533pt;}
.x1b{left:107.840000pt;}
.x35{left:109.600000pt;}
.x58{left:111.520000pt;}
.x1{left:113.280000pt;}
.x2e{left:117.440000pt;}
.x6{left:120.802560pt;}
.x75{left:124.320000pt;}
.xf{left:131.200000pt;}
.x36{left:134.080000pt;}
.x10{left:135.520000pt;}
.x23{left:140.960000pt;}
.x47{left:143.598267pt;}
.x49{left:149.274267pt;}
.x30{left:150.240000pt;}
.x5f{left:152.800000pt;}
.x24{left:163.520000pt;}
.x44{left:167.850267pt;}
.x7{left:172.808320pt;}
.x1e{left:183.360000pt;}
.x11{left:184.480000pt;}
.x96{left:186.557760pt;}
.x46{left:189.234267pt;}
.x4{left:191.838720pt;}
.x3d{left:195.200000pt;}
.x52{left:196.400533pt;}
.x16{left:203.040000pt;}
.x32{left:205.600000pt;}
.x25{left:210.240000pt;}
.x20{left:212.800000pt;}
.x12{left:214.240000pt;}
.x54{left:215.468533pt;}
.x45{left:217.470267pt;}
.x26{left:219.040000pt;}
.x9a{left:224.960000pt;}
.x51{left:226.388533pt;}
.x56{left:231.127067pt;}
.x79{left:238.080000pt;}
.x14{left:239.680000pt;}
.x38{left:243.520000pt;}
.x95{left:245.760000pt;}
.x62{left:253.280000pt;}
.x5a{left:257.120000pt;}
.x13{left:260.960000pt;}
.x27{left:263.520000pt;}
.x67{left:272.160000pt;}
.x6b{left:276.640000pt;}
.x94{left:277.600000pt;}
.x63{left:286.080000pt;}
.x2{left:287.680000pt;}
.x76{left:290.240000pt;}
.x77{left:291.200000pt;}
.x3f{left:292.386267pt;}
.x17{left:295.200000pt;}
.x15{left:297.920000pt;}
.x86{left:300.640000pt;}
.x92{left:306.880000pt;}
.x28{left:312.000000pt;}
.x5{left:319.360640pt;}
.x4e{left:322.748533pt;}
.x39{left:326.400000pt;}
.x97{left:330.400000pt;}
.x29{left:334.565120pt;}
.x98{left:337.920000pt;}
.x9b{left:339.834400pt;}
.x18{left:341.760000pt;}
.x4d{left:342.728533pt;}
.x4f{left:345.596533pt;}
.x33{left:348.966560pt;}
.x88{left:350.240000pt;}
.x7c{left:352.160000pt;}
.x5b{left:353.600000pt;}
.x6e{left:361.280000pt;}
.x59{left:367.520000pt;}
.x57{left:373.987067pt;}
.x81{left:376.800000pt;}
.x64{left:378.720000pt;}
.x2b{left:384.960000pt;}
.x4b{left:388.412533pt;}
.x68{left:397.600000pt;}
.x78{left:405.120000pt;}
.x70{left:408.960000pt;}
.x2d{left:410.400000pt;}
.x40{left:413.526267pt;}
.x90{left:415.201280pt;}
.x9{left:420.325760pt;}
.x99{left:421.280000pt;}
.x4c{left:422.672533pt;}
.x89{left:424.000000pt;}
.x1a{left:425.600000pt;}
.x7d{left:427.840000pt;}
.x5c{left:429.120000pt;}
.x65{left:433.440000pt;}
.x8f{left:434.404160pt;}
.x8b{left:437.280000pt;}
.x8{left:444.326720pt;}
.x8e{left:448.321920pt;}
.x69{left:452.320000pt;}
.x1c{left:459.200000pt;}
.x41{left:462.654267pt;}
.x2f{left:467.360000pt;}
.x73{left:475.040000pt;}
.x1d{left:486.880000pt;}
.x66{left:490.240000pt;}
.x50{left:492.032533pt;}
.x8c{left:494.080000pt;}
.x43{left:495.594267pt;}
.x42{left:497.406267pt;}
.x31{left:500.000000pt;}
.x7e{left:503.360000pt;}
.x5d{left:504.800000pt;}
.x6a{left:509.120000pt;}
.x8a{left:511.200000pt;}
.x55{left:512.863067pt;}
.x85{left:516.800000pt;}
.x8d{left:521.120000pt;}
.x83{left:522.880000pt;}
.x7f{left:524.320000pt;}
.x4a{left:526.890240pt;}
.x84{left:528.800000pt;}
.x80{left:530.400000pt;}
.x1f{left:534.080000pt;}
.xa{left:551.850880pt;}
}




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