
    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_d157ca4cdb6593a047d964fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193000;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_de613fe17f19c9879e5484ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.249000;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_6e9771f984dec2b20c30f2e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.159000;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_bfc2778316034738b78e4edc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.272000;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_95da40ed1f96604b14607807.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_bf6c8f5b70e6c6034dd3305c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.268000;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_71340e34df5b6a5bfebeda44.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.760000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.106000px;}
.v2{vertical-align:18.822000px;}
.ls3d{letter-spacing:-4.080000px;}
.ls58{letter-spacing:-1.368000px;}
.ls5c{letter-spacing:-0.960000px;}
.ls4d{letter-spacing:-0.816000px;}
.ls5e{letter-spacing:-0.798000px;}
.ls4e{letter-spacing:-0.765000px;}
.ls5f{letter-spacing:-0.741000px;}
.ls27{letter-spacing:-0.570000px;}
.ls5d{letter-spacing:-0.456000px;}
.ls30{letter-spacing:-0.399000px;}
.ls38{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.342000px;}
.ls47{letter-spacing:-0.306000px;}
.ls26{letter-spacing:-0.285000px;}
.ls46{letter-spacing:-0.255000px;}
.ls2f{letter-spacing:-0.228000px;}
.ls12{letter-spacing:-0.171000px;}
.ls21{letter-spacing:-0.153000px;}
.ls4f{letter-spacing:-0.126000px;}
.ls55{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.114000px;}
.ls22{letter-spacing:-0.102000px;}
.ls11{letter-spacing:-0.057000px;}
.ls20{letter-spacing:-0.051000px;}
.ls1{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.025500px;}
.ls1d{letter-spacing:0.051000px;}
.ls6{letter-spacing:0.057000px;}
.ls3b{letter-spacing:0.079680px;}
.ls3f{letter-spacing:0.085500px;}
.ls4c{letter-spacing:0.086280px;}
.ls1f{letter-spacing:0.102000px;}
.ls18{letter-spacing:0.114000px;}
.ls56{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.142500px;}
.ls42{letter-spacing:0.153000px;}
.lsf{letter-spacing:0.171000px;}
.ls37{letter-spacing:0.199500px;}
.ls50{letter-spacing:0.204000px;}
.ls7{letter-spacing:0.228000px;}
.ls52{letter-spacing:0.236880px;}
.ls3{letter-spacing:0.240000px;}
.ls54{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.255000px;}
.ls45{letter-spacing:0.256500px;}
.ls14{letter-spacing:0.285000px;}
.ls1c{letter-spacing:0.306000px;}
.ls61{letter-spacing:0.313500px;}
.ls5a{letter-spacing:0.331500px;}
.ls4{letter-spacing:0.342000px;}
.ls1b{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.370500px;}
.lse{letter-spacing:0.399000px;}
.ls1a{letter-spacing:0.408000px;}
.ls2c{letter-spacing:0.427500px;}
.ls3c{letter-spacing:0.433500px;}
.ls8{letter-spacing:0.456000px;}
.ls19{letter-spacing:0.459000px;}
.ls3a{letter-spacing:0.484500px;}
.ls5b{letter-spacing:0.510000px;}
.ls5{letter-spacing:0.513000px;}
.ls31{letter-spacing:0.561000px;}
.ls2{letter-spacing:0.570000px;}
.ls4a{letter-spacing:0.586500px;}
.ls28{letter-spacing:0.598500px;}
.ls43{letter-spacing:0.612000px;}
.lsd{letter-spacing:0.627000px;}
.ls29{letter-spacing:0.655500px;}
.ls34{letter-spacing:0.663000px;}
.ls13{letter-spacing:0.684000px;}
.ls62{letter-spacing:0.712500px;}
.ls33{letter-spacing:0.714000px;}
.ls35{letter-spacing:0.741000px;}
.ls66{letter-spacing:0.763800px;}
.ls65{letter-spacing:0.769500px;}
.lsa{letter-spacing:0.798000px;}
.ls15{letter-spacing:0.855000px;}
.ls63{letter-spacing:0.867000px;}
.ls16{letter-spacing:0.883500px;}
.ls36{letter-spacing:0.912000px;}
.ls32{letter-spacing:0.918000px;}
.ls48{letter-spacing:0.940500px;}
.ls3e{letter-spacing:0.969000px;}
.ls51{letter-spacing:1.020000px;}
.ls25{letter-spacing:1.026000px;}
.ls2d{letter-spacing:1.083000px;}
.ls41{letter-spacing:1.122000px;}
.ls4b{letter-spacing:1.140000px;}
.ls40{letter-spacing:1.173000px;}
.ls2b{letter-spacing:1.197000px;}
.ls2e{letter-spacing:1.254000px;}
.ls24{letter-spacing:1.282500px;}
.ls64{letter-spacing:1.299600px;}
.ls23{letter-spacing:1.311000px;}
.ls2a{letter-spacing:1.368000px;}
.ls60{letter-spacing:1.453500px;}
.ls39{letter-spacing:1.482000px;}
.ls53{letter-spacing:1.539000px;}
.lsb{letter-spacing:1.680000px;}
.ls67{letter-spacing:2.508000px;}
.ls68{letter-spacing:2.667600px;}
.ls57{letter-spacing:2.907000px;}
.ls59{letter-spacing:3.345900px;}
.ls0{letter-spacing:6.000000px;}
.ls49{letter-spacing:69.369000px;}
.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;}
}
.ws5{word-spacing:-29.040000px;}
.ws150{word-spacing:-28.440000px;}
.ws125{word-spacing:-27.840000px;}
.ws142{word-spacing:-16.530000px;}
.ws14b{word-spacing:-16.438800px;}
.ws143{word-spacing:-16.387500px;}
.ws12b{word-spacing:-16.359000px;}
.ws26{word-spacing:-16.302000px;}
.ws113{word-spacing:-16.245000px;}
.ws140{word-spacing:-16.188000px;}
.ws12e{word-spacing:-16.045500px;}
.wsed{word-spacing:-16.017000px;}
.ws144{word-spacing:-15.960000px;}
.ws14a{word-spacing:-15.903000px;}
.wsb9{word-spacing:-15.789000px;}
.ws39{word-spacing:-15.675000px;}
.ws141{word-spacing:-15.618000px;}
.ws10{word-spacing:-15.561000px;}
.ws112{word-spacing:-15.447000px;}
.ws10a{word-spacing:-15.045000px;}
.ws151{word-spacing:-14.994000px;}
.wsa1{word-spacing:-14.943000px;}
.ws145{word-spacing:-14.892000px;}
.ws12a{word-spacing:-14.706000px;}
.ws14d{word-spacing:-14.688000px;}
.wseb{word-spacing:-14.637000px;}
.wsfd{word-spacing:-14.611500px;}
.ws11d{word-spacing:-14.592000px;}
.ws11f{word-spacing:-14.535000px;}
.ws51{word-spacing:-14.484000px;}
.ws11e{word-spacing:-14.433000px;}
.ws52{word-spacing:-14.382000px;}
.wsfa{word-spacing:-14.364000px;}
.wsa2{word-spacing:-14.331000px;}
.ws114{word-spacing:-14.307000px;}
.wse4{word-spacing:-14.280000px;}
.ws109{word-spacing:-14.229000px;}
.wse3{word-spacing:-14.178000px;}
.wsec{word-spacing:-14.050500px;}
.ws57{word-spacing:-14.025000px;}
.wsa3{word-spacing:-13.974000px;}
.ws56{word-spacing:-13.923000px;}
.ws55{word-spacing:-13.872000px;}
.wsf5{word-spacing:-13.770000px;}
.ws132{word-spacing:-13.719000px;}
.ws4{word-spacing:-13.680000px;}
.ws106{word-spacing:-13.209000px;}
.ws54{word-spacing:-12.903000px;}
.ws53{word-spacing:-12.852000px;}
.ws139{word-spacing:-12.801000px;}
.ws10d{word-spacing:-11.550000px;}
.wscd{word-spacing:-10.584000px;}
.wsfe{word-spacing:-9.091500px;}
.ws0{word-spacing:-6.000000px;}
.ws70{word-spacing:-5.722800px;}
.ws107{word-spacing:-3.927000px;}
.ws108{word-spacing:-3.621000px;}
.ws126{word-spacing:-3.477000px;}
.ws127{word-spacing:-3.192000px;}
.wsbf{word-spacing:-3.135000px;}
.ws98{word-spacing:-2.964000px;}
.ws97{word-spacing:-2.736000px;}
.wsc8{word-spacing:-2.679000px;}
.ws102{word-spacing:-2.622000px;}
.ws12d{word-spacing:-2.565000px;}
.ws23{word-spacing:-2.394000px;}
.ws21{word-spacing:-2.337000px;}
.ws11{word-spacing:-2.280000px;}
.ws32{word-spacing:-2.223000px;}
.ws133{word-spacing:-2.193000px;}
.wsc9{word-spacing:-2.166000px;}
.ws62{word-spacing:-2.142000px;}
.ws4e{word-spacing:-2.109000px;}
.ws58{word-spacing:-2.091000px;}
.wsdc{word-spacing:-2.052000px;}
.ws134{word-spacing:-2.040000px;}
.ws1d{word-spacing:-1.995000px;}
.ws13c{word-spacing:-1.989000px;}
.ws63{word-spacing:-1.938000px;}
.ws65{word-spacing:-1.887000px;}
.wscc{word-spacing:-1.881000px;}
.ws4d{word-spacing:-1.824000px;}
.wsf0{word-spacing:-1.767000px;}
.ws104{word-spacing:-1.722000px;}
.ws101{word-spacing:-1.710000px;}
.ws6a{word-spacing:-1.683000px;}
.wsf1{word-spacing:-1.653000px;}
.wsd4{word-spacing:-1.638000px;}
.ws157{word-spacing:-1.632000px;}
.ws80{word-spacing:-1.596000px;}
.wse1{word-spacing:-1.539000px;}
.ws6b{word-spacing:-1.530000px;}
.ws15{word-spacing:-1.482000px;}
.ws158{word-spacing:-1.479000px;}
.ws2d{word-spacing:-1.425000px;}
.ws86{word-spacing:-1.368000px;}
.wse9{word-spacing:-1.326000px;}
.ws50{word-spacing:-1.311000px;}
.ws5e{word-spacing:-1.275000px;}
.wscb{word-spacing:-1.254000px;}
.ws12{word-spacing:-1.197000px;}
.ws5f{word-spacing:-1.173000px;}
.ws135{word-spacing:-1.140000px;}
.wsd6{word-spacing:-1.122000px;}
.ws2b{word-spacing:-1.083000px;}
.wsa9{word-spacing:-1.071000px;}
.wscf{word-spacing:-1.026000px;}
.ws3b{word-spacing:-0.969000px;}
.wsd2{word-spacing:-0.918000px;}
.ws2a{word-spacing:-0.912000px;}
.ws77{word-spacing:-0.855000px;}
.wsd3{word-spacing:-0.816000px;}
.ws37{word-spacing:-0.798000px;}
.ws100{word-spacing:-0.765000px;}
.ws95{word-spacing:-0.741000px;}
.ws10f{word-spacing:-0.720000px;}
.ws87{word-spacing:-0.684000px;}
.wsaa{word-spacing:-0.663000px;}
.ws29{word-spacing:-0.627000px;}
.ws6d{word-spacing:-0.612000px;}
.ws71{word-spacing:-0.600000px;}
.ws8a{word-spacing:-0.570000px;}
.ws6e{word-spacing:-0.561000px;}
.ws9c{word-spacing:-0.513000px;}
.wsea{word-spacing:-0.510000px;}
.ws10e{word-spacing:-0.480000px;}
.wsad{word-spacing:-0.459000px;}
.ws2f{word-spacing:-0.456000px;}
.wsae{word-spacing:-0.408000px;}
.ws73{word-spacing:-0.399000px;}
.wsb6{word-spacing:-0.357000px;}
.ws27{word-spacing:-0.342000px;}
.ws4c{word-spacing:-0.330000px;}
.wsa8{word-spacing:-0.306000px;}
.ws20{word-spacing:-0.285000px;}
.ws59{word-spacing:-0.255000px;}
.ws7{word-spacing:-0.240000px;}
.ws31{word-spacing:-0.228000px;}
.wsb1{word-spacing:-0.210000px;}
.ws8e{word-spacing:-0.171000px;}
.ws2e{word-spacing:-0.114000px;}
.ws13{word-spacing:-0.057000px;}
.ws60{word-spacing:-0.051000px;}
.ws2{word-spacing:0.000000px;}
.ws9a{word-spacing:0.057000px;}
.wsab{word-spacing:0.102000px;}
.ws90{word-spacing:0.114000px;}
.ws13a{word-spacing:0.153000px;}
.ws34{word-spacing:0.171000px;}
.ws18{word-spacing:0.228000px;}
.ws153{word-spacing:0.255000px;}
.ws7d{word-spacing:0.285000px;}
.ws13b{word-spacing:0.306000px;}
.ws1e{word-spacing:0.342000px;}
.ws4f{word-spacing:0.399000px;}
.ws7c{word-spacing:0.456000px;}
.wsa6{word-spacing:0.459000px;}
.wsa5{word-spacing:0.510000px;}
.wsef{word-spacing:0.513000px;}
.wsa0{word-spacing:0.561000px;}
.ws7e{word-spacing:0.570000px;}
.ws9f{word-spacing:0.612000px;}
.wsfc{word-spacing:0.627000px;}
.ws3{word-spacing:0.684000px;}
.ws123{word-spacing:0.714000px;}
.ws137{word-spacing:0.741000px;}
.ws124{word-spacing:0.765000px;}
.wsbb{word-spacing:0.798000px;}
.ws44{word-spacing:0.855000px;}
.wsac{word-spacing:0.867000px;}
.ws96{word-spacing:0.912000px;}
.wsce{word-spacing:0.969000px;}
.wsb8{word-spacing:1.026000px;}
.wsca{word-spacing:1.083000px;}
.wsd9{word-spacing:1.122000px;}
.ws7f{word-spacing:1.140000px;}
.ws1c{word-spacing:1.197000px;}
.wsd8{word-spacing:1.224000px;}
.ws82{word-spacing:1.254000px;}
.wsd5{word-spacing:1.275000px;}
.ws115{word-spacing:1.311000px;}
.ws64{word-spacing:1.326000px;}
.ws117{word-spacing:1.368000px;}
.ws9d{word-spacing:1.425000px;}
.wsd0{word-spacing:1.479000px;}
.wsdf{word-spacing:1.482000px;}
.ws68{word-spacing:1.530000px;}
.ws93{word-spacing:1.539000px;}
.wsc5{word-spacing:1.596000px;}
.wsf2{word-spacing:1.653000px;}
.ws69{word-spacing:1.683000px;}
.ws8d{word-spacing:1.710000px;}
.ws146{word-spacing:1.734000px;}
.ws24{word-spacing:1.767000px;}
.ws36{word-spacing:1.824000px;}
.wsf6{word-spacing:1.836000px;}
.ws1{word-spacing:1.872000px;}
.ws11a{word-spacing:1.881000px;}
.ws6c{word-spacing:1.887000px;}
.wsd7{word-spacing:1.938000px;}
.wsf7{word-spacing:1.989000px;}
.ws35{word-spacing:1.995000px;}
.ws111{word-spacing:2.016000px;}
.ws152{word-spacing:2.040000px;}
.ws30{word-spacing:2.052000px;}
.ws61{word-spacing:2.091000px;}
.ws48{word-spacing:2.109000px;}
.ws10b{word-spacing:2.142000px;}
.ws40{word-spacing:2.166000px;}
.wsb5{word-spacing:2.193000px;}
.wsba{word-spacing:2.223000px;}
.wsa7{word-spacing:2.244000px;}
.ws76{word-spacing:2.280000px;}
.wsd1{word-spacing:2.295000px;}
.ws1a{word-spacing:2.337000px;}
.wsee{word-spacing:2.346000px;}
.ws17{word-spacing:2.394000px;}
.ws3e{word-spacing:2.451000px;}
.ws14{word-spacing:2.508000px;}
.ws5d{word-spacing:2.550000px;}
.ws3a{word-spacing:2.565000px;}
.ws119{word-spacing:2.601000px;}
.wsc3{word-spacing:2.622000px;}
.wsdd{word-spacing:2.679000px;}
.ws28{word-spacing:2.736000px;}
.ws5c{word-spacing:2.754000px;}
.ws3d{word-spacing:2.793000px;}
.ws120{word-spacing:2.805000px;}
.ws22{word-spacing:2.850000px;}
.ws118{word-spacing:2.856000px;}
.ws74{word-spacing:2.907000px;}
.wse5{word-spacing:2.964000px;}
.ws8c{word-spacing:3.021000px;}
.ws8b{word-spacing:3.078000px;}
.wsda{word-spacing:3.111000px;}
.ws45{word-spacing:3.135000px;}
.wsbd{word-spacing:3.192000px;}
.ws5b{word-spacing:3.213000px;}
.ws41{word-spacing:3.249000px;}
.ws47{word-spacing:3.306000px;}
.ws81{word-spacing:3.363000px;}
.ws67{word-spacing:3.366000px;}
.ws33{word-spacing:3.420000px;}
.ws89{word-spacing:3.477000px;}
.wsdb{word-spacing:3.480000px;}
.ws5a{word-spacing:3.519000px;}
.wsb4{word-spacing:3.534000px;}
.ws6f{word-spacing:3.570000px;}
.ws1f{word-spacing:3.591000px;}
.ws91{word-spacing:3.648000px;}
.ws66{word-spacing:3.672000px;}
.wsb3{word-spacing:3.705000px;}
.wsc6{word-spacing:3.762000px;}
.ws92{word-spacing:3.819000px;}
.ws122{word-spacing:3.825000px;}
.wsc4{word-spacing:3.876000px;}
.ws4a{word-spacing:3.933000px;}
.wsfb{word-spacing:3.990000px;}
.ws110{word-spacing:4.047000px;}
.ws16{word-spacing:4.104000px;}
.ws105{word-spacing:4.161000px;}
.ws1b{word-spacing:4.218000px;}
.wsc2{word-spacing:4.275000px;}
.wsc1{word-spacing:4.332000px;}
.ws43{word-spacing:4.389000px;}
.ws19{word-spacing:4.446000px;}
.ws7b{word-spacing:4.503000px;}
.ws9e{word-spacing:4.539000px;}
.ws38{word-spacing:4.560000px;}
.ws49{word-spacing:4.617000px;}
.ws149{word-spacing:4.641000px;}
.ws42{word-spacing:4.674000px;}
.wsff{word-spacing:4.692000px;}
.ws3f{word-spacing:4.731000px;}
.ws88{word-spacing:4.788000px;}
.ws14e{word-spacing:4.794000px;}
.ws75{word-spacing:4.845000px;}
.wse7{word-spacing:4.902000px;}
.ws148{word-spacing:4.947000px;}
.wsb2{word-spacing:4.959000px;}
.wse2{word-spacing:5.016000px;}
.ws2c{word-spacing:5.073000px;}
.ws121{word-spacing:5.100000px;}
.ws13d{word-spacing:5.130000px;}
.ws154{word-spacing:5.151000px;}
.ws46{word-spacing:5.187000px;}
.wsb0{word-spacing:5.202000px;}
.ws8f{word-spacing:5.244000px;}
.ws128{word-spacing:5.358000px;}
.ws14f{word-spacing:5.406000px;}
.wsb7{word-spacing:5.415000px;}
.wsf8{word-spacing:5.472000px;}
.ws12f{word-spacing:5.529000px;}
.ws3c{word-spacing:5.586000px;}
.ws11b{word-spacing:5.643000px;}
.wsaf{word-spacing:5.661000px;}
.ws103{word-spacing:5.757000px;}
.ws99{word-spacing:5.985000px;}
.wsf3{word-spacing:6.099000px;}
.ws11c{word-spacing:6.156000px;}
.wse8{word-spacing:6.171000px;}
.ws14c{word-spacing:6.213000px;}
.ws25{word-spacing:6.327000px;}
.ws129{word-spacing:6.498000px;}
.wsf4{word-spacing:6.555000px;}
.ws9b{word-spacing:6.612000px;}
.ws12c{word-spacing:6.669000px;}
.wsf9{word-spacing:6.726000px;}
.ws4b{word-spacing:6.783000px;}
.ws131{word-spacing:6.897000px;}
.ws130{word-spacing:7.011000px;}
.wsbe{word-spacing:7.125000px;}
.ws156{word-spacing:7.140000px;}
.ws136{word-spacing:7.182000px;}
.ws147{word-spacing:7.242000px;}
.ws13e{word-spacing:7.410000px;}
.ws94{word-spacing:7.467000px;}
.wsa4{word-spacing:7.548000px;}
.ws138{word-spacing:7.638000px;}
.ws155{word-spacing:7.752000px;}
.ws116{word-spacing:7.809000px;}
.wsc7{word-spacing:7.923000px;}
.ws10c{word-spacing:8.211000px;}
.ws7a{word-spacing:9.063000px;}
.wsde{word-spacing:9.177000px;}
.ws84{word-spacing:10.146000px;}
.ws13f{word-spacing:10.260000px;}
.ws72{word-spacing:10.602000px;}
.ws79{word-spacing:11.001000px;}
.wsc0{word-spacing:12.312000px;}
.ws78{word-spacing:12.996000px;}
.ws83{word-spacing:16.245000px;}
.wsbc{word-spacing:17.214000px;}
.wse0{word-spacing:17.727000px;}
.ws85{word-spacing:17.898000px;}
.ws6{word-spacing:45.456000px;}
.ws9{word-spacing:58.848000px;}
.wse6{word-spacing:69.369000px;}
.wse{word-spacing:544.368000px;}
.wsc{word-spacing:702.000000px;}
.wsa{word-spacing:703.056000px;}
.wsf{word-spacing:908.880000px;}
.wsd{word-spacing:1079.616000px;}
.ws8{word-spacing:1237.056000px;}
.wsb{word-spacing:1240.704000px;}
._33{margin-left:-76.266000px;}
._32{margin-left:-70.167000px;}
._34{margin-left:-68.514000px;}
._35{margin-left:-61.389000px;}
._3a{margin-left:-26.190300px;}
._37{margin-left:-24.792000px;}
._29{margin-left:-23.634900px;}
._2b{margin-left:-21.769800px;}
._23{margin-left:-20.045400px;}
._2e{margin-left:-18.996600px;}
._30{margin-left:-17.214000px;}
._36{margin-left:-15.447000px;}
._2d{margin-left:-14.022000px;}
._4{margin-left:-13.008000px;}
._39{margin-left:-10.488000px;}
._20{margin-left:-8.142600px;}
._b{margin-left:-6.772800px;}
._a{margin-left:-4.824000px;}
._1a{margin-left:-3.735900px;}
._1{margin-left:-2.280000px;}
._5{margin-left:-1.118400px;}
._0{width:1.362300px;}
._18{width:3.213300px;}
._16{width:5.102400px;}
._19{width:6.311100px;}
._2a{width:7.467000px;}
._22{width:8.601300px;}
._14{width:9.806400px;}
._1c{width:11.799000px;}
._1d{width:13.509000px;}
._1f{width:14.535000px;}
._26{width:16.530000px;}
._1b{width:17.898000px;}
._1e{width:18.924000px;}
._24{width:20.577000px;}
._21{width:22.743000px;}
._27{width:25.308000px;}
._25{width:26.391000px;}
._28{width:28.386000px;}
._38{width:49.056000px;}
._2c{width:51.786000px;}
._2f{width:53.214000px;}
._15{width:62.222400px;}
._31{width:67.659000px;}
._2{width:99.513600px;}
._6{width:315.278400px;}
._d{width:569.981700px;}
._c{width:701.347200px;}
._e{width:894.480000px;}
._9{width:906.096000px;}
._11{width:1084.248000px;}
._12{width:1199.256000px;}
._10{width:1247.640000px;}
._7{width:1257.731400px;}
._17{width:1342.704000px;}
._8{width:1386.240000px;}
._3{width:1424.726400px;}
._13{width:1436.496000px;}
._f{width:1444.848000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.580000px;}
.fs9{font-size:33.060000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:120.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:29.763750px;}
.y140{bottom:72.279000px;}
.y11e{bottom:72.283500px;}
.ycb{bottom:72.615750px;}
.y51{bottom:72.615900px;}
.yef{bottom:72.638850px;}
.y76{bottom:72.639000px;}
.y231{bottom:72.645000px;}
.y15f{bottom:72.651750px;}
.y2e2{bottom:72.657750px;}
.y27e{bottom:72.663750px;}
.y19d{bottom:72.669000px;}
.y29a{bottom:72.675000px;}
.y125{bottom:72.687750px;}
.y1c9{bottom:72.690000px;}
.y2ff{bottom:72.693000px;}
.y2f3{bottom:72.705000px;}
.y23b{bottom:72.714000px;}
.y17e{bottom:72.721500px;}
.y2a3{bottom:72.729000px;}
.y1b2{bottom:72.735000px;}
.y1ed{bottom:72.744000px;}
.y2e{bottom:72.780750px;}
.y25d{bottom:73.365750px;}
.y1{bottom:79.189350px;}
.y13f{bottom:87.283500px;}
.yca{bottom:91.368750px;}
.y50{bottom:91.368900px;}
.yae{bottom:91.380600px;}
.yee{bottom:91.391850px;}
.y75{bottom:91.392000px;}
.y230{bottom:91.398000px;}
.y15e{bottom:91.404750px;}
.y2e1{bottom:91.410750px;}
.y27d{bottom:91.416750px;}
.y19c{bottom:91.422000px;}
.y299{bottom:91.428000px;}
.y124{bottom:91.440750px;}
.y1c8{bottom:91.443000px;}
.y2fe{bottom:91.448250px;}
.y1da{bottom:91.449000px;}
.y2f2{bottom:91.458000px;}
.y223{bottom:91.463250px;}
.y23a{bottom:91.467000px;}
.y268{bottom:91.470000px;}
.y17d{bottom:91.476750px;}
.y2a2{bottom:91.482000px;}
.y107{bottom:91.485000px;}
.y1b1{bottom:91.490250px;}
.y1ec{bottom:91.497000px;}
.y25c{bottom:92.118750px;}
.yc9{bottom:110.121750px;}
.y4f{bottom:110.121900px;}
.yad{bottom:110.135850px;}
.yed{bottom:110.144850px;}
.y74{bottom:110.145000px;}
.y22f{bottom:110.151000px;}
.y15d{bottom:110.157750px;}
.y2e0{bottom:110.163750px;}
.y27c{bottom:110.169750px;}
.y19b{bottom:110.175000px;}
.y298{bottom:110.181000px;}
.y123{bottom:110.193750px;}
.y1c7{bottom:110.196000px;}
.y1d9{bottom:110.202000px;}
.y2fd{bottom:110.203500px;}
.y2f1{bottom:110.211000px;}
.y222{bottom:110.218500px;}
.y239{bottom:110.220000px;}
.y267{bottom:110.223000px;}
.y17c{bottom:110.232000px;}
.y2a1{bottom:110.235000px;}
.y106{bottom:110.240250px;}
.y1b0{bottom:110.245500px;}
.y1eb{bottom:110.250000px;}
.y2d{bottom:110.280750px;}
.y25b{bottom:110.871750px;}
.yc8{bottom:128.874750px;}
.y4e{bottom:128.874900px;}
.yac{bottom:128.891100px;}
.yec{bottom:128.897850px;}
.y73{bottom:128.898000px;}
.y22e{bottom:128.904000px;}
.y15c{bottom:128.910750px;}
.y2df{bottom:128.916750px;}
.y27b{bottom:128.922750px;}
.y19a{bottom:128.928000px;}
.y214{bottom:128.928750px;}
.y297{bottom:128.934000px;}
.y122{bottom:128.946750px;}
.y1c6{bottom:128.949000px;}
.y1d8{bottom:128.955000px;}
.y2fc{bottom:128.958750px;}
.y2f0{bottom:128.964000px;}
.y13e{bottom:128.966250px;}
.y2bc{bottom:128.967000px;}
.y238{bottom:128.973000px;}
.y221{bottom:128.973750px;}
.y266{bottom:128.976000px;}
.y17b{bottom:128.987250px;}
.y2a0{bottom:128.988000px;}
.y1e9{bottom:128.991000px;}
.y105{bottom:128.995500px;}
.y1af{bottom:129.000750px;}
.y1ea{bottom:129.003000px;}
.y2c{bottom:129.024750px;}
.y25a{bottom:129.624750px;}
.yc7{bottom:147.627750px;}
.y4d{bottom:147.627900px;}
.y2d5{bottom:147.633750px;}
.y72{bottom:147.651000px;}
.y22d{bottom:147.657000px;}
.y15b{bottom:147.663750px;}
.y2de{bottom:147.669750px;}
.y27a{bottom:147.675750px;}
.y199{bottom:147.681000px;}
.y213{bottom:147.681750px;}
.y296{bottom:147.687000px;}
.y1c5{bottom:147.702000px;}
.y2fb{bottom:147.714000px;}
.y2ef{bottom:147.717000px;}
.y2bb{bottom:147.720000px;}
.y13d{bottom:147.721500px;}
.y237{bottom:147.726000px;}
.y265{bottom:147.729000px;}
.y29f{bottom:147.741000px;}
.y17a{bottom:147.742500px;}
.y1e8{bottom:147.744000px;}
.y1f7{bottom:147.747000px;}
.y104{bottom:147.750750px;}
.y1ae{bottom:147.756000px;}
.y2b{bottom:147.768750px;}
.y259{bottom:148.377750px;}
.y318{bottom:165.640500px;}
.yc6{bottom:166.380750px;}
.y4c{bottom:166.380900px;}
.yab{bottom:166.388850px;}
.y2d4{bottom:166.389000px;}
.yeb{bottom:166.403850px;}
.y71{bottom:166.404000px;}
.y22c{bottom:166.410000px;}
.y15a{bottom:166.416750px;}
.y2dd{bottom:166.422750px;}
.y279{bottom:166.428750px;}
.y198{bottom:166.434000px;}
.y212{bottom:166.434750px;}
.y121{bottom:166.436250px;}
.y295{bottom:166.440000px;}
.y1c4{bottom:166.455000px;}
.y1d7{bottom:166.461000px;}
.y2fa{bottom:166.469250px;}
.y2ee{bottom:166.470000px;}
.y220{bottom:166.471500px;}
.y13c{bottom:166.476750px;}
.y264{bottom:166.482000px;}
.y29e{bottom:166.494000px;}
.y1e7{bottom:166.497000px;}
.y179{bottom:166.497750px;}
.y1f6{bottom:166.500000px;}
.y103{bottom:166.506000px;}
.y2a{bottom:166.512750px;}
.y258{bottom:167.130750px;}
.y317{bottom:184.395750px;}
.yc5{bottom:185.133750px;}
.y4b{bottom:185.133900px;}
.yaa{bottom:185.144100px;}
.yea{bottom:185.156850px;}
.y70{bottom:185.157000px;}
.y22b{bottom:185.163000px;}
.y159{bottom:185.169750px;}
.y2dc{bottom:185.175750px;}
.y278{bottom:185.181750px;}
.y197{bottom:185.187000px;}
.y211{bottom:185.187750px;}
.y120{bottom:185.191500px;}
.y294{bottom:185.193000px;}
.y1c3{bottom:185.208000px;}
.y1d6{bottom:185.214000px;}
.y2ed{bottom:185.223000px;}
.y2f9{bottom:185.224500px;}
.y2ba{bottom:185.226000px;}
.y21f{bottom:185.226750px;}
.y13b{bottom:185.232000px;}
.y263{bottom:185.235000px;}
.y29d{bottom:185.247000px;}
.y1e6{bottom:185.250000px;}
.y1f5{bottom:185.253000px;}
.y1ad{bottom:185.256000px;}
.y29{bottom:185.256750px;}
.y257{bottom:185.883750px;}
.y8e{bottom:192.725250px;}
.y316{bottom:203.151000px;}
.yc4{bottom:203.886750px;}
.y4a{bottom:203.886900px;}
.ya9{bottom:203.899350px;}
.ye9{bottom:203.909850px;}
.y6f{bottom:203.910000px;}
.y22a{bottom:203.916000px;}
.y158{bottom:203.922750px;}
.y2db{bottom:203.928750px;}
.y277{bottom:203.934750px;}
.y196{bottom:203.940000px;}
.y210{bottom:203.940750px;}
.y293{bottom:203.946000px;}
.y11f{bottom:203.946750px;}
.y1c2{bottom:203.961000px;}
.y1d5{bottom:203.967000px;}
.y2ec{bottom:203.976000px;}
.y2b9{bottom:203.979000px;}
.y2f8{bottom:203.979750px;}
.y21e{bottom:203.982000px;}
.y236{bottom:203.985000px;}
.y13a{bottom:203.987250px;}
.y178{bottom:203.995500px;}
.y29c{bottom:204.000000px;}
.y1e5{bottom:204.003000px;}
.y102{bottom:204.006000px;}
.y256{bottom:204.636750px;}
.y8d{bottom:211.478250px;}
.y315{bottom:221.906250px;}
.yc3{bottom:222.639750px;}
.y2d3{bottom:222.642000px;}
.ye8{bottom:222.662850px;}
.y6e{bottom:222.663000px;}
.y229{bottom:222.669000px;}
.y157{bottom:222.675750px;}
.y2da{bottom:222.681750px;}
.y276{bottom:222.687750px;}
.y195{bottom:222.693000px;}
.y20f{bottom:222.693750px;}
.y292{bottom:222.699000px;}
.y1e4{bottom:222.708000px;}
.y1c1{bottom:222.714000px;}
.y1d4{bottom:222.720000px;}
.y2eb{bottom:222.729000px;}
.y2f7{bottom:222.735000px;}
.y262{bottom:222.741000px;}
.y139{bottom:222.742500px;}
.y177{bottom:222.750750px;}
.y29b{bottom:222.753000px;}
.y28{bottom:222.756750px;}
.y255{bottom:223.389750px;}
.y314{bottom:240.661500px;}
.yc2{bottom:241.392750px;}
.y49{bottom:241.392900px;}
.ya8{bottom:241.397100px;}
.y2d2{bottom:241.397250px;}
.ye7{bottom:241.415850px;}
.y6d{bottom:241.416000px;}
.y228{bottom:241.422000px;}
.y156{bottom:241.428750px;}
.y2d9{bottom:241.434750px;}
.y20e{bottom:241.437750px;}
.y275{bottom:241.440750px;}
.y194{bottom:241.446000px;}
.y291{bottom:241.452000px;}
.y1ac{bottom:241.461000px;}
.y1c0{bottom:241.467000px;}
.y1d3{bottom:241.473000px;}
.y21d{bottom:241.479750px;}
.y2ea{bottom:241.482000px;}
.y2b8{bottom:241.485000px;}
.y2f6{bottom:241.490250px;}
.y235{bottom:241.491000px;}
.y261{bottom:241.494000px;}
.y27{bottom:241.500750px;}
.y176{bottom:241.506000px;}
.y254{bottom:242.142750px;}
.y8c{bottom:251.221500px;}
.y313{bottom:259.416750px;}
.yc1{bottom:260.145750px;}
.y48{bottom:260.145900px;}
.ya7{bottom:260.152350px;}
.y2d1{bottom:260.152500px;}
.ye6{bottom:260.168850px;}
.y6c{bottom:260.169000px;}
.y227{bottom:260.175000px;}
.y155{bottom:260.181750px;}
.y2d8{bottom:260.187750px;}
.y20d{bottom:260.190750px;}
.y101{bottom:260.193000px;}
.y274{bottom:260.193750px;}
.y193{bottom:260.199000px;}
.y290{bottom:260.205000px;}
.y1ab{bottom:260.214000px;}
.y1bf{bottom:260.220000px;}
.y1d2{bottom:260.226000px;}
.y21c{bottom:260.235000px;}
.y2b7{bottom:260.238000px;}
.y138{bottom:260.240250px;}
.y234{bottom:260.244000px;}
.y2f5{bottom:260.245500px;}
.y260{bottom:260.247000px;}
.y253{bottom:260.895750px;}
.y8b{bottom:269.974500px;}
.y312{bottom:278.172000px;}
.yc0{bottom:278.898750px;}
.y47{bottom:278.898900px;}
.ya6{bottom:278.907600px;}
.y2d0{bottom:278.907750px;}
.ye5{bottom:278.921850px;}
.y6b{bottom:278.922000px;}
.y2b1{bottom:278.922750px;}
.y226{bottom:278.928000px;}
.y154{bottom:278.934750px;}
.y2d7{bottom:278.940750px;}
.y20c{bottom:278.943750px;}
.y100{bottom:278.946000px;}
.y273{bottom:278.946750px;}
.y192{bottom:278.952000px;}
.y28f{bottom:278.958000px;}
.y1aa{bottom:278.967000px;}
.y1be{bottom:278.973000px;}
.y2e9{bottom:278.988000px;}
.y21b{bottom:278.990250px;}
.y137{bottom:278.995500px;}
.y25f{bottom:279.000000px;}
.y26{bottom:279.000750px;}
.y175{bottom:279.006000px;}
.y252{bottom:279.648750px;}
.y8a{bottom:288.727500px;}
.y311{bottom:296.927250px;}
.ybf{bottom:297.651750px;}
.y46{bottom:297.651900px;}
.y2cf{bottom:297.663000px;}
.ye4{bottom:297.674850px;}
.y6a{bottom:297.675000px;}
.y2b0{bottom:297.678000px;}
.y225{bottom:297.681000px;}
.y153{bottom:297.687750px;}
.y2d6{bottom:297.693750px;}
.y20b{bottom:297.696750px;}
.yff{bottom:297.699000px;}
.y191{bottom:297.705000px;}
.y28e{bottom:297.711000px;}
.y1e3{bottom:297.720000px;}
.y1bd{bottom:297.726000px;}
.y1f4{bottom:297.726750px;}
.y1d1{bottom:297.732000px;}
.y2e8{bottom:297.741000px;}
.y2b6{bottom:297.744000px;}
.y25{bottom:297.744750px;}
.y21a{bottom:297.745500px;}
.y233{bottom:297.750000px;}
.y136{bottom:297.750750px;}
.y25e{bottom:297.753000px;}
.y2f4{bottom:297.756000px;}
.y251{bottom:298.401750px;}
.y89{bottom:307.480500px;}
.y310{bottom:315.682500px;}
.ybe{bottom:316.404750px;}
.y45{bottom:316.404900px;}
.ya5{bottom:316.405350px;}
.y2ce{bottom:316.418250px;}
.ye3{bottom:316.427850px;}
.y69{bottom:316.428000px;}
.y224{bottom:316.434000px;}
.y152{bottom:316.440750px;}
.y272{bottom:316.446750px;}
.y190{bottom:316.458000px;}
.y209{bottom:316.460850px;}
.y28d{bottom:316.464000px;}
.y1a9{bottom:316.473000px;}
.y1bc{bottom:316.479000px;}
.y1f3{bottom:316.482000px;}
.y1d0{bottom:316.485000px;}
.y11d{bottom:316.487250px;}
.y24{bottom:316.488750px;}
.y2e7{bottom:316.494000px;}
.y2b5{bottom:316.497000px;}
.y219{bottom:316.500750px;}
.y232{bottom:316.503000px;}
.y135{bottom:316.506000px;}
.y250{bottom:317.154750px;}
.y88{bottom:326.233500px;}
.y30f{bottom:334.437750px;}
.ybd{bottom:335.157750px;}
.y44{bottom:335.157900px;}
.ya4{bottom:335.160600px;}
.y2cd{bottom:335.173500px;}
.y2af{bottom:335.175750px;}
.ye2{bottom:335.180850px;}
.y68{bottom:335.181000px;}
.y174{bottom:335.187000px;}
.y151{bottom:335.193750px;}
.y20a{bottom:335.196750px;}
.yfe{bottom:335.205000px;}
.y18f{bottom:335.211000px;}
.y208{bottom:335.216100px;}
.y28c{bottom:335.217000px;}
.y1a8{bottom:335.226000px;}
.y1bb{bottom:335.232000px;}
.y11c{bottom:335.242500px;}
.y2e6{bottom:335.247000px;}
.y2b4{bottom:335.250000px;}
.y218{bottom:335.256000px;}
.y24f{bottom:335.907750px;}
.y87{bottom:344.986500px;}
.y30e{bottom:353.193000px;}
.ybc{bottom:353.910750px;}
.y43{bottom:353.910900px;}
.y2ae{bottom:353.931000px;}
.ye1{bottom:353.933850px;}
.y67{bottom:353.934000px;}
.y173{bottom:353.940000px;}
.y150{bottom:353.946750px;}
.yfd{bottom:353.958000px;}
.y18e{bottom:353.964000px;}
.y28b{bottom:353.970000px;}
.y207{bottom:353.971350px;}
.y1a7{bottom:353.979000px;}
.y1f2{bottom:353.979750px;}
.y1ba{bottom:353.985000px;}
.y23{bottom:353.988750px;}
.y1cf{bottom:353.991000px;}
.y11b{bottom:353.997750px;}
.y2e5{bottom:354.000000px;}
.y2b3{bottom:354.003000px;}
.y134{bottom:354.006000px;}
.y24e{bottom:354.660750px;}
.y30d{bottom:371.948250px;}
.ya3{bottom:372.658350px;}
.ybb{bottom:372.663750px;}
.y42{bottom:372.663900px;}
.y2cc{bottom:372.671250px;}
.y14e{bottom:372.686250px;}
.ye0{bottom:372.686850px;}
.y78{bottom:372.687000px;}
.y172{bottom:372.693000px;}
.y18d{bottom:372.717000px;}
.y28a{bottom:372.723000px;}
.y206{bottom:372.726600px;}
.y1a6{bottom:372.732000px;}
.y22{bottom:372.732750px;}
.y1f1{bottom:372.735000px;}
.y1b9{bottom:372.738000px;}
.y1ce{bottom:372.744000px;}
.y2e4{bottom:372.753000px;}
.y217{bottom:372.756000px;}
.y24d{bottom:373.413750px;}
.y86{bottom:384.729750px;}
.y30c{bottom:390.703500px;}
.ya2{bottom:391.413600px;}
.yba{bottom:391.416750px;}
.y41{bottom:391.416900px;}
.y2cb{bottom:391.426500px;}
.y2ad{bottom:391.428750px;}
.ydf{bottom:391.439850px;}
.y66{bottom:391.440000px;}
.y14d{bottom:391.441500px;}
.y171{bottom:391.446000px;}
.y14f{bottom:391.446750px;}
.yfc{bottom:391.464000px;}
.y18c{bottom:391.470000px;}
.y289{bottom:391.476000px;}
.y21{bottom:391.476750px;}
.y205{bottom:391.481850px;}
.y1a5{bottom:391.485000px;}
.y1f0{bottom:391.490250px;}
.y1b8{bottom:391.491000px;}
.y11a{bottom:391.495500px;}
.y1cd{bottom:391.497000px;}
.y2e3{bottom:391.506000px;}
.y24c{bottom:392.166750px;}
.y85{bottom:403.482750px;}
.y30b{bottom:409.458750px;}
.ya1{bottom:410.168850px;}
.yb9{bottom:410.169750px;}
.y40{bottom:410.169900px;}
.y2ca{bottom:410.181750px;}
.y2ac{bottom:410.184000px;}
.yde{bottom:410.192850px;}
.y65{bottom:410.193000px;}
.y14c{bottom:410.196750px;}
.y170{bottom:410.199000px;}
.y133{bottom:410.211000px;}
.yfb{bottom:410.217000px;}
.y20{bottom:410.220750px;}
.y18b{bottom:410.223000px;}
.y288{bottom:410.229000px;}
.y204{bottom:410.237100px;}
.y1a4{bottom:410.238000px;}
.y1b7{bottom:410.244000px;}
.y1ef{bottom:410.245500px;}
.y1cc{bottom:410.250000px;}
.y119{bottom:410.250750px;}
.y2b2{bottom:410.256000px;}
.y24b{bottom:410.919750px;}
.y84{bottom:422.235750px;}
.y30a{bottom:428.214000px;}
.yb8{bottom:428.922750px;}
.y3f{bottom:428.922900px;}
.ya0{bottom:428.924100px;}
.y2c9{bottom:428.937000px;}
.y2ab{bottom:428.939250px;}
.ydd{bottom:428.945850px;}
.y64{bottom:428.946000px;}
.y14b{bottom:428.952000px;}
.y13{bottom:428.963850px;}
.y132{bottom:428.964000px;}
.y1f{bottom:428.964750px;}
.y18a{bottom:428.976000px;}
.y287{bottom:428.982000px;}
.y1e2{bottom:428.991000px;}
.y203{bottom:428.992350px;}
.y1b6{bottom:428.997000px;}
.y1ee{bottom:429.000750px;}
.y1cb{bottom:429.003000px;}
.y118{bottom:429.006000px;}
.y24a{bottom:429.672750px;}
.y83{bottom:440.988750px;}
.y309{bottom:446.969250px;}
.yb7{bottom:447.675750px;}
.y3e{bottom:447.675900px;}
.y9f{bottom:447.679350px;}
.y2c8{bottom:447.692250px;}
.y2aa{bottom:447.694500px;}
.ydc{bottom:447.698850px;}
.y77{bottom:447.699000px;}
.y16f{bottom:447.705000px;}
.y14a{bottom:447.707250px;}
.y1e{bottom:447.708750px;}
.y12{bottom:447.716850px;}
.y131{bottom:447.717000px;}
.yfa{bottom:447.723000px;}
.y189{bottom:447.729000px;}
.y286{bottom:447.735000px;}
.y1a3{bottom:447.744000px;}
.y1b5{bottom:447.750000px;}
.y1ca{bottom:447.756000px;}
.y249{bottom:448.425750px;}
.y82{bottom:459.741750px;}
.y308{bottom:465.724500px;}
.yb6{bottom:466.428750px;}
.y3d{bottom:466.428900px;}
.y117{bottom:466.437000px;}
.y2c7{bottom:466.447500px;}
.ydb{bottom:466.451850px;}
.y63{bottom:466.452000px;}
.y216{bottom:466.458000px;}
.y11{bottom:466.469850px;}
.y188{bottom:466.482000px;}
.y285{bottom:466.488000px;}
.y202{bottom:466.490100px;}
.y1a2{bottom:466.497000px;}
.y1b4{bottom:466.503000px;}
.y248{bottom:467.178750px;}
.y81{bottom:478.494750px;}
.y307{bottom:484.479750px;}
.y9e{bottom:485.177100px;}
.yb5{bottom:485.181750px;}
.y3c{bottom:485.181900px;}
.y116{bottom:485.192250px;}
.yda{bottom:485.204850px;}
.y62{bottom:485.205000px;}
.y1d{bottom:485.208750px;}
.y16e{bottom:485.211000px;}
.y10{bottom:485.222850px;}
.y130{bottom:485.223000px;}
.yf9{bottom:485.229000px;}
.y187{bottom:485.235000px;}
.y284{bottom:485.241000px;}
.y201{bottom:485.245350px;}
.y1a1{bottom:485.250000px;}
.y1b3{bottom:485.256000px;}
.y247{bottom:485.931750px;}
.y80{bottom:497.247750px;}
.y306{bottom:503.235000px;}
.y9d{bottom:503.932350px;}
.yb4{bottom:503.934750px;}
.y3b{bottom:503.934900px;}
.y2c6{bottom:503.945250px;}
.y115{bottom:503.947500px;}
.yd9{bottom:503.957850px;}
.y61{bottom:503.958000px;}
.y149{bottom:503.960250px;}
.y16d{bottom:503.964000px;}
.yf{bottom:503.975850px;}
.y12f{bottom:503.976000px;}
.yf8{bottom:503.982000px;}
.y271{bottom:503.984250px;}
.y186{bottom:503.988000px;}
.y283{bottom:503.994000px;}
.y200{bottom:504.000600px;}
.y1a0{bottom:504.003000px;}
.y246{bottom:504.684750px;}
.y305{bottom:521.990250px;}
.y9c{bottom:522.687600px;}
.yb3{bottom:522.687750px;}
.y3a{bottom:522.687900px;}
.y2c5{bottom:522.700500px;}
.y2a9{bottom:522.702750px;}
.y1c{bottom:522.708750px;}
.yd8{bottom:522.710850px;}
.y60{bottom:522.711000px;}
.y148{bottom:522.715500px;}
.y16c{bottom:522.717000px;}
.y12e{bottom:522.729000px;}
.yf7{bottom:522.735000px;}
.y270{bottom:522.739500px;}
.y185{bottom:522.741000px;}
.y282{bottom:522.747000px;}
.y1ff{bottom:522.755850px;}
.y19f{bottom:522.756000px;}
.y245{bottom:523.437750px;}
.y7f{bottom:536.991000px;}
.y304{bottom:540.745500px;}
.yb2{bottom:541.440750px;}
.y39{bottom:541.440900px;}
.y9b{bottom:541.442850px;}
.y114{bottom:541.445250px;}
.y2c4{bottom:541.455750px;}
.y2a8{bottom:541.458000px;}
.yd7{bottom:541.463850px;}
.y5f{bottom:541.464000px;}
.y16b{bottom:541.470000px;}
.y147{bottom:541.470750px;}
.ye{bottom:541.481850px;}
.y184{bottom:541.494000px;}
.y26f{bottom:541.494750px;}
.y281{bottom:541.500000px;}
.y244{bottom:542.190750px;}
.y7e{bottom:555.744000px;}
.y303{bottom:559.500750px;}
.yb1{bottom:560.193750px;}
.y38{bottom:560.193900px;}
.y9a{bottom:560.198100px;}
.y113{bottom:560.200500px;}
.y1b{bottom:560.208750px;}
.yd6{bottom:560.216850px;}
.y5e{bottom:560.217000px;}
.y16a{bottom:560.223000px;}
.y23f{bottom:560.223750px;}
.y146{bottom:560.226000px;}
.y12d{bottom:560.235000px;}
.yf6{bottom:560.241000px;}
.y183{bottom:560.247000px;}
.y280{bottom:560.253000px;}
.y1fe{bottom:560.255850px;}
.y19e{bottom:560.256000px;}
.y243{bottom:560.943750px;}
.y7d{bottom:574.497000px;}
.y302{bottom:578.256000px;}
.yb0{bottom:578.946750px;}
.y37{bottom:578.946900px;}
.y1a{bottom:578.952750px;}
.y99{bottom:578.953350px;}
.y2c3{bottom:578.953500px;}
.y112{bottom:578.955750px;}
.yd5{bottom:578.969850px;}
.y5d{bottom:578.970000px;}
.y169{bottom:578.976000px;}
.y23e{bottom:578.979000px;}
.y145{bottom:578.981250px;}
.yd{bottom:578.987850px;}
.y12c{bottom:578.988000px;}
.y26e{bottom:578.992500px;}
.yf5{bottom:578.994000px;}
.y182{bottom:579.000000px;}
.y27f{bottom:579.006000px;}
.y242{bottom:579.696750px;}
.y7c{bottom:593.250000px;}
.y19{bottom:597.696750px;}
.y98{bottom:597.708600px;}
.y2c2{bottom:597.708750px;}
.y111{bottom:597.711000px;}
.yd4{bottom:597.722850px;}
.y5c{bottom:597.723000px;}
.y168{bottom:597.729000px;}
.y23d{bottom:597.734250px;}
.yc{bottom:597.740850px;}
.y12b{bottom:597.741000px;}
.yf4{bottom:597.747000px;}
.y26d{bottom:597.747750px;}
.y181{bottom:597.753000px;}
.y4{bottom:599.925300px;}
.y17{bottom:605.007600px;}
.y7b{bottom:612.003000px;}
.y97{bottom:616.463850px;}
.y2c1{bottom:616.464000px;}
.y110{bottom:616.466250px;}
.yd3{bottom:616.475850px;}
.y5b{bottom:616.476000px;}
.y1e1{bottom:616.476750px;}
.y144{bottom:616.479000px;}
.y167{bottom:616.482000px;}
.y23c{bottom:616.489500px;}
.y12a{bottom:616.494000px;}
.yf3{bottom:616.500000px;}
.y1fd{bottom:616.502850px;}
.y180{bottom:616.506000px;}
.y16{bottom:623.760600px;}
.y7a{bottom:630.756000px;}
.y2a7{bottom:635.208750px;}
.y96{bottom:635.219100px;}
.y2c0{bottom:635.219250px;}
.y10f{bottom:635.221500px;}
.yd2{bottom:635.228850px;}
.y5a{bottom:635.229000px;}
.y1e0{bottom:635.232000px;}
.y143{bottom:635.234250px;}
.y166{bottom:635.235000px;}
.y26c{bottom:635.245500px;}
.yb{bottom:635.246850px;}
.y129{bottom:635.247000px;}
.yf2{bottom:635.253000px;}
.y1fc{bottom:635.255850px;}
.y3{bottom:647.934300px;}
.y2a6{bottom:653.964000px;}
.y95{bottom:653.974350px;}
.y2bf{bottom:653.974500px;}
.y10e{bottom:653.976750px;}
.yd1{bottom:653.981850px;}
.y59{bottom:653.982000px;}
.y1df{bottom:653.987250px;}
.y165{bottom:653.988000px;}
.ya{bottom:653.999850px;}
.y128{bottom:654.000000px;}
.y26b{bottom:654.000750px;}
.yf1{bottom:654.006000px;}
.y15{bottom:661.266600px;}
.y79{bottom:668.256000px;}
.y2a5{bottom:672.719250px;}
.y94{bottom:672.729600px;}
.y2be{bottom:672.729750px;}
.y10d{bottom:672.732000px;}
.yd0{bottom:672.734850px;}
.y58{bottom:672.735000px;}
.y164{bottom:672.741000px;}
.y1de{bottom:672.742500px;}
.y9{bottom:672.752850px;}
.y127{bottom:672.753000px;}
.y1fb{bottom:672.755850px;}
.y26a{bottom:672.756000px;}
.y241{bottom:674.196750px;}
.y14{bottom:680.019600px;}
.y2a4{bottom:691.474500px;}
.y93{bottom:691.484850px;}
.y2bd{bottom:691.485000px;}
.y142{bottom:691.487250px;}
.ycf{bottom:691.487850px;}
.y57{bottom:691.488000px;}
.y215{bottom:691.494000px;}
.y8{bottom:691.505850px;}
.yf0{bottom:691.506000px;}
.y10c{bottom:710.229750px;}
.y92{bottom:710.240100px;}
.y1dd{bottom:710.240250px;}
.yce{bottom:710.240850px;}
.y56{bottom:710.241000px;}
.y141{bottom:710.242500px;}
.y163{bottom:710.247000px;}
.y269{bottom:710.256000px;}
.y240{bottom:713.196750px;}
.y36{bottom:713.196900px;}
.y10b{bottom:728.985000px;}
.ycd{bottom:728.993850px;}
.y55{bottom:728.994000px;}
.y91{bottom:728.995350px;}
.y1dc{bottom:728.995500px;}
.y1fa{bottom:728.996850px;}
.y17f{bottom:728.997750px;}
.y162{bottom:729.000000px;}
.y126{bottom:729.006000px;}
.y32{bottom:729.018000px;}
.y2{bottom:734.934300px;}
.y301{bottom:744.756000px;}
.y10a{bottom:747.740250px;}
.y7{bottom:747.746850px;}
.y54{bottom:747.747000px;}
.y1f9{bottom:747.749850px;}
.y90{bottom:747.750600px;}
.y1db{bottom:747.750750px;}
.y161{bottom:747.753000px;}
.yaf{bottom:752.196750px;}
.y35{bottom:752.196900px;}
.y109{bottom:766.495500px;}
.ycc{bottom:766.499850px;}
.y53{bottom:766.500000px;}
.y1f8{bottom:766.502850px;}
.y8f{bottom:766.505850px;}
.y160{bottom:766.506000px;}
.y31{bottom:766.518000px;}
.y300{bottom:783.756000px;}
.y108{bottom:785.250750px;}
.y6{bottom:785.252850px;}
.y52{bottom:785.253000px;}
.y30{bottom:785.262000px;}
.y18{bottom:791.196750px;}
.y34{bottom:791.196900px;}
.y5{bottom:804.005850px;}
.y2f{bottom:804.006000px;}
.ha{height:37.584000px;}
.h10{height:39.396000px;}
.hb{height:41.706000px;}
.he{height:44.631000px;}
.h9{height:45.024000px;}
.hf{height:47.838000px;}
.h12{height:53.238000px;}
.hc{height:53.466000px;}
.h11{height:53.478000px;}
.h14{height:53.502000px;}
.h13{height:53.658000px;}
.h7{height:54.663000px;}
.h6{height:56.601000px;}
.h2{height:59.580000px;}
.h5{height:59.736000px;}
.hd{height:69.168000px;}
.h8{height:125.760000px;}
.h3{height:154.908000px;}
.h4{height:163.488000px;}
.h1{height:871.500000px;}
.h0{height:871.653000px;}
.w1{width:612.000000px;}
.w0{width:612.283500px;}
.x0{left:0.000000px;}
.x3{left:72.283500px;}
.x4{left:85.831500px;}
.x7{left:90.737250px;}
.x1{left:93.543600px;}
.x2{left:114.803550px;}
.x6{left:300.093750px;}
.x5{left:303.112500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.205333pt;}
.v2{vertical-align:16.730667pt;}
.ls3d{letter-spacing:-3.626667pt;}
.ls58{letter-spacing:-1.216000pt;}
.ls5c{letter-spacing:-0.853333pt;}
.ls4d{letter-spacing:-0.725333pt;}
.ls5e{letter-spacing:-0.709333pt;}
.ls4e{letter-spacing:-0.680000pt;}
.ls5f{letter-spacing:-0.658667pt;}
.ls27{letter-spacing:-0.506667pt;}
.ls5d{letter-spacing:-0.405333pt;}
.ls30{letter-spacing:-0.354667pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.304000pt;}
.ls47{letter-spacing:-0.272000pt;}
.ls26{letter-spacing:-0.253333pt;}
.ls46{letter-spacing:-0.226667pt;}
.ls2f{letter-spacing:-0.202667pt;}
.ls12{letter-spacing:-0.152000pt;}
.ls21{letter-spacing:-0.136000pt;}
.ls4f{letter-spacing:-0.112000pt;}
.ls55{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.101333pt;}
.ls22{letter-spacing:-0.090667pt;}
.ls11{letter-spacing:-0.050667pt;}
.ls20{letter-spacing:-0.045333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.022667pt;}
.ls1d{letter-spacing:0.045333pt;}
.ls6{letter-spacing:0.050667pt;}
.ls3b{letter-spacing:0.070827pt;}
.ls3f{letter-spacing:0.076000pt;}
.ls4c{letter-spacing:0.076693pt;}
.ls1f{letter-spacing:0.090667pt;}
.ls18{letter-spacing:0.101333pt;}
.ls56{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.126667pt;}
.ls42{letter-spacing:0.136000pt;}
.lsf{letter-spacing:0.152000pt;}
.ls37{letter-spacing:0.177333pt;}
.ls50{letter-spacing:0.181333pt;}
.ls7{letter-spacing:0.202667pt;}
.ls52{letter-spacing:0.210560pt;}
.ls3{letter-spacing:0.213333pt;}
.ls54{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.226667pt;}
.ls45{letter-spacing:0.228000pt;}
.ls14{letter-spacing:0.253333pt;}
.ls1c{letter-spacing:0.272000pt;}
.ls61{letter-spacing:0.278667pt;}
.ls5a{letter-spacing:0.294667pt;}
.ls4{letter-spacing:0.304000pt;}
.ls1b{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.329333pt;}
.lse{letter-spacing:0.354667pt;}
.ls1a{letter-spacing:0.362667pt;}
.ls2c{letter-spacing:0.380000pt;}
.ls3c{letter-spacing:0.385333pt;}
.ls8{letter-spacing:0.405333pt;}
.ls19{letter-spacing:0.408000pt;}
.ls3a{letter-spacing:0.430667pt;}
.ls5b{letter-spacing:0.453333pt;}
.ls5{letter-spacing:0.456000pt;}
.ls31{letter-spacing:0.498667pt;}
.ls2{letter-spacing:0.506667pt;}
.ls4a{letter-spacing:0.521333pt;}
.ls28{letter-spacing:0.532000pt;}
.ls43{letter-spacing:0.544000pt;}
.lsd{letter-spacing:0.557333pt;}
.ls29{letter-spacing:0.582667pt;}
.ls34{letter-spacing:0.589333pt;}
.ls13{letter-spacing:0.608000pt;}
.ls62{letter-spacing:0.633333pt;}
.ls33{letter-spacing:0.634667pt;}
.ls35{letter-spacing:0.658667pt;}
.ls66{letter-spacing:0.678933pt;}
.ls65{letter-spacing:0.684000pt;}
.lsa{letter-spacing:0.709333pt;}
.ls15{letter-spacing:0.760000pt;}
.ls63{letter-spacing:0.770667pt;}
.ls16{letter-spacing:0.785333pt;}
.ls36{letter-spacing:0.810667pt;}
.ls32{letter-spacing:0.816000pt;}
.ls48{letter-spacing:0.836000pt;}
.ls3e{letter-spacing:0.861333pt;}
.ls51{letter-spacing:0.906667pt;}
.ls25{letter-spacing:0.912000pt;}
.ls2d{letter-spacing:0.962667pt;}
.ls41{letter-spacing:0.997333pt;}
.ls4b{letter-spacing:1.013333pt;}
.ls40{letter-spacing:1.042667pt;}
.ls2b{letter-spacing:1.064000pt;}
.ls2e{letter-spacing:1.114667pt;}
.ls24{letter-spacing:1.140000pt;}
.ls64{letter-spacing:1.155200pt;}
.ls23{letter-spacing:1.165333pt;}
.ls2a{letter-spacing:1.216000pt;}
.ls60{letter-spacing:1.292000pt;}
.ls39{letter-spacing:1.317333pt;}
.ls53{letter-spacing:1.368000pt;}
.lsb{letter-spacing:1.493333pt;}
.ls67{letter-spacing:2.229333pt;}
.ls68{letter-spacing:2.371200pt;}
.ls57{letter-spacing:2.584000pt;}
.ls59{letter-spacing:2.974133pt;}
.ls0{letter-spacing:5.333333pt;}
.ls49{letter-spacing:61.661333pt;}
.ws5{word-spacing:-25.813333pt;}
.ws150{word-spacing:-25.280000pt;}
.ws125{word-spacing:-24.746667pt;}
.ws142{word-spacing:-14.693333pt;}
.ws14b{word-spacing:-14.612267pt;}
.ws143{word-spacing:-14.566667pt;}
.ws12b{word-spacing:-14.541333pt;}
.ws26{word-spacing:-14.490667pt;}
.ws113{word-spacing:-14.440000pt;}
.ws140{word-spacing:-14.389333pt;}
.ws12e{word-spacing:-14.262667pt;}
.wsed{word-spacing:-14.237333pt;}
.ws144{word-spacing:-14.186667pt;}
.ws14a{word-spacing:-14.136000pt;}
.wsb9{word-spacing:-14.034667pt;}
.ws39{word-spacing:-13.933333pt;}
.ws141{word-spacing:-13.882667pt;}
.ws10{word-spacing:-13.832000pt;}
.ws112{word-spacing:-13.730667pt;}
.ws10a{word-spacing:-13.373333pt;}
.ws151{word-spacing:-13.328000pt;}
.wsa1{word-spacing:-13.282667pt;}
.ws145{word-spacing:-13.237333pt;}
.ws12a{word-spacing:-13.072000pt;}
.ws14d{word-spacing:-13.056000pt;}
.wseb{word-spacing:-13.010667pt;}
.wsfd{word-spacing:-12.988000pt;}
.ws11d{word-spacing:-12.970667pt;}
.ws11f{word-spacing:-12.920000pt;}
.ws51{word-spacing:-12.874667pt;}
.ws11e{word-spacing:-12.829333pt;}
.ws52{word-spacing:-12.784000pt;}
.wsfa{word-spacing:-12.768000pt;}
.wsa2{word-spacing:-12.738667pt;}
.ws114{word-spacing:-12.717333pt;}
.wse4{word-spacing:-12.693333pt;}
.ws109{word-spacing:-12.648000pt;}
.wse3{word-spacing:-12.602667pt;}
.wsec{word-spacing:-12.489333pt;}
.ws57{word-spacing:-12.466667pt;}
.wsa3{word-spacing:-12.421333pt;}
.ws56{word-spacing:-12.376000pt;}
.ws55{word-spacing:-12.330667pt;}
.wsf5{word-spacing:-12.240000pt;}
.ws132{word-spacing:-12.194667pt;}
.ws4{word-spacing:-12.160000pt;}
.ws106{word-spacing:-11.741333pt;}
.ws54{word-spacing:-11.469333pt;}
.ws53{word-spacing:-11.424000pt;}
.ws139{word-spacing:-11.378667pt;}
.ws10d{word-spacing:-10.266667pt;}
.wscd{word-spacing:-9.408000pt;}
.wsfe{word-spacing:-8.081333pt;}
.ws0{word-spacing:-5.333333pt;}
.ws70{word-spacing:-5.086933pt;}
.ws107{word-spacing:-3.490667pt;}
.ws108{word-spacing:-3.218667pt;}
.ws126{word-spacing:-3.090667pt;}
.ws127{word-spacing:-2.837333pt;}
.wsbf{word-spacing:-2.786667pt;}
.ws98{word-spacing:-2.634667pt;}
.ws97{word-spacing:-2.432000pt;}
.wsc8{word-spacing:-2.381333pt;}
.ws102{word-spacing:-2.330667pt;}
.ws12d{word-spacing:-2.280000pt;}
.ws23{word-spacing:-2.128000pt;}
.ws21{word-spacing:-2.077333pt;}
.ws11{word-spacing:-2.026667pt;}
.ws32{word-spacing:-1.976000pt;}
.ws133{word-spacing:-1.949333pt;}
.wsc9{word-spacing:-1.925333pt;}
.ws62{word-spacing:-1.904000pt;}
.ws4e{word-spacing:-1.874667pt;}
.ws58{word-spacing:-1.858667pt;}
.wsdc{word-spacing:-1.824000pt;}
.ws134{word-spacing:-1.813333pt;}
.ws1d{word-spacing:-1.773333pt;}
.ws13c{word-spacing:-1.768000pt;}
.ws63{word-spacing:-1.722667pt;}
.ws65{word-spacing:-1.677333pt;}
.wscc{word-spacing:-1.672000pt;}
.ws4d{word-spacing:-1.621333pt;}
.wsf0{word-spacing:-1.570667pt;}
.ws104{word-spacing:-1.530667pt;}
.ws101{word-spacing:-1.520000pt;}
.ws6a{word-spacing:-1.496000pt;}
.wsf1{word-spacing:-1.469333pt;}
.wsd4{word-spacing:-1.456000pt;}
.ws157{word-spacing:-1.450667pt;}
.ws80{word-spacing:-1.418667pt;}
.wse1{word-spacing:-1.368000pt;}
.ws6b{word-spacing:-1.360000pt;}
.ws15{word-spacing:-1.317333pt;}
.ws158{word-spacing:-1.314667pt;}
.ws2d{word-spacing:-1.266667pt;}
.ws86{word-spacing:-1.216000pt;}
.wse9{word-spacing:-1.178667pt;}
.ws50{word-spacing:-1.165333pt;}
.ws5e{word-spacing:-1.133333pt;}
.wscb{word-spacing:-1.114667pt;}
.ws12{word-spacing:-1.064000pt;}
.ws5f{word-spacing:-1.042667pt;}
.ws135{word-spacing:-1.013333pt;}
.wsd6{word-spacing:-0.997333pt;}
.ws2b{word-spacing:-0.962667pt;}
.wsa9{word-spacing:-0.952000pt;}
.wscf{word-spacing:-0.912000pt;}
.ws3b{word-spacing:-0.861333pt;}
.wsd2{word-spacing:-0.816000pt;}
.ws2a{word-spacing:-0.810667pt;}
.ws77{word-spacing:-0.760000pt;}
.wsd3{word-spacing:-0.725333pt;}
.ws37{word-spacing:-0.709333pt;}
.ws100{word-spacing:-0.680000pt;}
.ws95{word-spacing:-0.658667pt;}
.ws10f{word-spacing:-0.640000pt;}
.ws87{word-spacing:-0.608000pt;}
.wsaa{word-spacing:-0.589333pt;}
.ws29{word-spacing:-0.557333pt;}
.ws6d{word-spacing:-0.544000pt;}
.ws71{word-spacing:-0.533333pt;}
.ws8a{word-spacing:-0.506667pt;}
.ws6e{word-spacing:-0.498667pt;}
.ws9c{word-spacing:-0.456000pt;}
.wsea{word-spacing:-0.453333pt;}
.ws10e{word-spacing:-0.426667pt;}
.wsad{word-spacing:-0.408000pt;}
.ws2f{word-spacing:-0.405333pt;}
.wsae{word-spacing:-0.362667pt;}
.ws73{word-spacing:-0.354667pt;}
.wsb6{word-spacing:-0.317333pt;}
.ws27{word-spacing:-0.304000pt;}
.ws4c{word-spacing:-0.293333pt;}
.wsa8{word-spacing:-0.272000pt;}
.ws20{word-spacing:-0.253333pt;}
.ws59{word-spacing:-0.226667pt;}
.ws7{word-spacing:-0.213333pt;}
.ws31{word-spacing:-0.202667pt;}
.wsb1{word-spacing:-0.186667pt;}
.ws8e{word-spacing:-0.152000pt;}
.ws2e{word-spacing:-0.101333pt;}
.ws13{word-spacing:-0.050667pt;}
.ws60{word-spacing:-0.045333pt;}
.ws2{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.050667pt;}
.wsab{word-spacing:0.090667pt;}
.ws90{word-spacing:0.101333pt;}
.ws13a{word-spacing:0.136000pt;}
.ws34{word-spacing:0.152000pt;}
.ws18{word-spacing:0.202667pt;}
.ws153{word-spacing:0.226667pt;}
.ws7d{word-spacing:0.253333pt;}
.ws13b{word-spacing:0.272000pt;}
.ws1e{word-spacing:0.304000pt;}
.ws4f{word-spacing:0.354667pt;}
.ws7c{word-spacing:0.405333pt;}
.wsa6{word-spacing:0.408000pt;}
.wsa5{word-spacing:0.453333pt;}
.wsef{word-spacing:0.456000pt;}
.wsa0{word-spacing:0.498667pt;}
.ws7e{word-spacing:0.506667pt;}
.ws9f{word-spacing:0.544000pt;}
.wsfc{word-spacing:0.557333pt;}
.ws3{word-spacing:0.608000pt;}
.ws123{word-spacing:0.634667pt;}
.ws137{word-spacing:0.658667pt;}
.ws124{word-spacing:0.680000pt;}
.wsbb{word-spacing:0.709333pt;}
.ws44{word-spacing:0.760000pt;}
.wsac{word-spacing:0.770667pt;}
.ws96{word-spacing:0.810667pt;}
.wsce{word-spacing:0.861333pt;}
.wsb8{word-spacing:0.912000pt;}
.wsca{word-spacing:0.962667pt;}
.wsd9{word-spacing:0.997333pt;}
.ws7f{word-spacing:1.013333pt;}
.ws1c{word-spacing:1.064000pt;}
.wsd8{word-spacing:1.088000pt;}
.ws82{word-spacing:1.114667pt;}
.wsd5{word-spacing:1.133333pt;}
.ws115{word-spacing:1.165333pt;}
.ws64{word-spacing:1.178667pt;}
.ws117{word-spacing:1.216000pt;}
.ws9d{word-spacing:1.266667pt;}
.wsd0{word-spacing:1.314667pt;}
.wsdf{word-spacing:1.317333pt;}
.ws68{word-spacing:1.360000pt;}
.ws93{word-spacing:1.368000pt;}
.wsc5{word-spacing:1.418667pt;}
.wsf2{word-spacing:1.469333pt;}
.ws69{word-spacing:1.496000pt;}
.ws8d{word-spacing:1.520000pt;}
.ws146{word-spacing:1.541333pt;}
.ws24{word-spacing:1.570667pt;}
.ws36{word-spacing:1.621333pt;}
.wsf6{word-spacing:1.632000pt;}
.ws1{word-spacing:1.664000pt;}
.ws11a{word-spacing:1.672000pt;}
.ws6c{word-spacing:1.677333pt;}
.wsd7{word-spacing:1.722667pt;}
.wsf7{word-spacing:1.768000pt;}
.ws35{word-spacing:1.773333pt;}
.ws111{word-spacing:1.792000pt;}
.ws152{word-spacing:1.813333pt;}
.ws30{word-spacing:1.824000pt;}
.ws61{word-spacing:1.858667pt;}
.ws48{word-spacing:1.874667pt;}
.ws10b{word-spacing:1.904000pt;}
.ws40{word-spacing:1.925333pt;}
.wsb5{word-spacing:1.949333pt;}
.wsba{word-spacing:1.976000pt;}
.wsa7{word-spacing:1.994667pt;}
.ws76{word-spacing:2.026667pt;}
.wsd1{word-spacing:2.040000pt;}
.ws1a{word-spacing:2.077333pt;}
.wsee{word-spacing:2.085333pt;}
.ws17{word-spacing:2.128000pt;}
.ws3e{word-spacing:2.178667pt;}
.ws14{word-spacing:2.229333pt;}
.ws5d{word-spacing:2.266667pt;}
.ws3a{word-spacing:2.280000pt;}
.ws119{word-spacing:2.312000pt;}
.wsc3{word-spacing:2.330667pt;}
.wsdd{word-spacing:2.381333pt;}
.ws28{word-spacing:2.432000pt;}
.ws5c{word-spacing:2.448000pt;}
.ws3d{word-spacing:2.482667pt;}
.ws120{word-spacing:2.493333pt;}
.ws22{word-spacing:2.533333pt;}
.ws118{word-spacing:2.538667pt;}
.ws74{word-spacing:2.584000pt;}
.wse5{word-spacing:2.634667pt;}
.ws8c{word-spacing:2.685333pt;}
.ws8b{word-spacing:2.736000pt;}
.wsda{word-spacing:2.765333pt;}
.ws45{word-spacing:2.786667pt;}
.wsbd{word-spacing:2.837333pt;}
.ws5b{word-spacing:2.856000pt;}
.ws41{word-spacing:2.888000pt;}
.ws47{word-spacing:2.938667pt;}
.ws81{word-spacing:2.989333pt;}
.ws67{word-spacing:2.992000pt;}
.ws33{word-spacing:3.040000pt;}
.ws89{word-spacing:3.090667pt;}
.wsdb{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.128000pt;}
.wsb4{word-spacing:3.141333pt;}
.ws6f{word-spacing:3.173333pt;}
.ws1f{word-spacing:3.192000pt;}
.ws91{word-spacing:3.242667pt;}
.ws66{word-spacing:3.264000pt;}
.wsb3{word-spacing:3.293333pt;}
.wsc6{word-spacing:3.344000pt;}
.ws92{word-spacing:3.394667pt;}
.ws122{word-spacing:3.400000pt;}
.wsc4{word-spacing:3.445333pt;}
.ws4a{word-spacing:3.496000pt;}
.wsfb{word-spacing:3.546667pt;}
.ws110{word-spacing:3.597333pt;}
.ws16{word-spacing:3.648000pt;}
.ws105{word-spacing:3.698667pt;}
.ws1b{word-spacing:3.749333pt;}
.wsc2{word-spacing:3.800000pt;}
.wsc1{word-spacing:3.850667pt;}
.ws43{word-spacing:3.901333pt;}
.ws19{word-spacing:3.952000pt;}
.ws7b{word-spacing:4.002667pt;}
.ws9e{word-spacing:4.034667pt;}
.ws38{word-spacing:4.053333pt;}
.ws49{word-spacing:4.104000pt;}
.ws149{word-spacing:4.125333pt;}
.ws42{word-spacing:4.154667pt;}
.wsff{word-spacing:4.170667pt;}
.ws3f{word-spacing:4.205333pt;}
.ws88{word-spacing:4.256000pt;}
.ws14e{word-spacing:4.261333pt;}
.ws75{word-spacing:4.306667pt;}
.wse7{word-spacing:4.357333pt;}
.ws148{word-spacing:4.397333pt;}
.wsb2{word-spacing:4.408000pt;}
.wse2{word-spacing:4.458667pt;}
.ws2c{word-spacing:4.509333pt;}
.ws121{word-spacing:4.533333pt;}
.ws13d{word-spacing:4.560000pt;}
.ws154{word-spacing:4.578667pt;}
.ws46{word-spacing:4.610667pt;}
.wsb0{word-spacing:4.624000pt;}
.ws8f{word-spacing:4.661333pt;}
.ws128{word-spacing:4.762667pt;}
.ws14f{word-spacing:4.805333pt;}
.wsb7{word-spacing:4.813333pt;}
.wsf8{word-spacing:4.864000pt;}
.ws12f{word-spacing:4.914667pt;}
.ws3c{word-spacing:4.965333pt;}
.ws11b{word-spacing:5.016000pt;}
.wsaf{word-spacing:5.032000pt;}
.ws103{word-spacing:5.117333pt;}
.ws99{word-spacing:5.320000pt;}
.wsf3{word-spacing:5.421333pt;}
.ws11c{word-spacing:5.472000pt;}
.wse8{word-spacing:5.485333pt;}
.ws14c{word-spacing:5.522667pt;}
.ws25{word-spacing:5.624000pt;}
.ws129{word-spacing:5.776000pt;}
.wsf4{word-spacing:5.826667pt;}
.ws9b{word-spacing:5.877333pt;}
.ws12c{word-spacing:5.928000pt;}
.wsf9{word-spacing:5.978667pt;}
.ws4b{word-spacing:6.029333pt;}
.ws131{word-spacing:6.130667pt;}
.ws130{word-spacing:6.232000pt;}
.wsbe{word-spacing:6.333333pt;}
.ws156{word-spacing:6.346667pt;}
.ws136{word-spacing:6.384000pt;}
.ws147{word-spacing:6.437333pt;}
.ws13e{word-spacing:6.586667pt;}
.ws94{word-spacing:6.637333pt;}
.wsa4{word-spacing:6.709333pt;}
.ws138{word-spacing:6.789333pt;}
.ws155{word-spacing:6.890667pt;}
.ws116{word-spacing:6.941333pt;}
.wsc7{word-spacing:7.042667pt;}
.ws10c{word-spacing:7.298667pt;}
.ws7a{word-spacing:8.056000pt;}
.wsde{word-spacing:8.157333pt;}
.ws84{word-spacing:9.018667pt;}
.ws13f{word-spacing:9.120000pt;}
.ws72{word-spacing:9.424000pt;}
.ws79{word-spacing:9.778667pt;}
.wsc0{word-spacing:10.944000pt;}
.ws78{word-spacing:11.552000pt;}
.ws83{word-spacing:14.440000pt;}
.wsbc{word-spacing:15.301333pt;}
.wse0{word-spacing:15.757333pt;}
.ws85{word-spacing:15.909333pt;}
.ws6{word-spacing:40.405333pt;}
.ws9{word-spacing:52.309333pt;}
.wse6{word-spacing:61.661333pt;}
.wse{word-spacing:483.882667pt;}
.wsc{word-spacing:624.000000pt;}
.wsa{word-spacing:624.938667pt;}
.wsf{word-spacing:807.893333pt;}
.wsd{word-spacing:959.658667pt;}
.ws8{word-spacing:1099.605333pt;}
.wsb{word-spacing:1102.848000pt;}
._33{margin-left:-67.792000pt;}
._32{margin-left:-62.370667pt;}
._34{margin-left:-60.901333pt;}
._35{margin-left:-54.568000pt;}
._3a{margin-left:-23.280267pt;}
._37{margin-left:-22.037333pt;}
._29{margin-left:-21.008800pt;}
._2b{margin-left:-19.350933pt;}
._23{margin-left:-17.818133pt;}
._2e{margin-left:-16.885867pt;}
._30{margin-left:-15.301333pt;}
._36{margin-left:-13.730667pt;}
._2d{margin-left:-12.464000pt;}
._4{margin-left:-11.562667pt;}
._39{margin-left:-9.322667pt;}
._20{margin-left:-7.237867pt;}
._b{margin-left:-6.020267pt;}
._a{margin-left:-4.288000pt;}
._1a{margin-left:-3.320800pt;}
._1{margin-left:-2.026667pt;}
._5{margin-left:-0.994133pt;}
._0{width:1.210933pt;}
._18{width:2.856267pt;}
._16{width:4.535467pt;}
._19{width:5.609867pt;}
._2a{width:6.637333pt;}
._22{width:7.645600pt;}
._14{width:8.716800pt;}
._1c{width:10.488000pt;}
._1d{width:12.008000pt;}
._1f{width:12.920000pt;}
._26{width:14.693333pt;}
._1b{width:15.909333pt;}
._1e{width:16.821333pt;}
._24{width:18.290667pt;}
._21{width:20.216000pt;}
._27{width:22.496000pt;}
._25{width:23.458667pt;}
._28{width:25.232000pt;}
._38{width:43.605333pt;}
._2c{width:46.032000pt;}
._2f{width:47.301333pt;}
._15{width:55.308800pt;}
._31{width:60.141333pt;}
._2{width:88.456533pt;}
._6{width:280.247467pt;}
._d{width:506.650400pt;}
._c{width:623.419733pt;}
._e{width:795.093333pt;}
._9{width:805.418667pt;}
._11{width:963.776000pt;}
._12{width:1066.005333pt;}
._10{width:1109.013333pt;}
._7{width:1117.983467pt;}
._17{width:1193.514667pt;}
._8{width:1232.213333pt;}
._3{width:1266.423467pt;}
._13{width:1276.885333pt;}
._f{width:1284.309333pt;}
.fs8{font-size:26.293333pt;}
.fs9{font-size:29.386667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:106.666667pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:26.456667pt;}
.y140{bottom:64.248000pt;}
.y11e{bottom:64.252000pt;}
.ycb{bottom:64.547333pt;}
.y51{bottom:64.547467pt;}
.yef{bottom:64.567867pt;}
.y76{bottom:64.568000pt;}
.y231{bottom:64.573333pt;}
.y15f{bottom:64.579333pt;}
.y2e2{bottom:64.584667pt;}
.y27e{bottom:64.590000pt;}
.y19d{bottom:64.594667pt;}
.y29a{bottom:64.600000pt;}
.y125{bottom:64.611333pt;}
.y1c9{bottom:64.613333pt;}
.y2ff{bottom:64.616000pt;}
.y2f3{bottom:64.626667pt;}
.y23b{bottom:64.634667pt;}
.y17e{bottom:64.641333pt;}
.y2a3{bottom:64.648000pt;}
.y1b2{bottom:64.653333pt;}
.y1ed{bottom:64.661333pt;}
.y2e{bottom:64.694000pt;}
.y25d{bottom:65.214000pt;}
.y1{bottom:70.390533pt;}
.y13f{bottom:77.585333pt;}
.yca{bottom:81.216667pt;}
.y50{bottom:81.216800pt;}
.yae{bottom:81.227200pt;}
.yee{bottom:81.237200pt;}
.y75{bottom:81.237333pt;}
.y230{bottom:81.242667pt;}
.y15e{bottom:81.248667pt;}
.y2e1{bottom:81.254000pt;}
.y27d{bottom:81.259333pt;}
.y19c{bottom:81.264000pt;}
.y299{bottom:81.269333pt;}
.y124{bottom:81.280667pt;}
.y1c8{bottom:81.282667pt;}
.y2fe{bottom:81.287333pt;}
.y1da{bottom:81.288000pt;}
.y2f2{bottom:81.296000pt;}
.y223{bottom:81.300667pt;}
.y23a{bottom:81.304000pt;}
.y268{bottom:81.306667pt;}
.y17d{bottom:81.312667pt;}
.y2a2{bottom:81.317333pt;}
.y107{bottom:81.320000pt;}
.y1b1{bottom:81.324667pt;}
.y1ec{bottom:81.330667pt;}
.y25c{bottom:81.883333pt;}
.yc9{bottom:97.886000pt;}
.y4f{bottom:97.886133pt;}
.yad{bottom:97.898533pt;}
.yed{bottom:97.906533pt;}
.y74{bottom:97.906667pt;}
.y22f{bottom:97.912000pt;}
.y15d{bottom:97.918000pt;}
.y2e0{bottom:97.923333pt;}
.y27c{bottom:97.928667pt;}
.y19b{bottom:97.933333pt;}
.y298{bottom:97.938667pt;}
.y123{bottom:97.950000pt;}
.y1c7{bottom:97.952000pt;}
.y1d9{bottom:97.957333pt;}
.y2fd{bottom:97.958667pt;}
.y2f1{bottom:97.965333pt;}
.y222{bottom:97.972000pt;}
.y239{bottom:97.973333pt;}
.y267{bottom:97.976000pt;}
.y17c{bottom:97.984000pt;}
.y2a1{bottom:97.986667pt;}
.y106{bottom:97.991333pt;}
.y1b0{bottom:97.996000pt;}
.y1eb{bottom:98.000000pt;}
.y2d{bottom:98.027333pt;}
.y25b{bottom:98.552667pt;}
.yc8{bottom:114.555333pt;}
.y4e{bottom:114.555467pt;}
.yac{bottom:114.569867pt;}
.yec{bottom:114.575867pt;}
.y73{bottom:114.576000pt;}
.y22e{bottom:114.581333pt;}
.y15c{bottom:114.587333pt;}
.y2df{bottom:114.592667pt;}
.y27b{bottom:114.598000pt;}
.y19a{bottom:114.602667pt;}
.y214{bottom:114.603333pt;}
.y297{bottom:114.608000pt;}
.y122{bottom:114.619333pt;}
.y1c6{bottom:114.621333pt;}
.y1d8{bottom:114.626667pt;}
.y2fc{bottom:114.630000pt;}
.y2f0{bottom:114.634667pt;}
.y13e{bottom:114.636667pt;}
.y2bc{bottom:114.637333pt;}
.y238{bottom:114.642667pt;}
.y221{bottom:114.643333pt;}
.y266{bottom:114.645333pt;}
.y17b{bottom:114.655333pt;}
.y2a0{bottom:114.656000pt;}
.y1e9{bottom:114.658667pt;}
.y105{bottom:114.662667pt;}
.y1af{bottom:114.667333pt;}
.y1ea{bottom:114.669333pt;}
.y2c{bottom:114.688667pt;}
.y25a{bottom:115.222000pt;}
.yc7{bottom:131.224667pt;}
.y4d{bottom:131.224800pt;}
.y2d5{bottom:131.230000pt;}
.y72{bottom:131.245333pt;}
.y22d{bottom:131.250667pt;}
.y15b{bottom:131.256667pt;}
.y2de{bottom:131.262000pt;}
.y27a{bottom:131.267333pt;}
.y199{bottom:131.272000pt;}
.y213{bottom:131.272667pt;}
.y296{bottom:131.277333pt;}
.y1c5{bottom:131.290667pt;}
.y2fb{bottom:131.301333pt;}
.y2ef{bottom:131.304000pt;}
.y2bb{bottom:131.306667pt;}
.y13d{bottom:131.308000pt;}
.y237{bottom:131.312000pt;}
.y265{bottom:131.314667pt;}
.y29f{bottom:131.325333pt;}
.y17a{bottom:131.326667pt;}
.y1e8{bottom:131.328000pt;}
.y1f7{bottom:131.330667pt;}
.y104{bottom:131.334000pt;}
.y1ae{bottom:131.338667pt;}
.y2b{bottom:131.350000pt;}
.y259{bottom:131.891333pt;}
.y318{bottom:147.236000pt;}
.yc6{bottom:147.894000pt;}
.y4c{bottom:147.894133pt;}
.yab{bottom:147.901200pt;}
.y2d4{bottom:147.901333pt;}
.yeb{bottom:147.914533pt;}
.y71{bottom:147.914667pt;}
.y22c{bottom:147.920000pt;}
.y15a{bottom:147.926000pt;}
.y2dd{bottom:147.931333pt;}
.y279{bottom:147.936667pt;}
.y198{bottom:147.941333pt;}
.y212{bottom:147.942000pt;}
.y121{bottom:147.943333pt;}
.y295{bottom:147.946667pt;}
.y1c4{bottom:147.960000pt;}
.y1d7{bottom:147.965333pt;}
.y2fa{bottom:147.972667pt;}
.y2ee{bottom:147.973333pt;}
.y220{bottom:147.974667pt;}
.y13c{bottom:147.979333pt;}
.y264{bottom:147.984000pt;}
.y29e{bottom:147.994667pt;}
.y1e7{bottom:147.997333pt;}
.y179{bottom:147.998000pt;}
.y1f6{bottom:148.000000pt;}
.y103{bottom:148.005333pt;}
.y2a{bottom:148.011333pt;}
.y258{bottom:148.560667pt;}
.y317{bottom:163.907333pt;}
.yc5{bottom:164.563333pt;}
.y4b{bottom:164.563467pt;}
.yaa{bottom:164.572533pt;}
.yea{bottom:164.583867pt;}
.y70{bottom:164.584000pt;}
.y22b{bottom:164.589333pt;}
.y159{bottom:164.595333pt;}
.y2dc{bottom:164.600667pt;}
.y278{bottom:164.606000pt;}
.y197{bottom:164.610667pt;}
.y211{bottom:164.611333pt;}
.y120{bottom:164.614667pt;}
.y294{bottom:164.616000pt;}
.y1c3{bottom:164.629333pt;}
.y1d6{bottom:164.634667pt;}
.y2ed{bottom:164.642667pt;}
.y2f9{bottom:164.644000pt;}
.y2ba{bottom:164.645333pt;}
.y21f{bottom:164.646000pt;}
.y13b{bottom:164.650667pt;}
.y263{bottom:164.653333pt;}
.y29d{bottom:164.664000pt;}
.y1e6{bottom:164.666667pt;}
.y1f5{bottom:164.669333pt;}
.y1ad{bottom:164.672000pt;}
.y29{bottom:164.672667pt;}
.y257{bottom:165.230000pt;}
.y8e{bottom:171.311333pt;}
.y316{bottom:180.578667pt;}
.yc4{bottom:181.232667pt;}
.y4a{bottom:181.232800pt;}
.ya9{bottom:181.243867pt;}
.ye9{bottom:181.253200pt;}
.y6f{bottom:181.253333pt;}
.y22a{bottom:181.258667pt;}
.y158{bottom:181.264667pt;}
.y2db{bottom:181.270000pt;}
.y277{bottom:181.275333pt;}
.y196{bottom:181.280000pt;}
.y210{bottom:181.280667pt;}
.y293{bottom:181.285333pt;}
.y11f{bottom:181.286000pt;}
.y1c2{bottom:181.298667pt;}
.y1d5{bottom:181.304000pt;}
.y2ec{bottom:181.312000pt;}
.y2b9{bottom:181.314667pt;}
.y2f8{bottom:181.315333pt;}
.y21e{bottom:181.317333pt;}
.y236{bottom:181.320000pt;}
.y13a{bottom:181.322000pt;}
.y178{bottom:181.329333pt;}
.y29c{bottom:181.333333pt;}
.y1e5{bottom:181.336000pt;}
.y102{bottom:181.338667pt;}
.y256{bottom:181.899333pt;}
.y8d{bottom:187.980667pt;}
.y315{bottom:197.250000pt;}
.yc3{bottom:197.902000pt;}
.y2d3{bottom:197.904000pt;}
.ye8{bottom:197.922533pt;}
.y6e{bottom:197.922667pt;}
.y229{bottom:197.928000pt;}
.y157{bottom:197.934000pt;}
.y2da{bottom:197.939333pt;}
.y276{bottom:197.944667pt;}
.y195{bottom:197.949333pt;}
.y20f{bottom:197.950000pt;}
.y292{bottom:197.954667pt;}
.y1e4{bottom:197.962667pt;}
.y1c1{bottom:197.968000pt;}
.y1d4{bottom:197.973333pt;}
.y2eb{bottom:197.981333pt;}
.y2f7{bottom:197.986667pt;}
.y262{bottom:197.992000pt;}
.y139{bottom:197.993333pt;}
.y177{bottom:198.000667pt;}
.y29b{bottom:198.002667pt;}
.y28{bottom:198.006000pt;}
.y255{bottom:198.568667pt;}
.y314{bottom:213.921333pt;}
.yc2{bottom:214.571333pt;}
.y49{bottom:214.571467pt;}
.ya8{bottom:214.575200pt;}
.y2d2{bottom:214.575333pt;}
.ye7{bottom:214.591867pt;}
.y6d{bottom:214.592000pt;}
.y228{bottom:214.597333pt;}
.y156{bottom:214.603333pt;}
.y2d9{bottom:214.608667pt;}
.y20e{bottom:214.611333pt;}
.y275{bottom:214.614000pt;}
.y194{bottom:214.618667pt;}
.y291{bottom:214.624000pt;}
.y1ac{bottom:214.632000pt;}
.y1c0{bottom:214.637333pt;}
.y1d3{bottom:214.642667pt;}
.y21d{bottom:214.648667pt;}
.y2ea{bottom:214.650667pt;}
.y2b8{bottom:214.653333pt;}
.y2f6{bottom:214.658000pt;}
.y235{bottom:214.658667pt;}
.y261{bottom:214.661333pt;}
.y27{bottom:214.667333pt;}
.y176{bottom:214.672000pt;}
.y254{bottom:215.238000pt;}
.y8c{bottom:223.308000pt;}
.y313{bottom:230.592667pt;}
.yc1{bottom:231.240667pt;}
.y48{bottom:231.240800pt;}
.ya7{bottom:231.246533pt;}
.y2d1{bottom:231.246667pt;}
.ye6{bottom:231.261200pt;}
.y6c{bottom:231.261333pt;}
.y227{bottom:231.266667pt;}
.y155{bottom:231.272667pt;}
.y2d8{bottom:231.278000pt;}
.y20d{bottom:231.280667pt;}
.y101{bottom:231.282667pt;}
.y274{bottom:231.283333pt;}
.y193{bottom:231.288000pt;}
.y290{bottom:231.293333pt;}
.y1ab{bottom:231.301333pt;}
.y1bf{bottom:231.306667pt;}
.y1d2{bottom:231.312000pt;}
.y21c{bottom:231.320000pt;}
.y2b7{bottom:231.322667pt;}
.y138{bottom:231.324667pt;}
.y234{bottom:231.328000pt;}
.y2f5{bottom:231.329333pt;}
.y260{bottom:231.330667pt;}
.y253{bottom:231.907333pt;}
.y8b{bottom:239.977333pt;}
.y312{bottom:247.264000pt;}
.yc0{bottom:247.910000pt;}
.y47{bottom:247.910133pt;}
.ya6{bottom:247.917867pt;}
.y2d0{bottom:247.918000pt;}
.ye5{bottom:247.930533pt;}
.y6b{bottom:247.930667pt;}
.y2b1{bottom:247.931333pt;}
.y226{bottom:247.936000pt;}
.y154{bottom:247.942000pt;}
.y2d7{bottom:247.947333pt;}
.y20c{bottom:247.950000pt;}
.y100{bottom:247.952000pt;}
.y273{bottom:247.952667pt;}
.y192{bottom:247.957333pt;}
.y28f{bottom:247.962667pt;}
.y1aa{bottom:247.970667pt;}
.y1be{bottom:247.976000pt;}
.y2e9{bottom:247.989333pt;}
.y21b{bottom:247.991333pt;}
.y137{bottom:247.996000pt;}
.y25f{bottom:248.000000pt;}
.y26{bottom:248.000667pt;}
.y175{bottom:248.005333pt;}
.y252{bottom:248.576667pt;}
.y8a{bottom:256.646667pt;}
.y311{bottom:263.935333pt;}
.ybf{bottom:264.579333pt;}
.y46{bottom:264.579467pt;}
.y2cf{bottom:264.589333pt;}
.ye4{bottom:264.599867pt;}
.y6a{bottom:264.600000pt;}
.y2b0{bottom:264.602667pt;}
.y225{bottom:264.605333pt;}
.y153{bottom:264.611333pt;}
.y2d6{bottom:264.616667pt;}
.y20b{bottom:264.619333pt;}
.yff{bottom:264.621333pt;}
.y191{bottom:264.626667pt;}
.y28e{bottom:264.632000pt;}
.y1e3{bottom:264.640000pt;}
.y1bd{bottom:264.645333pt;}
.y1f4{bottom:264.646000pt;}
.y1d1{bottom:264.650667pt;}
.y2e8{bottom:264.658667pt;}
.y2b6{bottom:264.661333pt;}
.y25{bottom:264.662000pt;}
.y21a{bottom:264.662667pt;}
.y233{bottom:264.666667pt;}
.y136{bottom:264.667333pt;}
.y25e{bottom:264.669333pt;}
.y2f4{bottom:264.672000pt;}
.y251{bottom:265.246000pt;}
.y89{bottom:273.316000pt;}
.y310{bottom:280.606667pt;}
.ybe{bottom:281.248667pt;}
.y45{bottom:281.248800pt;}
.ya5{bottom:281.249200pt;}
.y2ce{bottom:281.260667pt;}
.ye3{bottom:281.269200pt;}
.y69{bottom:281.269333pt;}
.y224{bottom:281.274667pt;}
.y152{bottom:281.280667pt;}
.y272{bottom:281.286000pt;}
.y190{bottom:281.296000pt;}
.y209{bottom:281.298533pt;}
.y28d{bottom:281.301333pt;}
.y1a9{bottom:281.309333pt;}
.y1bc{bottom:281.314667pt;}
.y1f3{bottom:281.317333pt;}
.y1d0{bottom:281.320000pt;}
.y11d{bottom:281.322000pt;}
.y24{bottom:281.323333pt;}
.y2e7{bottom:281.328000pt;}
.y2b5{bottom:281.330667pt;}
.y219{bottom:281.334000pt;}
.y232{bottom:281.336000pt;}
.y135{bottom:281.338667pt;}
.y250{bottom:281.915333pt;}
.y88{bottom:289.985333pt;}
.y30f{bottom:297.278000pt;}
.ybd{bottom:297.918000pt;}
.y44{bottom:297.918133pt;}
.ya4{bottom:297.920533pt;}
.y2cd{bottom:297.932000pt;}
.y2af{bottom:297.934000pt;}
.ye2{bottom:297.938533pt;}
.y68{bottom:297.938667pt;}
.y174{bottom:297.944000pt;}
.y151{bottom:297.950000pt;}
.y20a{bottom:297.952667pt;}
.yfe{bottom:297.960000pt;}
.y18f{bottom:297.965333pt;}
.y208{bottom:297.969867pt;}
.y28c{bottom:297.970667pt;}
.y1a8{bottom:297.978667pt;}
.y1bb{bottom:297.984000pt;}
.y11c{bottom:297.993333pt;}
.y2e6{bottom:297.997333pt;}
.y2b4{bottom:298.000000pt;}
.y218{bottom:298.005333pt;}
.y24f{bottom:298.584667pt;}
.y87{bottom:306.654667pt;}
.y30e{bottom:313.949333pt;}
.ybc{bottom:314.587333pt;}
.y43{bottom:314.587467pt;}
.y2ae{bottom:314.605333pt;}
.ye1{bottom:314.607867pt;}
.y67{bottom:314.608000pt;}
.y173{bottom:314.613333pt;}
.y150{bottom:314.619333pt;}
.yfd{bottom:314.629333pt;}
.y18e{bottom:314.634667pt;}
.y28b{bottom:314.640000pt;}
.y207{bottom:314.641200pt;}
.y1a7{bottom:314.648000pt;}
.y1f2{bottom:314.648667pt;}
.y1ba{bottom:314.653333pt;}
.y23{bottom:314.656667pt;}
.y1cf{bottom:314.658667pt;}
.y11b{bottom:314.664667pt;}
.y2e5{bottom:314.666667pt;}
.y2b3{bottom:314.669333pt;}
.y134{bottom:314.672000pt;}
.y24e{bottom:315.254000pt;}
.y30d{bottom:330.620667pt;}
.ya3{bottom:331.251867pt;}
.ybb{bottom:331.256667pt;}
.y42{bottom:331.256800pt;}
.y2cc{bottom:331.263333pt;}
.y14e{bottom:331.276667pt;}
.ye0{bottom:331.277200pt;}
.y78{bottom:331.277333pt;}
.y172{bottom:331.282667pt;}
.y18d{bottom:331.304000pt;}
.y28a{bottom:331.309333pt;}
.y206{bottom:331.312533pt;}
.y1a6{bottom:331.317333pt;}
.y22{bottom:331.318000pt;}
.y1f1{bottom:331.320000pt;}
.y1b9{bottom:331.322667pt;}
.y1ce{bottom:331.328000pt;}
.y2e4{bottom:331.336000pt;}
.y217{bottom:331.338667pt;}
.y24d{bottom:331.923333pt;}
.y86{bottom:341.982000pt;}
.y30c{bottom:347.292000pt;}
.ya2{bottom:347.923200pt;}
.yba{bottom:347.926000pt;}
.y41{bottom:347.926133pt;}
.y2cb{bottom:347.934667pt;}
.y2ad{bottom:347.936667pt;}
.ydf{bottom:347.946533pt;}
.y66{bottom:347.946667pt;}
.y14d{bottom:347.948000pt;}
.y171{bottom:347.952000pt;}
.y14f{bottom:347.952667pt;}
.yfc{bottom:347.968000pt;}
.y18c{bottom:347.973333pt;}
.y289{bottom:347.978667pt;}
.y21{bottom:347.979333pt;}
.y205{bottom:347.983867pt;}
.y1a5{bottom:347.986667pt;}
.y1f0{bottom:347.991333pt;}
.y1b8{bottom:347.992000pt;}
.y11a{bottom:347.996000pt;}
.y1cd{bottom:347.997333pt;}
.y2e3{bottom:348.005333pt;}
.y24c{bottom:348.592667pt;}
.y85{bottom:358.651333pt;}
.y30b{bottom:363.963333pt;}
.ya1{bottom:364.594533pt;}
.yb9{bottom:364.595333pt;}
.y40{bottom:364.595467pt;}
.y2ca{bottom:364.606000pt;}
.y2ac{bottom:364.608000pt;}
.yde{bottom:364.615867pt;}
.y65{bottom:364.616000pt;}
.y14c{bottom:364.619333pt;}
.y170{bottom:364.621333pt;}
.y133{bottom:364.632000pt;}
.yfb{bottom:364.637333pt;}
.y20{bottom:364.640667pt;}
.y18b{bottom:364.642667pt;}
.y288{bottom:364.648000pt;}
.y204{bottom:364.655200pt;}
.y1a4{bottom:364.656000pt;}
.y1b7{bottom:364.661333pt;}
.y1ef{bottom:364.662667pt;}
.y1cc{bottom:364.666667pt;}
.y119{bottom:364.667333pt;}
.y2b2{bottom:364.672000pt;}
.y24b{bottom:365.262000pt;}
.y84{bottom:375.320667pt;}
.y30a{bottom:380.634667pt;}
.yb8{bottom:381.264667pt;}
.y3f{bottom:381.264800pt;}
.ya0{bottom:381.265867pt;}
.y2c9{bottom:381.277333pt;}
.y2ab{bottom:381.279333pt;}
.ydd{bottom:381.285200pt;}
.y64{bottom:381.285333pt;}
.y14b{bottom:381.290667pt;}
.y13{bottom:381.301200pt;}
.y132{bottom:381.301333pt;}
.y1f{bottom:381.302000pt;}
.y18a{bottom:381.312000pt;}
.y287{bottom:381.317333pt;}
.y1e2{bottom:381.325333pt;}
.y203{bottom:381.326533pt;}
.y1b6{bottom:381.330667pt;}
.y1ee{bottom:381.334000pt;}
.y1cb{bottom:381.336000pt;}
.y118{bottom:381.338667pt;}
.y24a{bottom:381.931333pt;}
.y83{bottom:391.990000pt;}
.y309{bottom:397.306000pt;}
.yb7{bottom:397.934000pt;}
.y3e{bottom:397.934133pt;}
.y9f{bottom:397.937200pt;}
.y2c8{bottom:397.948667pt;}
.y2aa{bottom:397.950667pt;}
.ydc{bottom:397.954533pt;}
.y77{bottom:397.954667pt;}
.y16f{bottom:397.960000pt;}
.y14a{bottom:397.962000pt;}
.y1e{bottom:397.963333pt;}
.y12{bottom:397.970533pt;}
.y131{bottom:397.970667pt;}
.yfa{bottom:397.976000pt;}
.y189{bottom:397.981333pt;}
.y286{bottom:397.986667pt;}
.y1a3{bottom:397.994667pt;}
.y1b5{bottom:398.000000pt;}
.y1ca{bottom:398.005333pt;}
.y249{bottom:398.600667pt;}
.y82{bottom:408.659333pt;}
.y308{bottom:413.977333pt;}
.yb6{bottom:414.603333pt;}
.y3d{bottom:414.603467pt;}
.y117{bottom:414.610667pt;}
.y2c7{bottom:414.620000pt;}
.ydb{bottom:414.623867pt;}
.y63{bottom:414.624000pt;}
.y216{bottom:414.629333pt;}
.y11{bottom:414.639867pt;}
.y188{bottom:414.650667pt;}
.y285{bottom:414.656000pt;}
.y202{bottom:414.657867pt;}
.y1a2{bottom:414.664000pt;}
.y1b4{bottom:414.669333pt;}
.y248{bottom:415.270000pt;}
.y81{bottom:425.328667pt;}
.y307{bottom:430.648667pt;}
.y9e{bottom:431.268533pt;}
.yb5{bottom:431.272667pt;}
.y3c{bottom:431.272800pt;}
.y116{bottom:431.282000pt;}
.yda{bottom:431.293200pt;}
.y62{bottom:431.293333pt;}
.y1d{bottom:431.296667pt;}
.y16e{bottom:431.298667pt;}
.y10{bottom:431.309200pt;}
.y130{bottom:431.309333pt;}
.yf9{bottom:431.314667pt;}
.y187{bottom:431.320000pt;}
.y284{bottom:431.325333pt;}
.y201{bottom:431.329200pt;}
.y1a1{bottom:431.333333pt;}
.y1b3{bottom:431.338667pt;}
.y247{bottom:431.939333pt;}
.y80{bottom:441.998000pt;}
.y306{bottom:447.320000pt;}
.y9d{bottom:447.939867pt;}
.yb4{bottom:447.942000pt;}
.y3b{bottom:447.942133pt;}
.y2c6{bottom:447.951333pt;}
.y115{bottom:447.953333pt;}
.yd9{bottom:447.962533pt;}
.y61{bottom:447.962667pt;}
.y149{bottom:447.964667pt;}
.y16d{bottom:447.968000pt;}
.yf{bottom:447.978533pt;}
.y12f{bottom:447.978667pt;}
.yf8{bottom:447.984000pt;}
.y271{bottom:447.986000pt;}
.y186{bottom:447.989333pt;}
.y283{bottom:447.994667pt;}
.y200{bottom:448.000533pt;}
.y1a0{bottom:448.002667pt;}
.y246{bottom:448.608667pt;}
.y305{bottom:463.991333pt;}
.y9c{bottom:464.611200pt;}
.yb3{bottom:464.611333pt;}
.y3a{bottom:464.611467pt;}
.y2c5{bottom:464.622667pt;}
.y2a9{bottom:464.624667pt;}
.y1c{bottom:464.630000pt;}
.yd8{bottom:464.631867pt;}
.y60{bottom:464.632000pt;}
.y148{bottom:464.636000pt;}
.y16c{bottom:464.637333pt;}
.y12e{bottom:464.648000pt;}
.yf7{bottom:464.653333pt;}
.y270{bottom:464.657333pt;}
.y185{bottom:464.658667pt;}
.y282{bottom:464.664000pt;}
.y1ff{bottom:464.671867pt;}
.y19f{bottom:464.672000pt;}
.y245{bottom:465.278000pt;}
.y7f{bottom:477.325333pt;}
.y304{bottom:480.662667pt;}
.yb2{bottom:481.280667pt;}
.y39{bottom:481.280800pt;}
.y9b{bottom:481.282533pt;}
.y114{bottom:481.284667pt;}
.y2c4{bottom:481.294000pt;}
.y2a8{bottom:481.296000pt;}
.yd7{bottom:481.301200pt;}
.y5f{bottom:481.301333pt;}
.y16b{bottom:481.306667pt;}
.y147{bottom:481.307333pt;}
.ye{bottom:481.317200pt;}
.y184{bottom:481.328000pt;}
.y26f{bottom:481.328667pt;}
.y281{bottom:481.333333pt;}
.y244{bottom:481.947333pt;}
.y7e{bottom:493.994667pt;}
.y303{bottom:497.334000pt;}
.yb1{bottom:497.950000pt;}
.y38{bottom:497.950133pt;}
.y9a{bottom:497.953867pt;}
.y113{bottom:497.956000pt;}
.y1b{bottom:497.963333pt;}
.yd6{bottom:497.970533pt;}
.y5e{bottom:497.970667pt;}
.y16a{bottom:497.976000pt;}
.y23f{bottom:497.976667pt;}
.y146{bottom:497.978667pt;}
.y12d{bottom:497.986667pt;}
.yf6{bottom:497.992000pt;}
.y183{bottom:497.997333pt;}
.y280{bottom:498.002667pt;}
.y1fe{bottom:498.005200pt;}
.y19e{bottom:498.005333pt;}
.y243{bottom:498.616667pt;}
.y7d{bottom:510.664000pt;}
.y302{bottom:514.005333pt;}
.yb0{bottom:514.619333pt;}
.y37{bottom:514.619467pt;}
.y1a{bottom:514.624667pt;}
.y99{bottom:514.625200pt;}
.y2c3{bottom:514.625333pt;}
.y112{bottom:514.627333pt;}
.yd5{bottom:514.639867pt;}
.y5d{bottom:514.640000pt;}
.y169{bottom:514.645333pt;}
.y23e{bottom:514.648000pt;}
.y145{bottom:514.650000pt;}
.yd{bottom:514.655867pt;}
.y12c{bottom:514.656000pt;}
.y26e{bottom:514.660000pt;}
.yf5{bottom:514.661333pt;}
.y182{bottom:514.666667pt;}
.y27f{bottom:514.672000pt;}
.y242{bottom:515.286000pt;}
.y7c{bottom:527.333333pt;}
.y19{bottom:531.286000pt;}
.y98{bottom:531.296533pt;}
.y2c2{bottom:531.296667pt;}
.y111{bottom:531.298667pt;}
.yd4{bottom:531.309200pt;}
.y5c{bottom:531.309333pt;}
.y168{bottom:531.314667pt;}
.y23d{bottom:531.319333pt;}
.yc{bottom:531.325200pt;}
.y12b{bottom:531.325333pt;}
.yf4{bottom:531.330667pt;}
.y26d{bottom:531.331333pt;}
.y181{bottom:531.336000pt;}
.y4{bottom:533.266933pt;}
.y17{bottom:537.784533pt;}
.y7b{bottom:544.002667pt;}
.y97{bottom:547.967867pt;}
.y2c1{bottom:547.968000pt;}
.y110{bottom:547.970000pt;}
.yd3{bottom:547.978533pt;}
.y5b{bottom:547.978667pt;}
.y1e1{bottom:547.979333pt;}
.y144{bottom:547.981333pt;}
.y167{bottom:547.984000pt;}
.y23c{bottom:547.990667pt;}
.y12a{bottom:547.994667pt;}
.yf3{bottom:548.000000pt;}
.y1fd{bottom:548.002533pt;}
.y180{bottom:548.005333pt;}
.y16{bottom:554.453867pt;}
.y7a{bottom:560.672000pt;}
.y2a7{bottom:564.630000pt;}
.y96{bottom:564.639200pt;}
.y2c0{bottom:564.639333pt;}
.y10f{bottom:564.641333pt;}
.yd2{bottom:564.647867pt;}
.y5a{bottom:564.648000pt;}
.y1e0{bottom:564.650667pt;}
.y143{bottom:564.652667pt;}
.y166{bottom:564.653333pt;}
.y26c{bottom:564.662667pt;}
.yb{bottom:564.663867pt;}
.y129{bottom:564.664000pt;}
.yf2{bottom:564.669333pt;}
.y1fc{bottom:564.671867pt;}
.y3{bottom:575.941600pt;}
.y2a6{bottom:581.301333pt;}
.y95{bottom:581.310533pt;}
.y2bf{bottom:581.310667pt;}
.y10e{bottom:581.312667pt;}
.yd1{bottom:581.317200pt;}
.y59{bottom:581.317333pt;}
.y1df{bottom:581.322000pt;}
.y165{bottom:581.322667pt;}
.ya{bottom:581.333200pt;}
.y128{bottom:581.333333pt;}
.y26b{bottom:581.334000pt;}
.yf1{bottom:581.338667pt;}
.y15{bottom:587.792533pt;}
.y79{bottom:594.005333pt;}
.y2a5{bottom:597.972667pt;}
.y94{bottom:597.981867pt;}
.y2be{bottom:597.982000pt;}
.y10d{bottom:597.984000pt;}
.yd0{bottom:597.986533pt;}
.y58{bottom:597.986667pt;}
.y164{bottom:597.992000pt;}
.y1de{bottom:597.993333pt;}
.y9{bottom:598.002533pt;}
.y127{bottom:598.002667pt;}
.y1fb{bottom:598.005200pt;}
.y26a{bottom:598.005333pt;}
.y241{bottom:599.286000pt;}
.y14{bottom:604.461867pt;}
.y2a4{bottom:614.644000pt;}
.y93{bottom:614.653200pt;}
.y2bd{bottom:614.653333pt;}
.y142{bottom:614.655333pt;}
.ycf{bottom:614.655867pt;}
.y57{bottom:614.656000pt;}
.y215{bottom:614.661333pt;}
.y8{bottom:614.671867pt;}
.yf0{bottom:614.672000pt;}
.y10c{bottom:631.315333pt;}
.y92{bottom:631.324533pt;}
.y1dd{bottom:631.324667pt;}
.yce{bottom:631.325200pt;}
.y56{bottom:631.325333pt;}
.y141{bottom:631.326667pt;}
.y163{bottom:631.330667pt;}
.y269{bottom:631.338667pt;}
.y240{bottom:633.952667pt;}
.y36{bottom:633.952800pt;}
.y10b{bottom:647.986667pt;}
.ycd{bottom:647.994533pt;}
.y55{bottom:647.994667pt;}
.y91{bottom:647.995867pt;}
.y1dc{bottom:647.996000pt;}
.y1fa{bottom:647.997200pt;}
.y17f{bottom:647.998000pt;}
.y162{bottom:648.000000pt;}
.y126{bottom:648.005333pt;}
.y32{bottom:648.016000pt;}
.y2{bottom:653.274933pt;}
.y301{bottom:662.005333pt;}
.y10a{bottom:664.658000pt;}
.y7{bottom:664.663867pt;}
.y54{bottom:664.664000pt;}
.y1f9{bottom:664.666533pt;}
.y90{bottom:664.667200pt;}
.y1db{bottom:664.667333pt;}
.y161{bottom:664.669333pt;}
.yaf{bottom:668.619333pt;}
.y35{bottom:668.619467pt;}
.y109{bottom:681.329333pt;}
.ycc{bottom:681.333200pt;}
.y53{bottom:681.333333pt;}
.y1f8{bottom:681.335867pt;}
.y8f{bottom:681.338533pt;}
.y160{bottom:681.338667pt;}
.y31{bottom:681.349333pt;}
.y300{bottom:696.672000pt;}
.y108{bottom:698.000667pt;}
.y6{bottom:698.002533pt;}
.y52{bottom:698.002667pt;}
.y30{bottom:698.010667pt;}
.y18{bottom:703.286000pt;}
.y34{bottom:703.286133pt;}
.y5{bottom:714.671867pt;}
.y2f{bottom:714.672000pt;}
.ha{height:33.408000pt;}
.h10{height:35.018667pt;}
.hb{height:37.072000pt;}
.he{height:39.672000pt;}
.h9{height:40.021333pt;}
.hf{height:42.522667pt;}
.h12{height:47.322667pt;}
.hc{height:47.525333pt;}
.h11{height:47.536000pt;}
.h14{height:47.557333pt;}
.h13{height:47.696000pt;}
.h7{height:48.589333pt;}
.h6{height:50.312000pt;}
.h2{height:52.960000pt;}
.h5{height:53.098667pt;}
.hd{height:61.482667pt;}
.h8{height:111.786667pt;}
.h3{height:137.696000pt;}
.h4{height:145.322667pt;}
.h1{height:774.666667pt;}
.h0{height:774.802667pt;}
.w1{width:544.000000pt;}
.w0{width:544.252000pt;}
.x0{left:0.000000pt;}
.x3{left:64.252000pt;}
.x4{left:76.294667pt;}
.x7{left:80.655333pt;}
.x1{left:83.149867pt;}
.x2{left:102.047600pt;}
.x6{left:266.750000pt;}
.x5{left:269.433333pt;}
}




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