
    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_94b4bd6f1bb0167678d0766a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e8224c14f38b6a8619ae36de.woff')format("woff");}.ff2{font-family:ff2;line-height:1.077173;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_c18f251b2b31e1ae34b25431.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_84c7b3ef076b0c25993ff35c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.885254;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_fc513c87da582e6ce48d2602.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_734563ef4a1afa844450d0cc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e71283740bd7a9a0259ff057.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1416596a37df9f5864793621.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7ca201e66363a0d9c82ebe04.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_95b500a5bae93330c31486f1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9a3655b4ae4a3ebbed942d86.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6d0c54e3bc7fad4dcd227cfc.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_341aa4a35120082befdcdc42.woff')format("woff");}.ffd{font-family:ffd;line-height:0.918945;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:ffe;src:url('chunks/assets/font_13dc3cb0e93d5e888b37cba2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.079102;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:fff;src:url('chunks/assets/font_7ed8da0758045ab6e70f5820.woff')format("woff");}.fff{font-family:fff;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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.189120px;}
.v1{vertical-align:38.889360px;}
.ls1b{letter-spacing:-1.728000px;}
.ls1d{letter-spacing:-1.656000px;}
.ls1c{letter-spacing:-1.368000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls43{letter-spacing:-1.010880px;}
.ls2d{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls3c{letter-spacing:-0.933120px;}
.ls9{letter-spacing:-0.916560px;}
.ls39{letter-spacing:-0.868320px;}
.ls42{letter-spacing:-0.777600px;}
.ls8{letter-spacing:-0.771840px;}
.ls30{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.699840px;}
.ls2e{letter-spacing:-0.648000px;}
.ls4b{letter-spacing:-0.544320px;}
.ls3b{letter-spacing:-0.505440px;}
.ls3e{letter-spacing:-0.388800px;}
.lsb{letter-spacing:-0.337680px;}
.ls2c{letter-spacing:-0.311040px;}
.ls19{letter-spacing:-0.298800px;}
.ls10{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.287280px;}
.ls4d{letter-spacing:-0.252720px;}
.ls29{letter-spacing:-0.233280px;}
.ls11{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.191520px;}
.ls44{letter-spacing:-0.168480px;}
.ls27{letter-spacing:-0.155520px;}
.ls25{letter-spacing:-0.144720px;}
.ls55{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.119520px;}
.ls4a{letter-spacing:-0.077760px;}
.ls13{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.059760px;}
.ls6{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.007776px;}
.ls4{letter-spacing:0.059760px;}
.ls15{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.077760px;}
.ls45{letter-spacing:0.084240px;}
.ls59{letter-spacing:0.093312px;}
.ls2a{letter-spacing:0.095760px;}
.ls1f{letter-spacing:0.096480px;}
.ls61{letter-spacing:0.116640px;}
.ls17{letter-spacing:0.119520px;}
.ls36{letter-spacing:0.132192px;}
.lsc{letter-spacing:0.144000px;}
.ls5d{letter-spacing:0.147744px;}
.ls21{letter-spacing:0.155520px;}
.ls5f{letter-spacing:0.163296px;}
.ls4c{letter-spacing:0.178848px;}
.ls3{letter-spacing:0.179280px;}
.lse{letter-spacing:0.191520px;}
.ls60{letter-spacing:0.194400px;}
.ls48{letter-spacing:0.202176px;}
.ls20{letter-spacing:0.209952px;}
.ls12{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.233280px;}
.ls7{letter-spacing:0.241200px;}
.ls2{letter-spacing:0.252000px;}
.ls3f{letter-spacing:0.287712px;}
.lsd{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.295488px;}
.ls38{letter-spacing:0.298800px;}
.ls26{letter-spacing:0.311040px;}
.ls52{letter-spacing:0.318816px;}
.ls0{letter-spacing:0.326880px;}
.ls64{letter-spacing:0.334368px;}
.ls54{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.337680px;}
.ls53{letter-spacing:0.342144px;}
.ls5{letter-spacing:0.358560px;}
.ls14{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385920px;}
.ls2b{letter-spacing:0.388800px;}
.ls5c{letter-spacing:0.489888px;}
.ls24{letter-spacing:0.504000px;}
.ls5a{letter-spacing:0.544320px;}
.ls58{letter-spacing:0.699840px;}
.ls22{letter-spacing:0.863136px;}
.ls3a{letter-spacing:0.933120px;}
.ls65{letter-spacing:1.065312px;}
.ls41{letter-spacing:2.091744px;}
.ls62{letter-spacing:2.877120px;}
.ls63{letter-spacing:3.576960px;}
.ls4f{letter-spacing:4.300128px;}
.ls50{letter-spacing:4.320000px;}
.ls4e{letter-spacing:4.354560px;}
.ls35{letter-spacing:5.754240px;}
.ls37{letter-spacing:5.916240px;}
.ls5b{letter-spacing:6.454080px;}
.ls1{letter-spacing:6.480000px;}
.ls49{letter-spacing:7.076160px;}
.ls23{letter-spacing:7.200000px;}
.ls5e{letter-spacing:10.808640px;}
.ls34{letter-spacing:14.385600px;}
.ls32{letter-spacing:16.562880px;}
.ls46{letter-spacing:23.740128px;}
.ls31{letter-spacing:28.771200px;}
.ls56{letter-spacing:192.922560px;}
.ls51{letter-spacing:844.551360px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws30{word-spacing:-24.035760px;}
.ws2f{word-spacing:-23.940000px;}
.wsd9{word-spacing:-23.748480px;}
.wsaf{word-spacing:-21.060000px;}
.wsb0{word-spacing:-20.554560px;}
.wsef{word-spacing:-20.139840px;}
.ws116{word-spacing:-19.984320px;}
.ws64{word-spacing:-19.828800px;}
.wsca{word-spacing:-19.751040px;}
.ws62{word-spacing:-19.673280px;}
.wsda{word-spacing:-19.595520px;}
.ws108{word-spacing:-19.517760px;}
.ws7d{word-spacing:-19.440000px;}
.wse5{word-spacing:-19.362240px;}
.wsc0{word-spacing:-19.284480px;}
.ws31{word-spacing:-19.206720px;}
.ws63{word-spacing:-19.128960px;}
.ws96{word-spacing:-19.051200px;}
.ws94{word-spacing:-18.662400px;}
.ws95{word-spacing:-18.429120px;}
.ws7{word-spacing:-18.360000px;}
.wsd3{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsd2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws32{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.704000px;}
.wse{word-spacing:-16.272000px;}
.ws9{word-spacing:-15.119280px;}
.wsc{word-spacing:-14.940000px;}
.ws7e{word-spacing:-14.880240px;}
.wsa{word-spacing:-14.820480px;}
.wsb{word-spacing:-14.641200px;}
.ws1{word-spacing:-12.060000px;}
.ws2e{word-spacing:-11.915280px;}
.ws0{word-spacing:-11.722320px;}
.ws61{word-spacing:-11.191680px;}
.ws8{word-spacing:-9.000000px;}
.ws4c{word-spacing:-5.443200px;}
.ws4d{word-spacing:-4.898880px;}
.ws78{word-spacing:-4.743360px;}
.ws4e{word-spacing:-4.665600px;}
.wse9{word-spacing:-4.587840px;}
.ws89{word-spacing:-4.354560px;}
.ws106{word-spacing:-4.276800px;}
.wse8{word-spacing:-4.199040px;}
.wsc2{word-spacing:-4.121280px;}
.wsa4{word-spacing:-4.043520px;}
.ws74{word-spacing:-3.965760px;}
.wsdd{word-spacing:-3.810240px;}
.wsa7{word-spacing:-3.576960px;}
.ws10a{word-spacing:-3.421440px;}
.wsdc{word-spacing:-3.343680px;}
.ws55{word-spacing:-3.312000px;}
.ws8e{word-spacing:-3.265920px;}
.wsb6{word-spacing:-3.188160px;}
.ws113{word-spacing:-3.110400px;}
.ws114{word-spacing:-2.877120px;}
.ws91{word-spacing:-2.808720px;}
.ws115{word-spacing:-2.799360px;}
.wse6{word-spacing:-2.721600px;}
.ws8d{word-spacing:-2.664000px;}
.ws8f{word-spacing:-2.643840px;}
.ws93{word-spacing:-2.629440px;}
.ws58{word-spacing:-2.592000px;}
.ws92{word-spacing:-2.569680px;}
.ws50{word-spacing:-2.566080px;}
.wsff{word-spacing:-2.410560px;}
.ws127{word-spacing:-2.177280px;}
.ws100{word-spacing:-2.021760px;}
.ws99{word-spacing:-1.866240px;}
.ws4a{word-spacing:-1.788480px;}
.ws4b{word-spacing:-1.632960px;}
.ws98{word-spacing:-1.244160px;}
.ws3f{word-spacing:-1.088640px;}
.wscc{word-spacing:-1.010880px;}
.ws40{word-spacing:-0.933120px;}
.ws35{word-spacing:-0.916560px;}
.ws26{word-spacing:-0.792000px;}
.ws33{word-spacing:-0.771840px;}
.wsa9{word-spacing:-0.699840px;}
.wsf6{word-spacing:-0.544320px;}
.ws36{word-spacing:-0.530640px;}
.ws73{word-spacing:-0.466560px;}
.ws49{word-spacing:-0.388800px;}
.ws13{word-spacing:-0.385920px;}
.ws16{word-spacing:-0.383040px;}
.wsd4{word-spacing:-0.336960px;}
.ws8b{word-spacing:-0.311040px;}
.ws15{word-spacing:-0.288000px;}
.wsa0{word-spacing:-0.252720px;}
.ws3a{word-spacing:-0.233280px;}
.ws17{word-spacing:-0.191520px;}
.ws21{word-spacing:-0.179280px;}
.wsfa{word-spacing:-0.155520px;}
.wsd7{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.072000px;}
.ws10{word-spacing:-0.048240px;}
.wsf{word-spacing:0.000000px;}
.ws1f{word-spacing:0.059760px;}
.ws1c{word-spacing:0.072000px;}
.wsbc{word-spacing:0.077760px;}
.wsd6{word-spacing:0.144000px;}
.wsd1{word-spacing:0.155520px;}
.ws9f{word-spacing:0.168480px;}
.ws34{word-spacing:0.192960px;}
.ws19{word-spacing:0.216000px;}
.ws3b{word-spacing:0.233280px;}
.ws1e{word-spacing:0.239040px;}
.ws11{word-spacing:0.241200px;}
.wsb5{word-spacing:0.252720px;}
.wsdb{word-spacing:0.287280px;}
.ws18{word-spacing:0.288000px;}
.ws20{word-spacing:0.298800px;}
.ws70{word-spacing:0.311040px;}
.ws85{word-spacing:0.336960px;}
.ws12{word-spacing:0.385920px;}
.ws9e{word-spacing:0.388800px;}
.wsfb{word-spacing:0.466560px;}
.ws14{word-spacing:0.530640px;}
.wsae{word-spacing:0.544320px;}
.wscb{word-spacing:0.574560px;}
.ws60{word-spacing:0.576000px;}
.ws54{word-spacing:0.648000px;}
.ws3c{word-spacing:0.699840px;}
.ws72{word-spacing:0.766080px;}
.wsde{word-spacing:0.855360px;}
.ws9d{word-spacing:0.933120px;}
.wsd5{word-spacing:1.008000px;}
.ws9a{word-spacing:1.010880px;}
.ws6b{word-spacing:1.088640px;}
.ws75{word-spacing:1.477440px;}
.ws112{word-spacing:1.555200px;}
.ws103{word-spacing:1.632960px;}
.ws23{word-spacing:1.656000px;}
.ws3e{word-spacing:1.788480px;}
.ws37{word-spacing:1.866240px;}
.ws39{word-spacing:1.944000px;}
.ws2c{word-spacing:2.088000px;}
.wsa6{word-spacing:2.177280px;}
.ws38{word-spacing:2.332800px;}
.wsc8{word-spacing:2.410560px;}
.ws7f{word-spacing:2.488320px;}
.ws43{word-spacing:2.643840px;}
.ws42{word-spacing:2.877120px;}
.ws107{word-spacing:3.032640px;}
.ws2d{word-spacing:3.096000px;}
.wsa1{word-spacing:3.110400px;}
.ws45{word-spacing:3.188160px;}
.wsf1{word-spacing:3.265920px;}
.ws11b{word-spacing:3.343680px;}
.ws5d{word-spacing:3.528000px;}
.wsb7{word-spacing:3.576960px;}
.ws7c{word-spacing:3.645360px;}
.ws124{word-spacing:3.654720px;}
.ws44{word-spacing:3.732480px;}
.wsa3{word-spacing:3.810240px;}
.ws97{word-spacing:3.888000px;}
.ws69{word-spacing:3.965760px;}
.wsb9{word-spacing:4.121280px;}
.wsc3{word-spacing:4.248000px;}
.wsc1{word-spacing:4.354560px;}
.wsfc{word-spacing:4.510080px;}
.ws90{word-spacing:4.587840px;}
.wsaa{word-spacing:4.608000px;}
.ws9c{word-spacing:4.665600px;}
.wsa5{word-spacing:4.821120px;}
.ws12c{word-spacing:5.054400px;}
.ws9b{word-spacing:5.132160px;}
.wsf2{word-spacing:5.209920px;}
.wsa2{word-spacing:5.287680px;}
.ws6d{word-spacing:5.365440px;}
.wse1{word-spacing:5.520960px;}
.wsf3{word-spacing:5.598720px;}
.ws110{word-spacing:5.754240px;}
.ws111{word-spacing:5.832000px;}
.ws7b{word-spacing:5.856480px;}
.ws10f{word-spacing:5.909760px;}
.wsd0{word-spacing:5.987520px;}
.ws79{word-spacing:6.035760px;}
.ws86{word-spacing:6.065280px;}
.ws8a{word-spacing:6.143040px;}
.ws7a{word-spacing:6.215040px;}
.ws102{word-spacing:6.220800px;}
.ws101{word-spacing:6.454080px;}
.ws119{word-spacing:6.687360px;}
.ws1b{word-spacing:6.696000px;}
.wsc6{word-spacing:6.765120px;}
.ws1a{word-spacing:6.768000px;}
.ws52{word-spacing:6.842880px;}
.ws81{word-spacing:6.998400px;}
.ws80{word-spacing:7.231680px;}
.wscf{word-spacing:7.387200px;}
.wsc5{word-spacing:7.464960px;}
.ws41{word-spacing:7.542720px;}
.wsdf{word-spacing:7.620480px;}
.ws8c{word-spacing:7.848000px;}
.wse0{word-spacing:7.931520px;}
.ws123{word-spacing:8.087040px;}
.ws11c{word-spacing:8.164800px;}
.ws53{word-spacing:8.208000px;}
.ws4f{word-spacing:8.242560px;}
.wsc9{word-spacing:8.398080px;}
.ws5e{word-spacing:8.568000px;}
.ws122{word-spacing:8.786880px;}
.ws5f{word-spacing:8.928000px;}
.ws3d{word-spacing:8.942400px;}
.wsec{word-spacing:9.097920px;}
.ws126{word-spacing:9.331200px;}
.ws11a{word-spacing:9.486720px;}
.ws88{word-spacing:9.564480px;}
.ws24{word-spacing:9.648000px;}
.ws67{word-spacing:9.720000px;}
.ws12b{word-spacing:9.953280px;}
.ws2a{word-spacing:10.008000px;}
.wse4{word-spacing:10.264320px;}
.ws27{word-spacing:10.368000px;}
.ws48{word-spacing:10.419840px;}
.ws59{word-spacing:10.728000px;}
.wsd8{word-spacing:10.808640px;}
.ws12d{word-spacing:10.964160px;}
.ws29{word-spacing:11.088000px;}
.ws6e{word-spacing:11.119680px;}
.ws10e{word-spacing:11.275200px;}
.ws25{word-spacing:11.448000px;}
.wsad{word-spacing:11.819520px;}
.ws11f{word-spacing:12.363840px;}
.ws87{word-spacing:12.519360px;}
.ws82{word-spacing:12.597120px;}
.ws83{word-spacing:12.752640px;}
.ws5c{word-spacing:12.888000px;}
.ws77{word-spacing:12.985920px;}
.ws76{word-spacing:13.141440px;}
.ws84{word-spacing:13.296960px;}
.wsba{word-spacing:13.452480px;}
.wsb8{word-spacing:13.685760px;}
.wsc4{word-spacing:13.919040px;}
.ws51{word-spacing:13.996800px;}
.ws129{word-spacing:14.152320px;}
.ws6f{word-spacing:14.385600px;}
.ws128{word-spacing:14.541120px;}
.ws68{word-spacing:14.618880px;}
.ws6a{word-spacing:14.696640px;}
.wsf4{word-spacing:14.852160px;}
.ws5b{word-spacing:15.048000px;}
.ws12f{word-spacing:15.085440px;}
.wsf5{word-spacing:15.163200px;}
.wsf0{word-spacing:15.240960px;}
.wsb4{word-spacing:15.318720px;}
.wsb3{word-spacing:15.396480px;}
.ws5a{word-spacing:15.408000px;}
.wsbd{word-spacing:15.474240px;}
.ws66{word-spacing:16.174080px;}
.ws46{word-spacing:16.329600px;}
.ws47{word-spacing:16.873920px;}
.wsfe{word-spacing:17.029440px;}
.ws2b{word-spacing:17.208000px;}
.wsfd{word-spacing:17.573760px;}
.wseb{word-spacing:17.651520px;}
.ws6c{word-spacing:18.351360px;}
.ws22{word-spacing:18.648000px;}
.ws118{word-spacing:18.895680px;}
.ws117{word-spacing:19.051200px;}
.ws11d{word-spacing:19.284480px;}
.ws11e{word-spacing:19.440000px;}
.wsce{word-spacing:19.751040px;}
.wscd{word-spacing:19.828800px;}
.wsbb{word-spacing:20.139840px;}
.ws28{word-spacing:20.448000px;}
.wsb1{word-spacing:20.450880px;}
.ws71{word-spacing:20.528640px;}
.ws120{word-spacing:21.072960px;}
.ws57{word-spacing:21.096000px;}
.wsb2{word-spacing:21.150720px;}
.ws56{word-spacing:21.168000px;}
.wsed{word-spacing:22.161600px;}
.wsee{word-spacing:22.317120px;}
.wsc7{word-spacing:22.628160px;}
.ws10d{word-spacing:22.783680px;}
.wsa8{word-spacing:23.405760px;}
.wsac{word-spacing:23.872320px;}
.wsea{word-spacing:23.950080px;}
.wsab{word-spacing:24.048000px;}
.wsf7{word-spacing:24.105600px;}
.wse2{word-spacing:24.261120px;}
.wse3{word-spacing:24.494400px;}
.wsf8{word-spacing:24.649920px;}
.wsbf{word-spacing:24.805440px;}
.ws12a{word-spacing:26.282880px;}
.ws10c{word-spacing:26.982720px;}
.ws109{word-spacing:27.682560px;}
.ws65{word-spacing:28.382400px;}
.wsbe{word-spacing:29.859840px;}
.wse7{word-spacing:30.248640px;}
.ws12e{word-spacing:32.736960px;}
.ws10b{word-spacing:33.436800px;}
.ws121{word-spacing:36.313920px;}
.wsf9{word-spacing:64.074240px;}
.ws104{word-spacing:94.633920px;}
.ws105{word-spacing:95.022720px;}
.ws125{word-spacing:270.760320px;}
._a{margin-left:-19.041768px;}
._9{margin-left:-5.110560px;}
._7{margin-left:-3.567528px;}
._0{margin-left:-1.818648px;}
._1{width:1.104696px;}
._2{width:2.156328px;}
._8{width:3.181680px;}
._3{width:4.493880px;}
._4{width:6.718608px;}
._f{width:7.985016px;}
._14{width:10.833192px;}
._6{width:13.175928px;}
._5{width:14.910552px;}
._e{width:22.580568px;}
._b{width:23.591448px;}
._12{width:26.913024px;}
._d{width:31.048416px;}
._10{width:64.801152px;}
._11{width:95.092488px;}
._c{width:192.922560px;}
._13{width:271.288584px;}
.fc7{color:transparent;}
.fc8{color:rgb(44,51,64);}
.fc4{color:rgb(45,52,65);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(71,107,118);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y167{bottom:4.320000px;}
.y4{bottom:4.500000px;}
.y54{bottom:5.040000px;}
.y28{bottom:7.200000px;}
.y56{bottom:25.920000px;}
.y27{bottom:27.540000px;}
.y57{bottom:33.120000px;}
.y29{bottom:34.740000px;}
.y55{bottom:36.900000px;}
.y2{bottom:38.880000px;}
.y83{bottom:88.734600px;}
.y18{bottom:88.737300px;}
.y164{bottom:93.242160px;}
.y118{bottom:103.116960px;}
.y45{bottom:105.568560px;}
.y82{bottom:106.737300px;}
.y17{bottom:106.740000px;}
.y18b{bottom:109.202400px;}
.y225{bottom:110.328480px;}
.y23f{bottom:111.234240px;}
.yd4{bottom:112.030560px;}
.y2c4{bottom:112.129200px;}
.yad{bottom:112.680000px;}
.y276{bottom:112.842720px;}
.y1db{bottom:112.860000px;}
.y163{bottom:117.367200px;}
.y16{bottom:124.740000px;}
.yf9{bottom:125.588160px;}
.yac{bottom:125.640000px;}
.y117{bottom:126.522720px;}
.y141{bottom:126.558720px;}
.y44{bottom:128.974320px;}
.y81{bottom:130.680000px;}
.y18a{bottom:132.608160px;}
.y256{bottom:133.020000px;}
.y224{bottom:133.734240px;}
.y23e{bottom:135.534240px;}
.y2c3{bottom:135.534960px;}
.y28d{bottom:135.540000px;}
.y1da{bottom:136.248480px;}
.y201{bottom:136.253520px;}
.yd3{bottom:136.330560px;}
.y275{bottom:137.142720px;}
.y2a7{bottom:138.060000px;}
.y162{bottom:140.772960px;}
.y80{bottom:143.640000px;}
.y15{bottom:147.060000px;}
.y1b2{bottom:148.494240px;}
.yf8{bottom:148.993920px;}
.y116{bottom:149.928480px;}
.y140{bottom:149.964480px;}
.y43{bottom:152.380080px;}
.y189{bottom:156.013920px;}
.y255{bottom:156.414960px;}
.y223{bottom:158.034240px;}
.y28c{bottom:158.928480px;}
.y1d9{bottom:159.654240px;}
.y2c2{bottom:159.660000px;}
.yd2{bottom:159.736320px;}
.y200{bottom:159.834240px;}
.y274{bottom:161.442720px;}
.y2a6{bottom:161.448480px;}
.y161{bottom:164.178720px;}
.y14{bottom:165.060000px;}
.y7f{bottom:165.188160px;}
.yab{bottom:166.942080px;}
.y1b1{bottom:171.900000px;}
.yf7{bottom:172.399680px;}
.y115{bottom:173.334240px;}
.y13f{bottom:173.370240px;}
.y42{bottom:175.785840px;}
.y13{bottom:178.020000px;}
.y188{bottom:179.419680px;}
.y254{bottom:180.714960px;}
.y2df{bottom:181.440000px;}
.y222{bottom:182.334240px;}
.yd1{bottom:183.142080px;}
.y1ff{bottom:183.240000px;}
.y1d8{bottom:183.954240px;}
.y2c1{bottom:183.960000px;}
.y273{bottom:184.848480px;}
.y2a5{bottom:184.854240px;}
.y160{bottom:187.584480px;}
.y7e{bottom:188.593920px;}
.yaa{bottom:190.347840px;}
.y1b0{bottom:195.288480px;}
.yf6{bottom:195.805440px;}
.y114{bottom:196.740000px;}
.y13e{bottom:197.670240px;}
.y41{bottom:199.191600px;}
.y187{bottom:202.825440px;}
.y2de{bottom:204.834240px;}
.y253{bottom:204.840000px;}
.y221{bottom:205.740000px;}
.yd0{bottom:206.547840px;}
.y1fe{bottom:206.623440px;}
.y28b{bottom:206.634240px;}
.y23d{bottom:206.634960px;}
.y2c0{bottom:207.331200px;}
.y1d7{bottom:207.360000px;}
.y272{bottom:208.254240px;}
.y2a4{bottom:209.154240px;}
.y15f{bottom:210.990240px;}
.y7d{bottom:211.999680px;}
.ya9{bottom:213.753600px;}
.y1af{bottom:218.694240px;}
.yf5{bottom:219.211200px;}
.y113{bottom:220.500000px;}
.y13d{bottom:221.076000px;}
.y40{bottom:222.597360px;}
.y186{bottom:226.231200px;}
.y252{bottom:228.211920px;}
.y2dd{bottom:229.134240px;}
.y220{bottom:229.134960px;}
.ycf{bottom:229.953600px;}
.y1fd{bottom:230.029200px;}
.y28a{bottom:230.040000px;}
.y2bf{bottom:230.736960px;}
.y1d6{bottom:230.742720px;}
.y23c{bottom:230.760000px;}
.y271{bottom:231.660000px;}
.y2a3{bottom:232.560000px;}
.y15e{bottom:234.396000px;}
.y7c{bottom:235.405440px;}
.ya8{bottom:237.159360px;}
.y1ae{bottom:242.994240px;}
.yf4{bottom:243.511200px;}
.y13c{bottom:244.481760px;}
.y3f{bottom:246.003120px;}
.y185{bottom:249.636960px;}
.y251{bottom:251.617680px;}
.y2dc{bottom:252.540000px;}
.yce{bottom:253.359360px;}
.y289{bottom:253.429200px;}
.y21f{bottom:253.434960px;}
.y1d5{bottom:254.148480px;}
.y1fc{bottom:254.154240px;}
.y112{bottom:254.213280px;}
.y2be{bottom:255.036960px;}
.y23b{bottom:255.060000px;}
.y2a2{bottom:255.937680px;}
.y270{bottom:255.960000px;}
.y15d{bottom:257.801760px;}
.y7b{bottom:258.811200px;}
.ya7{bottom:260.565120px;}
.yf3{bottom:266.916960px;}
.y1ad{bottom:267.294240px;}
.y13b{bottom:267.887520px;}
.y3e{bottom:269.408880px;}
.y184{bottom:273.042720px;}
.y250{bottom:275.917680px;}
.y2db{bottom:275.934240px;}
.ycd{bottom:276.765120px;}
.y288{bottom:277.554240px;}
.y1fb{bottom:277.560000px;}
.y111{bottom:277.619040px;}
.y2bd{bottom:278.442720px;}
.y1d4{bottom:278.448480px;}
.y26f{bottom:279.343440px;}
.y15c{bottom:281.207520px;}
.y7a{bottom:282.216960px;}
.ya6{bottom:283.970880px;}
.y12{bottom:288.180000px;}
.yf2{bottom:290.322720px;}
.y1ac{bottom:290.700000px;}
.y13a{bottom:291.293280px;}
.y3d{bottom:293.708880px;}
.y183{bottom:296.448480px;}
.y24f{bottom:299.323440px;}
.y2da{bottom:299.340000px;}
.ycc{bottom:300.170880px;}
.y1fa{bottom:300.954240px;}
.y110{bottom:301.024800px;}
.y2bc{bottom:301.848480px;}
.y1d3{bottom:301.854240px;}
.y26e{bottom:302.749200px;}
.y2a1{bottom:303.468480px;}
.y15b{bottom:305.507520px;}
.y79{bottom:305.622720px;}
.ya5{bottom:307.376640px;}
.y11{bottom:312.300000px;}
.yf1{bottom:313.728480px;}
.y1ab{bottom:314.088480px;}
.y139{bottom:314.699040px;}
.y3c{bottom:317.833920px;}
.y182{bottom:319.854240px;}
.ycb{bottom:323.576640px;}
.y24e{bottom:323.623440px;}
.y2d9{bottom:323.640000px;}
.y1f9{bottom:324.360000px;}
.y10f{bottom:324.430560px;}
.y2bb{bottom:325.254240px;}
.y1d2{bottom:325.260000px;}
.y23a{bottom:326.154240px;}
.y26d{bottom:326.874240px;}
.y15a{bottom:328.913280px;}
.y78{bottom:329.028480px;}
.ya4{bottom:330.782400px;}
.yf0{bottom:337.134240px;}
.y1aa{bottom:337.494240px;}
.y10{bottom:337.680000px;}
.y138{bottom:338.104800px;}
.y3b{bottom:341.239680px;}
.y181{bottom:343.260000px;}
.yca{bottom:346.982400px;}
.y2d8{bottom:347.017680px;}
.y24d{bottom:347.748480px;}
.y10e{bottom:347.836320px;}
.y1d1{bottom:348.642720px;}
.y287{bottom:348.654960px;}
.y1f8{bottom:348.660000px;}
.y2ba{bottom:349.554240px;}
.y239{bottom:349.560000px;}
.y26c{bottom:350.280000px;}
.y159{bottom:352.319040px;}
.y77{bottom:352.434240px;}
.ya3{bottom:354.188160px;}
.yef{bottom:360.540000px;}
.y137{bottom:361.510560px;}
.y1a9{bottom:361.794240px;}
.y3a{bottom:364.645440px;}
.yf{bottom:366.480000px;}
.yc9{bottom:370.388160px;}
.y2d7{bottom:370.423440px;}
.y180{bottom:370.800000px;}
.y24c{bottom:371.154240px;}
.y10d{bottom:371.242080px;}
.y21e{bottom:372.043440px;}
.y1d0{bottom:372.048480px;}
.y238{bottom:372.943440px;}
.y286{bottom:372.954960px;}
.y1f7{bottom:372.960000px;}
.y2a0{bottom:373.662720px;}
.y26b{bottom:373.668480px;}
.y158{bottom:375.724800px;}
.y76{bottom:375.822720px;}
.ya2{bottom:377.593920px;}
.yee{bottom:383.580000px;}
.y136{bottom:384.916320px;}
.y1a8{bottom:385.200000px;}
.y39{bottom:388.051200px;}
.y17f{bottom:393.300000px;}
.yc8{bottom:393.793920px;}
.y2d6{bottom:394.548480px;}
.y10c{bottom:394.647840px;}
.y21d{bottom:395.449200px;}
.y24b{bottom:395.454240px;}
.ye{bottom:395.460000px;}
.y2b9{bottom:396.332640px;}
.y1cf{bottom:396.348480px;}
.y1f6{bottom:396.349200px;}
.y29f{bottom:397.068480px;}
.y26a{bottom:397.074240px;}
.y285{bottom:397.080000px;}
.y75{bottom:399.228480px;}
.y157{bottom:400.024800px;}
.ya1{bottom:400.999680px;}
.yed{bottom:405.180000px;}
.y135{bottom:408.322080px;}
.y1a7{bottom:408.589200px;}
.y38{bottom:411.456960px;}
.yc7{bottom:417.199680px;}
.y2d5{bottom:417.954240px;}
.y10b{bottom:418.053600px;}
.y17e{bottom:419.220000px;}
.y21c{bottom:419.749200px;}
.y1ce{bottom:419.754240px;}
.y1f5{bottom:419.754960px;}
.y284{bottom:420.456960px;}
.y2b8{bottom:420.457680px;}
.y237{bottom:420.474240px;}
.y29e{bottom:421.368480px;}
.y269{bottom:421.374240px;}
.y74{bottom:422.634240px;}
.y156{bottom:423.430560px;}
.ya0{bottom:424.405440px;}
.yec{bottom:426.780000px;}
.y134{bottom:431.727840px;}
.y1a6{bottom:432.714240px;}
.y37{bottom:434.862720px;}
.yc6{bottom:440.605440px;}
.y17d{bottom:440.820000px;}
.y2d4{bottom:441.360000px;}
.y10a{bottom:441.459360px;}
.y1cd{bottom:443.160000px;}
.y283{bottom:443.862720px;}
.y21b{bottom:443.874240px;}
.y1f4{bottom:443.880000px;}
.y2b7{bottom:444.757680px;}
.y29d{bottom:444.774240px;}
.y268{bottom:444.780000px;}
.y73{bottom:446.040000px;}
.y155{bottom:446.836320px;}
.y9f{bottom:447.811200px;}
.yeb{bottom:448.380000px;}
.y133{bottom:455.133600px;}
.y25{bottom:456.120000px;}
.y1a5{bottom:457.014240px;}
.y36{bottom:458.268480px;}
.y17c{bottom:462.420000px;}
.yc5{bottom:464.011200px;}
.y2d3{bottom:464.749200px;}
.y109{bottom:464.865120px;}
.y1cc{bottom:466.543440px;}
.y24a{bottom:466.554960px;}
.y1f3{bottom:467.256960px;}
.y236{bottom:467.274240px;}
.y21a{bottom:467.280000px;}
.y267{bottom:468.162720px;}
.y2b6{bottom:468.163440px;}
.y29c{bottom:468.180000px;}
.y72{bottom:468.720000px;}
.yea{bottom:470.224800px;}
.y154{bottom:470.242080px;}
.y9e{bottom:471.216960px;}
.y132{bottom:478.539360px;}
.y1a4{bottom:480.420000px;}
.y35{bottom:481.674240px;}
.y17b{bottom:484.020000px;}
.y24{bottom:486.720000px;}
.yc4{bottom:487.416960px;}
.y108{bottom:488.270880px;}
.y2d2{bottom:489.049200px;}
.y1cb{bottom:489.949200px;}
.y71{bottom:490.320000px;}
.y1f2{bottom:490.662720px;}
.y219{bottom:490.674240px;}
.y249{bottom:490.680000px;}
.y29b{bottom:491.540400px;}
.y266{bottom:491.568480px;}
.y2b5{bottom:491.569200px;}
.y235{bottom:491.574240px;}
.ye9{bottom:493.630560px;}
.y153{bottom:493.647840px;}
.y9d{bottom:494.622720px;}
.y131{bottom:501.945120px;}
.y1a3{bottom:503.814240px;}
.y34{bottom:505.080000px;}
.y175{bottom:505.620000px;}
.y23{bottom:508.320000px;}
.yc3{bottom:510.822720px;}
.y107{bottom:511.676640px;}
.y2d1{bottom:513.349200px;}
.y1ca{bottom:514.074240px;}
.y29a{bottom:514.946160px;}
.y1f1{bottom:514.962720px;}
.y218{bottom:514.974240px;}
.y248{bottom:514.980000px;}
.y265{bottom:515.868480px;}
.y2b4{bottom:515.869200px;}
.y234{bottom:515.874240px;}
.ye8{bottom:517.036320px;}
.y152{bottom:517.053600px;}
.y9c{bottom:518.028480px;}
.y70{bottom:518.391180px;}
.y130{bottom:525.350880px;}
.y17a{bottom:527.220000px;}
.y1a2{bottom:528.114240px;}
.y33{bottom:528.300000px;}
.y22{bottom:529.920000px;}
.yc2{bottom:534.228480px;}
.y106{bottom:535.082400px;}
.y2d0{bottom:536.754960px;}
.y1c9{bottom:537.480000px;}
.y1f0{bottom:538.368480px;}
.y247{bottom:538.369200px;}
.y282{bottom:538.380000px;}
.y299{bottom:539.246160px;}
.y217{bottom:539.274240px;}
.y233{bottom:539.280000px;}
.y2b3{bottom:539.994240px;}
.ye7{bottom:540.442080px;}
.y151{bottom:540.459360px;}
.y9b{bottom:541.434240px;}
.y6f{bottom:543.600000px;}
.y12f{bottom:548.756640px;}
.y179{bottom:548.820000px;}
.y21{bottom:551.520000px;}
.yc1{bottom:557.634240px;}
.y105{bottom:558.488160px;}
.y1c8{bottom:560.851920px;}
.y2cf{bottom:560.880000px;}
.y1ef{bottom:561.774240px;}
.y298{bottom:562.651920px;}
.y232{bottom:562.669200px;}
.y216{bottom:562.680000px;}
.y2b2{bottom:563.400000px;}
.ye6{bottom:563.847840px;}
.y150{bottom:563.865120px;}
.y9a{bottom:564.840000px;}
.y6e{bottom:568.318320px;}
.y178{bottom:570.420000px;}
.y12e{bottom:572.162400px;}
.y20{bottom:573.120000px;}
.y1a1{bottom:574.920000px;}
.y32{bottom:579.060000px;}
.yc0{bottom:581.040000px;}
.y104{bottom:581.893920px;}
.y1c7{bottom:584.257680px;}
.y1ee{bottom:585.180000px;}
.y297{bottom:586.057680px;}
.y281{bottom:586.068480px;}
.y215{bottom:586.074240px;}
.y231{bottom:586.074960px;}
.y264{bottom:586.082160px;}
.y246{bottom:586.794240px;}
.y2b1{bottom:586.800000px;}
.ye5{bottom:587.253600px;}
.y14f{bottom:587.270880px;}
.y99{bottom:587.880000px;}
.y6d{bottom:591.724080px;}
.y177{bottom:592.020000px;}
.y1f{bottom:594.720000px;}
.y12d{bottom:595.568160px;}
.y1a0{bottom:598.303440px;}
.y31{bottom:601.020000px;}
.ybf{bottom:604.800000px;}
.y103{bottom:605.299680px;}
.y1c6{bottom:608.557680px;}
.y1ed{bottom:608.574240px;}
.y296{bottom:609.463440px;}
.y280{bottom:609.474240px;}
.y98{bottom:609.480000px;}
.y263{bottom:609.487920px;}
.y214{bottom:610.199280px;}
.y230{bottom:610.200000px;}
.ye4{bottom:610.659360px;}
.y14e{bottom:610.676640px;}
.y176{bottom:613.620000px;}
.y6c{bottom:615.129840px;}
.y1e{bottom:616.320000px;}
.y12c{bottom:618.973920px;}
.y19f{bottom:621.709200px;}
.y102{bottom:628.705440px;}
.y97{bottom:631.080000px;}
.y174{bottom:631.800000px;}
.y1c5{bottom:631.963440px;}
.y1ec{bottom:631.980000px;}
.y295{bottom:632.869200px;}
.y2ce{bottom:632.874240px;}
.y245{bottom:633.763440px;}
.y27f{bottom:633.774240px;}
.y213{bottom:633.780000px;}
.y262{bottom:633.787920px;}
.ye3{bottom:634.065120px;}
.y14d{bottom:634.082400px;}
.y22f{bottom:634.500000px;}
.y30{bottom:634.860000px;}
.y1d{bottom:637.920000px;}
.y6b{bottom:638.535600px;}
.ybe{bottom:638.541360px;}
.y12b{bottom:642.379680px;}
.y19e{bottom:645.834240px;}
.y101{bottom:652.111200px;}
.y96{bottom:652.680000px;}
.y1c4{bottom:656.263440px;}
.y1eb{bottom:656.280000px;}
.y212{bottom:657.140400px;}
.y244{bottom:657.169200px;}
.y2cd{bottom:657.174240px;}
.y27e{bottom:657.180000px;}
.y2f{bottom:657.348480px;}
.ye2{bottom:657.470880px;}
.y14c{bottom:657.488160px;}
.y173{bottom:657.720000px;}
.y22e{bottom:657.876960px;}
.y2b0{bottom:658.800000px;}
.y1c{bottom:659.520000px;}
.y6a{bottom:661.941360px;}
.ybd{bottom:661.947120px;}
.y12a{bottom:665.785440px;}
.y19d{bottom:669.240000px;}
.y95{bottom:674.598960px;}
.y100{bottom:675.516960px;}
.y172{bottom:679.320000px;}
.y1ea{bottom:679.663440px;}
.y211{bottom:680.546160px;}
.y1c3{bottom:680.563440px;}
.y27d{bottom:680.569200px;}
.y2cc{bottom:680.580000px;}
.y2e{bottom:680.754240px;}
.ye1{bottom:680.876640px;}
.y14b{bottom:680.893920px;}
.y1b{bottom:681.120000px;}
.y243{bottom:681.294240px;}
.y22d{bottom:682.176960px;}
.y2af{bottom:682.188480px;}
.y69{bottom:685.347120px;}
.ybc{bottom:685.352880px;}
.y129{bottom:689.191200px;}
.y19c{bottom:692.640000px;}
.y94{bottom:698.179680px;}
.yff{bottom:698.922720px;}
.y16e{bottom:700.920000px;}
.y1a{bottom:702.720000px;}
.y1e9{bottom:703.963440px;}
.y1c2{bottom:703.969200px;}
.y2d{bottom:704.160000px;}
.ye0{bottom:704.282400px;}
.y14a{bottom:704.299680px;}
.y210{bottom:704.671200px;}
.y27c{bottom:704.694240px;}
.y242{bottom:704.700000px;}
.y22c{bottom:705.582720px;}
.y2ae{bottom:705.594240px;}
.y68{bottom:708.927840px;}
.ybb{bottom:708.933600px;}
.y128{bottom:712.596960px;}
.y19b{bottom:716.203440px;}
.y93{bottom:721.585440px;}
.yfe{bottom:722.328480px;}
.y16d{bottom:722.520000px;}
.y19{bottom:724.320000px;}
.y2cb{bottom:727.369200px;}
.ydf{bottom:727.688160px;}
.y149{bottom:727.705440px;}
.y20f{bottom:728.076960px;}
.y1e8{bottom:728.088480px;}
.y1c1{bottom:728.094240px;}
.y27b{bottom:728.100000px;}
.y2c{bottom:728.280000px;}
.y22b{bottom:728.988480px;}
.y2ad{bottom:729.894240px;}
.y67{bottom:732.333600px;}
.yba{bottom:732.339360px;}
.y127{bottom:736.002720px;}
.y19a{bottom:739.609200px;}
.y171{bottom:744.120000px;}
.y92{bottom:744.991200px;}
.yfd{bottom:745.734240px;}
.y2b{bottom:750.240000px;}
.yde{bottom:751.093920px;}
.y148{bottom:751.111200px;}
.y20e{bottom:751.482720px;}
.y1e7{bottom:751.494240px;}
.y261{bottom:751.500000px;}
.y1c0{bottom:752.394240px;}
.y2ac{bottom:753.300000px;}
.y66{bottom:755.739360px;}
.yb9{bottom:755.745120px;}
.y126{bottom:759.408480px;}
.y199{bottom:763.014960px;}
.y170{bottom:765.720000px;}
.y2a{bottom:767.700000px;}
.y91{bottom:768.396960px;}
.yfc{bottom:769.140000px;}
.ydd{bottom:774.499680px;}
.y147{bottom:774.516960px;}
.y20d{bottom:774.888480px;}
.y260{bottom:774.894240px;}
.y1e6{bottom:774.900000px;}
.y241{bottom:775.794240px;}
.y1bf{bottom:775.800000px;}
.y2ab{bottom:776.683440px;}
.y22a{bottom:776.694240px;}
.y53{bottom:778.860000px;}
.y65{bottom:779.145120px;}
.yb8{bottom:779.150880px;}
.y125{bottom:782.814240px;}
.y198{bottom:787.140000px;}
.y16f{bottom:787.320000px;}
.yd{bottom:791.460000px;}
.y90{bottom:791.802720px;}
.yfb{bottom:792.900000px;}
.ydc{bottom:797.905440px;}
.y146{bottom:797.922720px;}
.y20c{bottom:798.294240px;}
.y294{bottom:799.177680px;}
.y27a{bottom:799.188480px;}
.y1be{bottom:799.189200px;}
.y25f{bottom:799.194240px;}
.y1e5{bottom:799.200000px;}
.y2aa{bottom:800.089200px;}
.y240{bottom:800.094240px;}
.y229{bottom:800.100000px;}
.y64{bottom:802.550880px;}
.yb7{bottom:802.556640px;}
.y16c{bottom:805.320000px;}
.y124{bottom:806.220000px;}
.y197{bottom:811.620000px;}
.yc{bottom:813.060000px;}
.y52{bottom:814.500000px;}
.y8f{bottom:815.208480px;}
.ydb{bottom:821.311200px;}
.y145{bottom:821.328480px;}
.y293{bottom:822.583440px;}
.y2ca{bottom:822.588480px;}
.y20b{bottom:822.594240px;}
.y228{bottom:823.483440px;}
.y1bd{bottom:823.489200px;}
.y25e{bottom:823.494240px;}
.y1e4{bottom:823.500000px;}
.y2a9{bottom:824.214240px;}
.y63{bottom:825.956640px;}
.yb6{bottom:825.962400px;}
.yfa{bottom:826.681680px;}
.y123{bottom:829.260000px;}
.y16b{bottom:831.240000px;}
.yb{bottom:833.580000px;}
.y51{bottom:836.100000px;}
.y8e{bottom:838.614240px;}
.y196{bottom:839.322720px;}
.yda{bottom:844.716960px;}
.y144{bottom:844.734240px;}
.y2c9{bottom:845.994240px;}
.y279{bottom:846.000000px;}
.y292{bottom:846.883440px;}
.y1e3{bottom:846.889200px;}
.y20a{bottom:846.894240px;}
.y25d{bottom:846.900000px;}
.y1bc{bottom:847.614240px;}
.y2a8{bottom:847.620000px;}
.y62{bottom:849.362400px;}
.yb5{bottom:850.087440px;}
.y122{bottom:850.860000px;}
.ya{bottom:851.208120px;}
.y168{bottom:852.840000px;}
.y50{bottom:857.700000px;}
.y8d{bottom:862.020000px;}
.y195{bottom:862.728480px;}
.yd9{bottom:868.122720px;}
.y143{bottom:868.140000px;}
.y278{bottom:869.394960px;}
.y25c{bottom:870.266160px;}
.y2c8{bottom:870.294240px;}
.y209{bottom:870.300000px;}
.y291{bottom:871.008480px;}
.y1e2{bottom:871.014240px;}
.y1bb{bottom:871.020000px;}
.y121{bottom:872.460000px;}
.y61{bottom:872.768160px;}
.yb4{bottom:873.493200px;}
.y16a{bottom:874.440000px;}
.y4f{bottom:879.300000px;}
.y9{bottom:880.007940px;}
.y8c{bottom:885.780000px;}
.y194{bottom:886.134240px;}
.yd8{bottom:891.528480px;}
.y142{bottom:892.620000px;}
.y25b{bottom:893.671920px;}
.y208{bottom:893.677680px;}
.y277{bottom:893.694960px;}
.y2c7{bottom:893.700000px;}
.y120{bottom:894.385440px;}
.y290{bottom:894.414240px;}
.y1ba{bottom:894.420000px;}
.y1e1{bottom:895.314240px;}
.y169{bottom:896.040000px;}
.y60{bottom:896.173920px;}
.yb3{bottom:896.898960px;}
.y4e{bottom:900.900000px;}
.y193{bottom:909.540000px;}
.y8{bottom:913.497660px;}
.y166{bottom:914.040000px;}
.yd7{bottom:914.934240px;}
.y207{bottom:917.083440px;}
.y2c6{bottom:917.089200px;}
.y11f{bottom:917.791200px;}
.y25a{bottom:917.796960px;}
.y1b9{bottom:917.808480px;}
.y227{bottom:917.820000px;}
.y2e3{bottom:918.708480px;}
.y28f{bottom:918.714240px;}
.y1e0{bottom:918.720000px;}
.y5f{bottom:919.579680px;}
.y8b{bottom:919.585440px;}
.yb2{bottom:920.304720px;}
.y4d{bottom:922.500000px;}
.y192{bottom:934.020000px;}
.yd6{bottom:938.340000px;}
.y2c5{bottom:940.494960px;}
.y11e{bottom:941.196960px;}
.y259{bottom:941.202720px;}
.y206{bottom:941.208480px;}
.y1b8{bottom:941.214240px;}
.y1df{bottom:942.108480px;}
.y2e2{bottom:942.114240px;}
.y28e{bottom:942.120000px;}
.y5e{bottom:942.985440px;}
.y8a{bottom:942.991200px;}
.yb1{bottom:943.710480px;}
.y4c{bottom:944.100000px;}
.y165{bottom:945.180000px;}
.y7{bottom:946.080000px;}
.y191{bottom:961.716960px;}
.yd5{bottom:962.820000px;}
.y11d{bottom:964.602720px;}
.y258{bottom:964.608480px;}
.y205{bottom:964.614240px;}
.y226{bottom:964.620000px;}
.y1b7{bottom:965.514240px;}
.y4b{bottom:965.700000px;}
.y5d{bottom:966.391200px;}
.y89{bottom:966.396960px;}
.y2e1{bottom:966.414240px;}
.yb0{bottom:967.116240px;}
.y190{bottom:985.122720px;}
.y4a{bottom:987.300000px;}
.y11c{bottom:988.008480px;}
.y204{bottom:988.020000px;}
.y257{bottom:988.908480px;}
.y1b6{bottom:988.920000px;}
.y5c{bottom:989.796960px;}
.y88{bottom:989.802720px;}
.y1de{bottom:989.814240px;}
.y2e0{bottom:989.820000px;}
.yaf{bottom:990.522000px;}
.y6{bottom:1005.480000px;}
.y18f{bottom:1008.528480px;}
.y49{bottom:1008.900000px;}
.y11b{bottom:1011.414240px;}
.y1b5{bottom:1012.314240px;}
.y203{bottom:1012.320000px;}
.y5b{bottom:1013.202720px;}
.y87{bottom:1013.208480px;}
.y1dd{bottom:1013.220000px;}
.yae{bottom:1013.927760px;}
.y5{bottom:1022.940000px;}
.y48{bottom:1030.500000px;}
.y18e{bottom:1031.934240px;}
.y11a{bottom:1035.714240px;}
.y1b4{bottom:1035.720000px;}
.y5a{bottom:1036.608480px;}
.y1dc{bottom:1036.614240px;}
.y202{bottom:1036.620000px;}
.y86{bottom:1037.333520px;}
.y47{bottom:1052.100000px;}
.y18d{bottom:1055.340000px;}
.y119{bottom:1059.120000px;}
.y59{bottom:1060.014240px;}
.y1b3{bottom:1060.020000px;}
.y85{bottom:1060.739280px;}
.y3{bottom:1067.940000px;}
.y46{bottom:1073.700000px;}
.y18c{bottom:1080.000000px;}
.y58{bottom:1083.420000px;}
.y84{bottom:1084.320000px;}
.y1{bottom:1129.860000px;}
.y26{bottom:1134.000000px;}
.h19{height:21.600000px;}
.h3{height:29.700000px;}
.hd{height:30.761719px;}
.he{height:35.991211px;}
.h2{height:41.220703px;}
.h1{height:44.149219px;}
.ha{height:46.142578px;}
.h5{height:46.368000px;}
.h16{height:47.157187px;}
.h12{height:50.400000px;}
.hf{height:51.064453px;}
.h6{height:51.257812px;}
.h1d{height:55.358438px;}
.h10{height:56.601562px;}
.h11{height:59.971641px;}
.hc{height:61.523438px;}
.h4{height:63.824414px;}
.h13{height:65.572031px;}
.hb{height:65.923594px;}
.h14{height:66.445312px;}
.h1e{height:67.584375px;}
.h7{height:68.172891px;}
.h17{height:74.409823px;}
.h18{height:74.732383px;}
.h9{height:80.750742px;}
.h8{height:81.835532px;}
.h1a{height:108.000000px;}
.h1b{height:172.800000px;}
.h1c{height:237.600000px;}
.h15{height:313.020000px;}
.h0{height:1188.000000px;}
.w2{width:30.960000px;}
.w4{width:32.040000px;}
.w1{width:32.220000px;}
.w5{width:119.340000px;}
.w6{width:289.081500px;}
.w9{width:297.540000px;}
.w7{width:297.720000px;}
.w8{width:297.721500px;}
.w3{width:736.920000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.xa{left:10.800000px;}
.x1{left:84.960000px;}
.x14{left:86.940000px;}
.x9{left:90.720000px;}
.x5{left:101.520000px;}
.x15{left:109.800000px;}
.xe{left:138.960000px;}
.x12{left:221.040000px;}
.x16{left:229.140000px;}
.x10{left:246.600000px;}
.x4{left:300.960000px;}
.x19{left:389.520000px;}
.x13{left:510.120000px;}
.x18{left:518.760000px;}
.x17{left:526.860000px;}
.x8{left:656.280000px;}
.xb{left:711.180000px;}
.x2{left:833.400000px;}
.x3{left:845.100000px;}
.xc{left:884.520000px;}
.x6{left:887.040000px;}
.xd{left:894.960000px;}
.x7{left:897.480000px;}
.x1a{left:905.580000px;}
.xf{left:908.100000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.501440pt;}
.v1{vertical-align:34.568320pt;}
.ls1b{letter-spacing:-1.536000pt;}
.ls1d{letter-spacing:-1.472000pt;}
.ls1c{letter-spacing:-1.216000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls43{letter-spacing:-0.898560pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls3c{letter-spacing:-0.829440pt;}
.ls9{letter-spacing:-0.814720pt;}
.ls39{letter-spacing:-0.771840pt;}
.ls42{letter-spacing:-0.691200pt;}
.ls8{letter-spacing:-0.686080pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.622080pt;}
.ls2e{letter-spacing:-0.576000pt;}
.ls4b{letter-spacing:-0.483840pt;}
.ls3b{letter-spacing:-0.449280pt;}
.ls3e{letter-spacing:-0.345600pt;}
.lsb{letter-spacing:-0.300160pt;}
.ls2c{letter-spacing:-0.276480pt;}
.ls19{letter-spacing:-0.265600pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.255360pt;}
.ls4d{letter-spacing:-0.224640pt;}
.ls29{letter-spacing:-0.207360pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.170240pt;}
.ls44{letter-spacing:-0.149760pt;}
.ls27{letter-spacing:-0.138240pt;}
.ls25{letter-spacing:-0.128640pt;}
.ls55{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.106240pt;}
.ls4a{letter-spacing:-0.069120pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.006912pt;}
.ls4{letter-spacing:0.053120pt;}
.ls15{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.069120pt;}
.ls45{letter-spacing:0.074880pt;}
.ls59{letter-spacing:0.082944pt;}
.ls2a{letter-spacing:0.085120pt;}
.ls1f{letter-spacing:0.085760pt;}
.ls61{letter-spacing:0.103680pt;}
.ls17{letter-spacing:0.106240pt;}
.ls36{letter-spacing:0.117504pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5d{letter-spacing:0.131328pt;}
.ls21{letter-spacing:0.138240pt;}
.ls5f{letter-spacing:0.145152pt;}
.ls4c{letter-spacing:0.158976pt;}
.ls3{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.170240pt;}
.ls60{letter-spacing:0.172800pt;}
.ls48{letter-spacing:0.179712pt;}
.ls20{letter-spacing:0.186624pt;}
.ls12{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.207360pt;}
.ls7{letter-spacing:0.214400pt;}
.ls2{letter-spacing:0.224000pt;}
.ls3f{letter-spacing:0.255744pt;}
.lsd{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.262656pt;}
.ls38{letter-spacing:0.265600pt;}
.ls26{letter-spacing:0.276480pt;}
.ls52{letter-spacing:0.283392pt;}
.ls0{letter-spacing:0.290560pt;}
.ls64{letter-spacing:0.297216pt;}
.ls54{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.300160pt;}
.ls53{letter-spacing:0.304128pt;}
.ls5{letter-spacing:0.318720pt;}
.ls14{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.343040pt;}
.ls2b{letter-spacing:0.345600pt;}
.ls5c{letter-spacing:0.435456pt;}
.ls24{letter-spacing:0.448000pt;}
.ls5a{letter-spacing:0.483840pt;}
.ls58{letter-spacing:0.622080pt;}
.ls22{letter-spacing:0.767232pt;}
.ls3a{letter-spacing:0.829440pt;}
.ls65{letter-spacing:0.946944pt;}
.ls41{letter-spacing:1.859328pt;}
.ls62{letter-spacing:2.557440pt;}
.ls63{letter-spacing:3.179520pt;}
.ls4f{letter-spacing:3.822336pt;}
.ls50{letter-spacing:3.840000pt;}
.ls4e{letter-spacing:3.870720pt;}
.ls35{letter-spacing:5.114880pt;}
.ls37{letter-spacing:5.258880pt;}
.ls5b{letter-spacing:5.736960pt;}
.ls1{letter-spacing:5.760000pt;}
.ls49{letter-spacing:6.289920pt;}
.ls23{letter-spacing:6.400000pt;}
.ls5e{letter-spacing:9.607680pt;}
.ls34{letter-spacing:12.787200pt;}
.ls32{letter-spacing:14.722560pt;}
.ls46{letter-spacing:21.102336pt;}
.ls31{letter-spacing:25.574400pt;}
.ls56{letter-spacing:171.486720pt;}
.ls51{letter-spacing:750.712320pt;}
.ws30{word-spacing:-21.365120pt;}
.ws2f{word-spacing:-21.280000pt;}
.wsd9{word-spacing:-21.109760pt;}
.wsaf{word-spacing:-18.720000pt;}
.wsb0{word-spacing:-18.270720pt;}
.wsef{word-spacing:-17.902080pt;}
.ws116{word-spacing:-17.763840pt;}
.ws64{word-spacing:-17.625600pt;}
.wsca{word-spacing:-17.556480pt;}
.ws62{word-spacing:-17.487360pt;}
.wsda{word-spacing:-17.418240pt;}
.ws108{word-spacing:-17.349120pt;}
.ws7d{word-spacing:-17.280000pt;}
.wse5{word-spacing:-17.210880pt;}
.wsc0{word-spacing:-17.141760pt;}
.ws31{word-spacing:-17.072640pt;}
.ws63{word-spacing:-17.003520pt;}
.ws96{word-spacing:-16.934400pt;}
.ws94{word-spacing:-16.588800pt;}
.ws95{word-spacing:-16.381440pt;}
.ws7{word-spacing:-16.320000pt;}
.wsd3{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws32{word-spacing:-15.360000pt;}
.wsd{word-spacing:-14.848000pt;}
.wse{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.439360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws7e{word-spacing:-13.226880pt;}
.wsa{word-spacing:-13.173760pt;}
.wsb{word-spacing:-13.014400pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2e{word-spacing:-10.591360pt;}
.ws0{word-spacing:-10.419840pt;}
.ws61{word-spacing:-9.948160pt;}
.ws8{word-spacing:-8.000000pt;}
.ws4c{word-spacing:-4.838400pt;}
.ws4d{word-spacing:-4.354560pt;}
.ws78{word-spacing:-4.216320pt;}
.ws4e{word-spacing:-4.147200pt;}
.wse9{word-spacing:-4.078080pt;}
.ws89{word-spacing:-3.870720pt;}
.ws106{word-spacing:-3.801600pt;}
.wse8{word-spacing:-3.732480pt;}
.wsc2{word-spacing:-3.663360pt;}
.wsa4{word-spacing:-3.594240pt;}
.ws74{word-spacing:-3.525120pt;}
.wsdd{word-spacing:-3.386880pt;}
.wsa7{word-spacing:-3.179520pt;}
.ws10a{word-spacing:-3.041280pt;}
.wsdc{word-spacing:-2.972160pt;}
.ws55{word-spacing:-2.944000pt;}
.ws8e{word-spacing:-2.903040pt;}
.wsb6{word-spacing:-2.833920pt;}
.ws113{word-spacing:-2.764800pt;}
.ws114{word-spacing:-2.557440pt;}
.ws91{word-spacing:-2.496640pt;}
.ws115{word-spacing:-2.488320pt;}
.wse6{word-spacing:-2.419200pt;}
.ws8d{word-spacing:-2.368000pt;}
.ws8f{word-spacing:-2.350080pt;}
.ws93{word-spacing:-2.337280pt;}
.ws58{word-spacing:-2.304000pt;}
.ws92{word-spacing:-2.284160pt;}
.ws50{word-spacing:-2.280960pt;}
.wsff{word-spacing:-2.142720pt;}
.ws127{word-spacing:-1.935360pt;}
.ws100{word-spacing:-1.797120pt;}
.ws99{word-spacing:-1.658880pt;}
.ws4a{word-spacing:-1.589760pt;}
.ws4b{word-spacing:-1.451520pt;}
.ws98{word-spacing:-1.105920pt;}
.ws3f{word-spacing:-0.967680pt;}
.wscc{word-spacing:-0.898560pt;}
.ws40{word-spacing:-0.829440pt;}
.ws35{word-spacing:-0.814720pt;}
.ws26{word-spacing:-0.704000pt;}
.ws33{word-spacing:-0.686080pt;}
.wsa9{word-spacing:-0.622080pt;}
.wsf6{word-spacing:-0.483840pt;}
.ws36{word-spacing:-0.471680pt;}
.ws73{word-spacing:-0.414720pt;}
.ws49{word-spacing:-0.345600pt;}
.ws13{word-spacing:-0.343040pt;}
.ws16{word-spacing:-0.340480pt;}
.wsd4{word-spacing:-0.299520pt;}
.ws8b{word-spacing:-0.276480pt;}
.ws15{word-spacing:-0.256000pt;}
.wsa0{word-spacing:-0.224640pt;}
.ws3a{word-spacing:-0.207360pt;}
.ws17{word-spacing:-0.170240pt;}
.ws21{word-spacing:-0.159360pt;}
.wsfa{word-spacing:-0.138240pt;}
.wsd7{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws10{word-spacing:-0.042880pt;}
.wsf{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.053120pt;}
.ws1c{word-spacing:0.064000pt;}
.wsbc{word-spacing:0.069120pt;}
.wsd6{word-spacing:0.128000pt;}
.wsd1{word-spacing:0.138240pt;}
.ws9f{word-spacing:0.149760pt;}
.ws34{word-spacing:0.171520pt;}
.ws19{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.207360pt;}
.ws1e{word-spacing:0.212480pt;}
.ws11{word-spacing:0.214400pt;}
.wsb5{word-spacing:0.224640pt;}
.wsdb{word-spacing:0.255360pt;}
.ws18{word-spacing:0.256000pt;}
.ws20{word-spacing:0.265600pt;}
.ws70{word-spacing:0.276480pt;}
.ws85{word-spacing:0.299520pt;}
.ws12{word-spacing:0.343040pt;}
.ws9e{word-spacing:0.345600pt;}
.wsfb{word-spacing:0.414720pt;}
.ws14{word-spacing:0.471680pt;}
.wsae{word-spacing:0.483840pt;}
.wscb{word-spacing:0.510720pt;}
.ws60{word-spacing:0.512000pt;}
.ws54{word-spacing:0.576000pt;}
.ws3c{word-spacing:0.622080pt;}
.ws72{word-spacing:0.680960pt;}
.wsde{word-spacing:0.760320pt;}
.ws9d{word-spacing:0.829440pt;}
.wsd5{word-spacing:0.896000pt;}
.ws9a{word-spacing:0.898560pt;}
.ws6b{word-spacing:0.967680pt;}
.ws75{word-spacing:1.313280pt;}
.ws112{word-spacing:1.382400pt;}
.ws103{word-spacing:1.451520pt;}
.ws23{word-spacing:1.472000pt;}
.ws3e{word-spacing:1.589760pt;}
.ws37{word-spacing:1.658880pt;}
.ws39{word-spacing:1.728000pt;}
.ws2c{word-spacing:1.856000pt;}
.wsa6{word-spacing:1.935360pt;}
.ws38{word-spacing:2.073600pt;}
.wsc8{word-spacing:2.142720pt;}
.ws7f{word-spacing:2.211840pt;}
.ws43{word-spacing:2.350080pt;}
.ws42{word-spacing:2.557440pt;}
.ws107{word-spacing:2.695680pt;}
.ws2d{word-spacing:2.752000pt;}
.wsa1{word-spacing:2.764800pt;}
.ws45{word-spacing:2.833920pt;}
.wsf1{word-spacing:2.903040pt;}
.ws11b{word-spacing:2.972160pt;}
.ws5d{word-spacing:3.136000pt;}
.wsb7{word-spacing:3.179520pt;}
.ws7c{word-spacing:3.240320pt;}
.ws124{word-spacing:3.248640pt;}
.ws44{word-spacing:3.317760pt;}
.wsa3{word-spacing:3.386880pt;}
.ws97{word-spacing:3.456000pt;}
.ws69{word-spacing:3.525120pt;}
.wsb9{word-spacing:3.663360pt;}
.wsc3{word-spacing:3.776000pt;}
.wsc1{word-spacing:3.870720pt;}
.wsfc{word-spacing:4.008960pt;}
.ws90{word-spacing:4.078080pt;}
.wsaa{word-spacing:4.096000pt;}
.ws9c{word-spacing:4.147200pt;}
.wsa5{word-spacing:4.285440pt;}
.ws12c{word-spacing:4.492800pt;}
.ws9b{word-spacing:4.561920pt;}
.wsf2{word-spacing:4.631040pt;}
.wsa2{word-spacing:4.700160pt;}
.ws6d{word-spacing:4.769280pt;}
.wse1{word-spacing:4.907520pt;}
.wsf3{word-spacing:4.976640pt;}
.ws110{word-spacing:5.114880pt;}
.ws111{word-spacing:5.184000pt;}
.ws7b{word-spacing:5.205760pt;}
.ws10f{word-spacing:5.253120pt;}
.wsd0{word-spacing:5.322240pt;}
.ws79{word-spacing:5.365120pt;}
.ws86{word-spacing:5.391360pt;}
.ws8a{word-spacing:5.460480pt;}
.ws7a{word-spacing:5.524480pt;}
.ws102{word-spacing:5.529600pt;}
.ws101{word-spacing:5.736960pt;}
.ws119{word-spacing:5.944320pt;}
.ws1b{word-spacing:5.952000pt;}
.wsc6{word-spacing:6.013440pt;}
.ws1a{word-spacing:6.016000pt;}
.ws52{word-spacing:6.082560pt;}
.ws81{word-spacing:6.220800pt;}
.ws80{word-spacing:6.428160pt;}
.wscf{word-spacing:6.566400pt;}
.wsc5{word-spacing:6.635520pt;}
.ws41{word-spacing:6.704640pt;}
.wsdf{word-spacing:6.773760pt;}
.ws8c{word-spacing:6.976000pt;}
.wse0{word-spacing:7.050240pt;}
.ws123{word-spacing:7.188480pt;}
.ws11c{word-spacing:7.257600pt;}
.ws53{word-spacing:7.296000pt;}
.ws4f{word-spacing:7.326720pt;}
.wsc9{word-spacing:7.464960pt;}
.ws5e{word-spacing:7.616000pt;}
.ws122{word-spacing:7.810560pt;}
.ws5f{word-spacing:7.936000pt;}
.ws3d{word-spacing:7.948800pt;}
.wsec{word-spacing:8.087040pt;}
.ws126{word-spacing:8.294400pt;}
.ws11a{word-spacing:8.432640pt;}
.ws88{word-spacing:8.501760pt;}
.ws24{word-spacing:8.576000pt;}
.ws67{word-spacing:8.640000pt;}
.ws12b{word-spacing:8.847360pt;}
.ws2a{word-spacing:8.896000pt;}
.wse4{word-spacing:9.123840pt;}
.ws27{word-spacing:9.216000pt;}
.ws48{word-spacing:9.262080pt;}
.ws59{word-spacing:9.536000pt;}
.wsd8{word-spacing:9.607680pt;}
.ws12d{word-spacing:9.745920pt;}
.ws29{word-spacing:9.856000pt;}
.ws6e{word-spacing:9.884160pt;}
.ws10e{word-spacing:10.022400pt;}
.ws25{word-spacing:10.176000pt;}
.wsad{word-spacing:10.506240pt;}
.ws11f{word-spacing:10.990080pt;}
.ws87{word-spacing:11.128320pt;}
.ws82{word-spacing:11.197440pt;}
.ws83{word-spacing:11.335680pt;}
.ws5c{word-spacing:11.456000pt;}
.ws77{word-spacing:11.543040pt;}
.ws76{word-spacing:11.681280pt;}
.ws84{word-spacing:11.819520pt;}
.wsba{word-spacing:11.957760pt;}
.wsb8{word-spacing:12.165120pt;}
.wsc4{word-spacing:12.372480pt;}
.ws51{word-spacing:12.441600pt;}
.ws129{word-spacing:12.579840pt;}
.ws6f{word-spacing:12.787200pt;}
.ws128{word-spacing:12.925440pt;}
.ws68{word-spacing:12.994560pt;}
.ws6a{word-spacing:13.063680pt;}
.wsf4{word-spacing:13.201920pt;}
.ws5b{word-spacing:13.376000pt;}
.ws12f{word-spacing:13.409280pt;}
.wsf5{word-spacing:13.478400pt;}
.wsf0{word-spacing:13.547520pt;}
.wsb4{word-spacing:13.616640pt;}
.wsb3{word-spacing:13.685760pt;}
.ws5a{word-spacing:13.696000pt;}
.wsbd{word-spacing:13.754880pt;}
.ws66{word-spacing:14.376960pt;}
.ws46{word-spacing:14.515200pt;}
.ws47{word-spacing:14.999040pt;}
.wsfe{word-spacing:15.137280pt;}
.ws2b{word-spacing:15.296000pt;}
.wsfd{word-spacing:15.621120pt;}
.wseb{word-spacing:15.690240pt;}
.ws6c{word-spacing:16.312320pt;}
.ws22{word-spacing:16.576000pt;}
.ws118{word-spacing:16.796160pt;}
.ws117{word-spacing:16.934400pt;}
.ws11d{word-spacing:17.141760pt;}
.ws11e{word-spacing:17.280000pt;}
.wsce{word-spacing:17.556480pt;}
.wscd{word-spacing:17.625600pt;}
.wsbb{word-spacing:17.902080pt;}
.ws28{word-spacing:18.176000pt;}
.wsb1{word-spacing:18.178560pt;}
.ws71{word-spacing:18.247680pt;}
.ws120{word-spacing:18.731520pt;}
.ws57{word-spacing:18.752000pt;}
.wsb2{word-spacing:18.800640pt;}
.ws56{word-spacing:18.816000pt;}
.wsed{word-spacing:19.699200pt;}
.wsee{word-spacing:19.837440pt;}
.wsc7{word-spacing:20.113920pt;}
.ws10d{word-spacing:20.252160pt;}
.wsa8{word-spacing:20.805120pt;}
.wsac{word-spacing:21.219840pt;}
.wsea{word-spacing:21.288960pt;}
.wsab{word-spacing:21.376000pt;}
.wsf7{word-spacing:21.427200pt;}
.wse2{word-spacing:21.565440pt;}
.wse3{word-spacing:21.772800pt;}
.wsf8{word-spacing:21.911040pt;}
.wsbf{word-spacing:22.049280pt;}
.ws12a{word-spacing:23.362560pt;}
.ws10c{word-spacing:23.984640pt;}
.ws109{word-spacing:24.606720pt;}
.ws65{word-spacing:25.228800pt;}
.wsbe{word-spacing:26.542080pt;}
.wse7{word-spacing:26.887680pt;}
.ws12e{word-spacing:29.099520pt;}
.ws10b{word-spacing:29.721600pt;}
.ws121{word-spacing:32.279040pt;}
.wsf9{word-spacing:56.954880pt;}
.ws104{word-spacing:84.119040pt;}
.ws105{word-spacing:84.464640pt;}
.ws125{word-spacing:240.675840pt;}
._a{margin-left:-16.926016pt;}
._9{margin-left:-4.542720pt;}
._7{margin-left:-3.171136pt;}
._0{margin-left:-1.616576pt;}
._1{width:0.981952pt;}
._2{width:1.916736pt;}
._8{width:2.828160pt;}
._3{width:3.994560pt;}
._4{width:5.972096pt;}
._f{width:7.097792pt;}
._14{width:9.629504pt;}
._6{width:11.711936pt;}
._5{width:13.253824pt;}
._e{width:20.071616pt;}
._b{width:20.970176pt;}
._12{width:23.922688pt;}
._d{width:27.598592pt;}
._10{width:57.601024pt;}
._11{width:84.526656pt;}
._c{width:171.486720pt;}
._13{width:241.145408pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y167{bottom:3.840000pt;}
.y4{bottom:4.000000pt;}
.y54{bottom:4.480000pt;}
.y28{bottom:6.400000pt;}
.y56{bottom:23.040000pt;}
.y27{bottom:24.480000pt;}
.y57{bottom:29.440000pt;}
.y29{bottom:30.880000pt;}
.y55{bottom:32.800000pt;}
.y2{bottom:34.560000pt;}
.y83{bottom:78.875200pt;}
.y18{bottom:78.877600pt;}
.y164{bottom:82.881920pt;}
.y118{bottom:91.659520pt;}
.y45{bottom:93.838720pt;}
.y82{bottom:94.877600pt;}
.y17{bottom:94.880000pt;}
.y18b{bottom:97.068800pt;}
.y225{bottom:98.069760pt;}
.y23f{bottom:98.874880pt;}
.yd4{bottom:99.582720pt;}
.y2c4{bottom:99.670400pt;}
.yad{bottom:100.160000pt;}
.y276{bottom:100.304640pt;}
.y1db{bottom:100.320000pt;}
.y163{bottom:104.326400pt;}
.y16{bottom:110.880000pt;}
.yf9{bottom:111.633920pt;}
.yac{bottom:111.680000pt;}
.y117{bottom:112.464640pt;}
.y141{bottom:112.496640pt;}
.y44{bottom:114.643840pt;}
.y81{bottom:116.160000pt;}
.y18a{bottom:117.873920pt;}
.y256{bottom:118.240000pt;}
.y224{bottom:118.874880pt;}
.y23e{bottom:120.474880pt;}
.y2c3{bottom:120.475520pt;}
.y28d{bottom:120.480000pt;}
.y1da{bottom:121.109760pt;}
.y201{bottom:121.114240pt;}
.yd3{bottom:121.182720pt;}
.y275{bottom:121.904640pt;}
.y2a7{bottom:122.720000pt;}
.y162{bottom:125.131520pt;}
.y80{bottom:127.680000pt;}
.y15{bottom:130.720000pt;}
.y1b2{bottom:131.994880pt;}
.yf8{bottom:132.439040pt;}
.y116{bottom:133.269760pt;}
.y140{bottom:133.301760pt;}
.y43{bottom:135.448960pt;}
.y189{bottom:138.679040pt;}
.y255{bottom:139.035520pt;}
.y223{bottom:140.474880pt;}
.y28c{bottom:141.269760pt;}
.y1d9{bottom:141.914880pt;}
.y2c2{bottom:141.920000pt;}
.yd2{bottom:141.987840pt;}
.y200{bottom:142.074880pt;}
.y274{bottom:143.504640pt;}
.y2a6{bottom:143.509760pt;}
.y161{bottom:145.936640pt;}
.y14{bottom:146.720000pt;}
.y7f{bottom:146.833920pt;}
.yab{bottom:148.392960pt;}
.y1b1{bottom:152.800000pt;}
.yf7{bottom:153.244160pt;}
.y115{bottom:154.074880pt;}
.y13f{bottom:154.106880pt;}
.y42{bottom:156.254080pt;}
.y13{bottom:158.240000pt;}
.y188{bottom:159.484160pt;}
.y254{bottom:160.635520pt;}
.y2df{bottom:161.280000pt;}
.y222{bottom:162.074880pt;}
.yd1{bottom:162.792960pt;}
.y1ff{bottom:162.880000pt;}
.y1d8{bottom:163.514880pt;}
.y2c1{bottom:163.520000pt;}
.y273{bottom:164.309760pt;}
.y2a5{bottom:164.314880pt;}
.y160{bottom:166.741760pt;}
.y7e{bottom:167.639040pt;}
.yaa{bottom:169.198080pt;}
.y1b0{bottom:173.589760pt;}
.yf6{bottom:174.049280pt;}
.y114{bottom:174.880000pt;}
.y13e{bottom:175.706880pt;}
.y41{bottom:177.059200pt;}
.y187{bottom:180.289280pt;}
.y2de{bottom:182.074880pt;}
.y253{bottom:182.080000pt;}
.y221{bottom:182.880000pt;}
.yd0{bottom:183.598080pt;}
.y1fe{bottom:183.665280pt;}
.y28b{bottom:183.674880pt;}
.y23d{bottom:183.675520pt;}
.y2c0{bottom:184.294400pt;}
.y1d7{bottom:184.320000pt;}
.y272{bottom:185.114880pt;}
.y2a4{bottom:185.914880pt;}
.y15f{bottom:187.546880pt;}
.y7d{bottom:188.444160pt;}
.ya9{bottom:190.003200pt;}
.y1af{bottom:194.394880pt;}
.yf5{bottom:194.854400pt;}
.y113{bottom:196.000000pt;}
.y13d{bottom:196.512000pt;}
.y40{bottom:197.864320pt;}
.y186{bottom:201.094400pt;}
.y252{bottom:202.855040pt;}
.y2dd{bottom:203.674880pt;}
.y220{bottom:203.675520pt;}
.ycf{bottom:204.403200pt;}
.y1fd{bottom:204.470400pt;}
.y28a{bottom:204.480000pt;}
.y2bf{bottom:205.099520pt;}
.y1d6{bottom:205.104640pt;}
.y23c{bottom:205.120000pt;}
.y271{bottom:205.920000pt;}
.y2a3{bottom:206.720000pt;}
.y15e{bottom:208.352000pt;}
.y7c{bottom:209.249280pt;}
.ya8{bottom:210.808320pt;}
.y1ae{bottom:215.994880pt;}
.yf4{bottom:216.454400pt;}
.y13c{bottom:217.317120pt;}
.y3f{bottom:218.669440pt;}
.y185{bottom:221.899520pt;}
.y251{bottom:223.660160pt;}
.y2dc{bottom:224.480000pt;}
.yce{bottom:225.208320pt;}
.y289{bottom:225.270400pt;}
.y21f{bottom:225.275520pt;}
.y1d5{bottom:225.909760pt;}
.y1fc{bottom:225.914880pt;}
.y112{bottom:225.967360pt;}
.y2be{bottom:226.699520pt;}
.y23b{bottom:226.720000pt;}
.y2a2{bottom:227.500160pt;}
.y270{bottom:227.520000pt;}
.y15d{bottom:229.157120pt;}
.y7b{bottom:230.054400pt;}
.ya7{bottom:231.613440pt;}
.yf3{bottom:237.259520pt;}
.y1ad{bottom:237.594880pt;}
.y13b{bottom:238.122240pt;}
.y3e{bottom:239.474560pt;}
.y184{bottom:242.704640pt;}
.y250{bottom:245.260160pt;}
.y2db{bottom:245.274880pt;}
.ycd{bottom:246.013440pt;}
.y288{bottom:246.714880pt;}
.y1fb{bottom:246.720000pt;}
.y111{bottom:246.772480pt;}
.y2bd{bottom:247.504640pt;}
.y1d4{bottom:247.509760pt;}
.y26f{bottom:248.305280pt;}
.y15c{bottom:249.962240pt;}
.y7a{bottom:250.859520pt;}
.ya6{bottom:252.418560pt;}
.y12{bottom:256.160000pt;}
.yf2{bottom:258.064640pt;}
.y1ac{bottom:258.400000pt;}
.y13a{bottom:258.927360pt;}
.y3d{bottom:261.074560pt;}
.y183{bottom:263.509760pt;}
.y24f{bottom:266.065280pt;}
.y2da{bottom:266.080000pt;}
.ycc{bottom:266.818560pt;}
.y1fa{bottom:267.514880pt;}
.y110{bottom:267.577600pt;}
.y2bc{bottom:268.309760pt;}
.y1d3{bottom:268.314880pt;}
.y26e{bottom:269.110400pt;}
.y2a1{bottom:269.749760pt;}
.y15b{bottom:271.562240pt;}
.y79{bottom:271.664640pt;}
.ya5{bottom:273.223680pt;}
.y11{bottom:277.600000pt;}
.yf1{bottom:278.869760pt;}
.y1ab{bottom:279.189760pt;}
.y139{bottom:279.732480pt;}
.y3c{bottom:282.519040pt;}
.y182{bottom:284.314880pt;}
.ycb{bottom:287.623680pt;}
.y24e{bottom:287.665280pt;}
.y2d9{bottom:287.680000pt;}
.y1f9{bottom:288.320000pt;}
.y10f{bottom:288.382720pt;}
.y2bb{bottom:289.114880pt;}
.y1d2{bottom:289.120000pt;}
.y23a{bottom:289.914880pt;}
.y26d{bottom:290.554880pt;}
.y15a{bottom:292.367360pt;}
.y78{bottom:292.469760pt;}
.ya4{bottom:294.028800pt;}
.yf0{bottom:299.674880pt;}
.y1aa{bottom:299.994880pt;}
.y10{bottom:300.160000pt;}
.y138{bottom:300.537600pt;}
.y3b{bottom:303.324160pt;}
.y181{bottom:305.120000pt;}
.yca{bottom:308.428800pt;}
.y2d8{bottom:308.460160pt;}
.y24d{bottom:309.109760pt;}
.y10e{bottom:309.187840pt;}
.y1d1{bottom:309.904640pt;}
.y287{bottom:309.915520pt;}
.y1f8{bottom:309.920000pt;}
.y2ba{bottom:310.714880pt;}
.y239{bottom:310.720000pt;}
.y26c{bottom:311.360000pt;}
.y159{bottom:313.172480pt;}
.y77{bottom:313.274880pt;}
.ya3{bottom:314.833920pt;}
.yef{bottom:320.480000pt;}
.y137{bottom:321.342720pt;}
.y1a9{bottom:321.594880pt;}
.y3a{bottom:324.129280pt;}
.yf{bottom:325.760000pt;}
.yc9{bottom:329.233920pt;}
.y2d7{bottom:329.265280pt;}
.y180{bottom:329.600000pt;}
.y24c{bottom:329.914880pt;}
.y10d{bottom:329.992960pt;}
.y21e{bottom:330.705280pt;}
.y1d0{bottom:330.709760pt;}
.y238{bottom:331.505280pt;}
.y286{bottom:331.515520pt;}
.y1f7{bottom:331.520000pt;}
.y2a0{bottom:332.144640pt;}
.y26b{bottom:332.149760pt;}
.y158{bottom:333.977600pt;}
.y76{bottom:334.064640pt;}
.ya2{bottom:335.639040pt;}
.yee{bottom:340.960000pt;}
.y136{bottom:342.147840pt;}
.y1a8{bottom:342.400000pt;}
.y39{bottom:344.934400pt;}
.y17f{bottom:349.600000pt;}
.yc8{bottom:350.039040pt;}
.y2d6{bottom:350.709760pt;}
.y10c{bottom:350.798080pt;}
.y21d{bottom:351.510400pt;}
.y24b{bottom:351.514880pt;}
.ye{bottom:351.520000pt;}
.y2b9{bottom:352.295680pt;}
.y1cf{bottom:352.309760pt;}
.y1f6{bottom:352.310400pt;}
.y29f{bottom:352.949760pt;}
.y26a{bottom:352.954880pt;}
.y285{bottom:352.960000pt;}
.y75{bottom:354.869760pt;}
.y157{bottom:355.577600pt;}
.ya1{bottom:356.444160pt;}
.yed{bottom:360.160000pt;}
.y135{bottom:362.952960pt;}
.y1a7{bottom:363.190400pt;}
.y38{bottom:365.739520pt;}
.yc7{bottom:370.844160pt;}
.y2d5{bottom:371.514880pt;}
.y10b{bottom:371.603200pt;}
.y17e{bottom:372.640000pt;}
.y21c{bottom:373.110400pt;}
.y1ce{bottom:373.114880pt;}
.y1f5{bottom:373.115520pt;}
.y284{bottom:373.739520pt;}
.y2b8{bottom:373.740160pt;}
.y237{bottom:373.754880pt;}
.y29e{bottom:374.549760pt;}
.y269{bottom:374.554880pt;}
.y74{bottom:375.674880pt;}
.y156{bottom:376.382720pt;}
.ya0{bottom:377.249280pt;}
.yec{bottom:379.360000pt;}
.y134{bottom:383.758080pt;}
.y1a6{bottom:384.634880pt;}
.y37{bottom:386.544640pt;}
.yc6{bottom:391.649280pt;}
.y17d{bottom:391.840000pt;}
.y2d4{bottom:392.320000pt;}
.y10a{bottom:392.408320pt;}
.y1cd{bottom:393.920000pt;}
.y283{bottom:394.544640pt;}
.y21b{bottom:394.554880pt;}
.y1f4{bottom:394.560000pt;}
.y2b7{bottom:395.340160pt;}
.y29d{bottom:395.354880pt;}
.y268{bottom:395.360000pt;}
.y73{bottom:396.480000pt;}
.y155{bottom:397.187840pt;}
.y9f{bottom:398.054400pt;}
.yeb{bottom:398.560000pt;}
.y133{bottom:404.563200pt;}
.y25{bottom:405.440000pt;}
.y1a5{bottom:406.234880pt;}
.y36{bottom:407.349760pt;}
.y17c{bottom:411.040000pt;}
.yc5{bottom:412.454400pt;}
.y2d3{bottom:413.110400pt;}
.y109{bottom:413.213440pt;}
.y1cc{bottom:414.705280pt;}
.y24a{bottom:414.715520pt;}
.y1f3{bottom:415.339520pt;}
.y236{bottom:415.354880pt;}
.y21a{bottom:415.360000pt;}
.y267{bottom:416.144640pt;}
.y2b6{bottom:416.145280pt;}
.y29c{bottom:416.160000pt;}
.y72{bottom:416.640000pt;}
.yea{bottom:417.977600pt;}
.y154{bottom:417.992960pt;}
.y9e{bottom:418.859520pt;}
.y132{bottom:425.368320pt;}
.y1a4{bottom:427.040000pt;}
.y35{bottom:428.154880pt;}
.y17b{bottom:430.240000pt;}
.y24{bottom:432.640000pt;}
.yc4{bottom:433.259520pt;}
.y108{bottom:434.018560pt;}
.y2d2{bottom:434.710400pt;}
.y1cb{bottom:435.510400pt;}
.y71{bottom:435.840000pt;}
.y1f2{bottom:436.144640pt;}
.y219{bottom:436.154880pt;}
.y249{bottom:436.160000pt;}
.y29b{bottom:436.924800pt;}
.y266{bottom:436.949760pt;}
.y2b5{bottom:436.950400pt;}
.y235{bottom:436.954880pt;}
.ye9{bottom:438.782720pt;}
.y153{bottom:438.798080pt;}
.y9d{bottom:439.664640pt;}
.y131{bottom:446.173440pt;}
.y1a3{bottom:447.834880pt;}
.y34{bottom:448.960000pt;}
.y175{bottom:449.440000pt;}
.y23{bottom:451.840000pt;}
.yc3{bottom:454.064640pt;}
.y107{bottom:454.823680pt;}
.y2d1{bottom:456.310400pt;}
.y1ca{bottom:456.954880pt;}
.y29a{bottom:457.729920pt;}
.y1f1{bottom:457.744640pt;}
.y218{bottom:457.754880pt;}
.y248{bottom:457.760000pt;}
.y265{bottom:458.549760pt;}
.y2b4{bottom:458.550400pt;}
.y234{bottom:458.554880pt;}
.ye8{bottom:459.587840pt;}
.y152{bottom:459.603200pt;}
.y9c{bottom:460.469760pt;}
.y70{bottom:460.792160pt;}
.y130{bottom:466.978560pt;}
.y17a{bottom:468.640000pt;}
.y1a2{bottom:469.434880pt;}
.y33{bottom:469.600000pt;}
.y22{bottom:471.040000pt;}
.yc2{bottom:474.869760pt;}
.y106{bottom:475.628800pt;}
.y2d0{bottom:477.115520pt;}
.y1c9{bottom:477.760000pt;}
.y1f0{bottom:478.549760pt;}
.y247{bottom:478.550400pt;}
.y282{bottom:478.560000pt;}
.y299{bottom:479.329920pt;}
.y217{bottom:479.354880pt;}
.y233{bottom:479.360000pt;}
.y2b3{bottom:479.994880pt;}
.ye7{bottom:480.392960pt;}
.y151{bottom:480.408320pt;}
.y9b{bottom:481.274880pt;}
.y6f{bottom:483.200000pt;}
.y12f{bottom:487.783680pt;}
.y179{bottom:487.840000pt;}
.y21{bottom:490.240000pt;}
.yc1{bottom:495.674880pt;}
.y105{bottom:496.433920pt;}
.y1c8{bottom:498.535040pt;}
.y2cf{bottom:498.560000pt;}
.y1ef{bottom:499.354880pt;}
.y298{bottom:500.135040pt;}
.y232{bottom:500.150400pt;}
.y216{bottom:500.160000pt;}
.y2b2{bottom:500.800000pt;}
.ye6{bottom:501.198080pt;}
.y150{bottom:501.213440pt;}
.y9a{bottom:502.080000pt;}
.y6e{bottom:505.171840pt;}
.y178{bottom:507.040000pt;}
.y12e{bottom:508.588800pt;}
.y20{bottom:509.440000pt;}
.y1a1{bottom:511.040000pt;}
.y32{bottom:514.720000pt;}
.yc0{bottom:516.480000pt;}
.y104{bottom:517.239040pt;}
.y1c7{bottom:519.340160pt;}
.y1ee{bottom:520.160000pt;}
.y297{bottom:520.940160pt;}
.y281{bottom:520.949760pt;}
.y215{bottom:520.954880pt;}
.y231{bottom:520.955520pt;}
.y264{bottom:520.961920pt;}
.y246{bottom:521.594880pt;}
.y2b1{bottom:521.600000pt;}
.ye5{bottom:522.003200pt;}
.y14f{bottom:522.018560pt;}
.y99{bottom:522.560000pt;}
.y6d{bottom:525.976960pt;}
.y177{bottom:526.240000pt;}
.y1f{bottom:528.640000pt;}
.y12d{bottom:529.393920pt;}
.y1a0{bottom:531.825280pt;}
.y31{bottom:534.240000pt;}
.ybf{bottom:537.600000pt;}
.y103{bottom:538.044160pt;}
.y1c6{bottom:540.940160pt;}
.y1ed{bottom:540.954880pt;}
.y296{bottom:541.745280pt;}
.y280{bottom:541.754880pt;}
.y98{bottom:541.760000pt;}
.y263{bottom:541.767040pt;}
.y214{bottom:542.399360pt;}
.y230{bottom:542.400000pt;}
.ye4{bottom:542.808320pt;}
.y14e{bottom:542.823680pt;}
.y176{bottom:545.440000pt;}
.y6c{bottom:546.782080pt;}
.y1e{bottom:547.840000pt;}
.y12c{bottom:550.199040pt;}
.y19f{bottom:552.630400pt;}
.y102{bottom:558.849280pt;}
.y97{bottom:560.960000pt;}
.y174{bottom:561.600000pt;}
.y1c5{bottom:561.745280pt;}
.y1ec{bottom:561.760000pt;}
.y295{bottom:562.550400pt;}
.y2ce{bottom:562.554880pt;}
.y245{bottom:563.345280pt;}
.y27f{bottom:563.354880pt;}
.y213{bottom:563.360000pt;}
.y262{bottom:563.367040pt;}
.ye3{bottom:563.613440pt;}
.y14d{bottom:563.628800pt;}
.y22f{bottom:564.000000pt;}
.y30{bottom:564.320000pt;}
.y1d{bottom:567.040000pt;}
.y6b{bottom:567.587200pt;}
.ybe{bottom:567.592320pt;}
.y12b{bottom:571.004160pt;}
.y19e{bottom:574.074880pt;}
.y101{bottom:579.654400pt;}
.y96{bottom:580.160000pt;}
.y1c4{bottom:583.345280pt;}
.y1eb{bottom:583.360000pt;}
.y212{bottom:584.124800pt;}
.y244{bottom:584.150400pt;}
.y2cd{bottom:584.154880pt;}
.y27e{bottom:584.160000pt;}
.y2f{bottom:584.309760pt;}
.ye2{bottom:584.418560pt;}
.y14c{bottom:584.433920pt;}
.y173{bottom:584.640000pt;}
.y22e{bottom:584.779520pt;}
.y2b0{bottom:585.600000pt;}
.y1c{bottom:586.240000pt;}
.y6a{bottom:588.392320pt;}
.ybd{bottom:588.397440pt;}
.y12a{bottom:591.809280pt;}
.y19d{bottom:594.880000pt;}
.y95{bottom:599.643520pt;}
.y100{bottom:600.459520pt;}
.y172{bottom:603.840000pt;}
.y1ea{bottom:604.145280pt;}
.y211{bottom:604.929920pt;}
.y1c3{bottom:604.945280pt;}
.y27d{bottom:604.950400pt;}
.y2cc{bottom:604.960000pt;}
.y2e{bottom:605.114880pt;}
.ye1{bottom:605.223680pt;}
.y14b{bottom:605.239040pt;}
.y1b{bottom:605.440000pt;}
.y243{bottom:605.594880pt;}
.y22d{bottom:606.379520pt;}
.y2af{bottom:606.389760pt;}
.y69{bottom:609.197440pt;}
.ybc{bottom:609.202560pt;}
.y129{bottom:612.614400pt;}
.y19c{bottom:615.680000pt;}
.y94{bottom:620.604160pt;}
.yff{bottom:621.264640pt;}
.y16e{bottom:623.040000pt;}
.y1a{bottom:624.640000pt;}
.y1e9{bottom:625.745280pt;}
.y1c2{bottom:625.750400pt;}
.y2d{bottom:625.920000pt;}
.ye0{bottom:626.028800pt;}
.y14a{bottom:626.044160pt;}
.y210{bottom:626.374400pt;}
.y27c{bottom:626.394880pt;}
.y242{bottom:626.400000pt;}
.y22c{bottom:627.184640pt;}
.y2ae{bottom:627.194880pt;}
.y68{bottom:630.158080pt;}
.ybb{bottom:630.163200pt;}
.y128{bottom:633.419520pt;}
.y19b{bottom:636.625280pt;}
.y93{bottom:641.409280pt;}
.yfe{bottom:642.069760pt;}
.y16d{bottom:642.240000pt;}
.y19{bottom:643.840000pt;}
.y2cb{bottom:646.550400pt;}
.ydf{bottom:646.833920pt;}
.y149{bottom:646.849280pt;}
.y20f{bottom:647.179520pt;}
.y1e8{bottom:647.189760pt;}
.y1c1{bottom:647.194880pt;}
.y27b{bottom:647.200000pt;}
.y2c{bottom:647.360000pt;}
.y22b{bottom:647.989760pt;}
.y2ad{bottom:648.794880pt;}
.y67{bottom:650.963200pt;}
.yba{bottom:650.968320pt;}
.y127{bottom:654.224640pt;}
.y19a{bottom:657.430400pt;}
.y171{bottom:661.440000pt;}
.y92{bottom:662.214400pt;}
.yfd{bottom:662.874880pt;}
.y2b{bottom:666.880000pt;}
.yde{bottom:667.639040pt;}
.y148{bottom:667.654400pt;}
.y20e{bottom:667.984640pt;}
.y1e7{bottom:667.994880pt;}
.y261{bottom:668.000000pt;}
.y1c0{bottom:668.794880pt;}
.y2ac{bottom:669.600000pt;}
.y66{bottom:671.768320pt;}
.yb9{bottom:671.773440pt;}
.y126{bottom:675.029760pt;}
.y199{bottom:678.235520pt;}
.y170{bottom:680.640000pt;}
.y2a{bottom:682.400000pt;}
.y91{bottom:683.019520pt;}
.yfc{bottom:683.680000pt;}
.ydd{bottom:688.444160pt;}
.y147{bottom:688.459520pt;}
.y20d{bottom:688.789760pt;}
.y260{bottom:688.794880pt;}
.y1e6{bottom:688.800000pt;}
.y241{bottom:689.594880pt;}
.y1bf{bottom:689.600000pt;}
.y2ab{bottom:690.385280pt;}
.y22a{bottom:690.394880pt;}
.y53{bottom:692.320000pt;}
.y65{bottom:692.573440pt;}
.yb8{bottom:692.578560pt;}
.y125{bottom:695.834880pt;}
.y198{bottom:699.680000pt;}
.y16f{bottom:699.840000pt;}
.yd{bottom:703.520000pt;}
.y90{bottom:703.824640pt;}
.yfb{bottom:704.800000pt;}
.ydc{bottom:709.249280pt;}
.y146{bottom:709.264640pt;}
.y20c{bottom:709.594880pt;}
.y294{bottom:710.380160pt;}
.y27a{bottom:710.389760pt;}
.y1be{bottom:710.390400pt;}
.y25f{bottom:710.394880pt;}
.y1e5{bottom:710.400000pt;}
.y2aa{bottom:711.190400pt;}
.y240{bottom:711.194880pt;}
.y229{bottom:711.200000pt;}
.y64{bottom:713.378560pt;}
.yb7{bottom:713.383680pt;}
.y16c{bottom:715.840000pt;}
.y124{bottom:716.640000pt;}
.y197{bottom:721.440000pt;}
.yc{bottom:722.720000pt;}
.y52{bottom:724.000000pt;}
.y8f{bottom:724.629760pt;}
.ydb{bottom:730.054400pt;}
.y145{bottom:730.069760pt;}
.y293{bottom:731.185280pt;}
.y2ca{bottom:731.189760pt;}
.y20b{bottom:731.194880pt;}
.y228{bottom:731.985280pt;}
.y1bd{bottom:731.990400pt;}
.y25e{bottom:731.994880pt;}
.y1e4{bottom:732.000000pt;}
.y2a9{bottom:732.634880pt;}
.y63{bottom:734.183680pt;}
.yb6{bottom:734.188800pt;}
.yfa{bottom:734.828160pt;}
.y123{bottom:737.120000pt;}
.y16b{bottom:738.880000pt;}
.yb{bottom:740.960000pt;}
.y51{bottom:743.200000pt;}
.y8e{bottom:745.434880pt;}
.y196{bottom:746.064640pt;}
.yda{bottom:750.859520pt;}
.y144{bottom:750.874880pt;}
.y2c9{bottom:751.994880pt;}
.y279{bottom:752.000000pt;}
.y292{bottom:752.785280pt;}
.y1e3{bottom:752.790400pt;}
.y20a{bottom:752.794880pt;}
.y25d{bottom:752.800000pt;}
.y1bc{bottom:753.434880pt;}
.y2a8{bottom:753.440000pt;}
.y62{bottom:754.988800pt;}
.yb5{bottom:755.633280pt;}
.y122{bottom:756.320000pt;}
.ya{bottom:756.629440pt;}
.y168{bottom:758.080000pt;}
.y50{bottom:762.400000pt;}
.y8d{bottom:766.240000pt;}
.y195{bottom:766.869760pt;}
.yd9{bottom:771.664640pt;}
.y143{bottom:771.680000pt;}
.y278{bottom:772.795520pt;}
.y25c{bottom:773.569920pt;}
.y2c8{bottom:773.594880pt;}
.y209{bottom:773.600000pt;}
.y291{bottom:774.229760pt;}
.y1e2{bottom:774.234880pt;}
.y1bb{bottom:774.240000pt;}
.y121{bottom:775.520000pt;}
.y61{bottom:775.793920pt;}
.yb4{bottom:776.438400pt;}
.y16a{bottom:777.280000pt;}
.y4f{bottom:781.600000pt;}
.y9{bottom:782.229280pt;}
.y8c{bottom:787.360000pt;}
.y194{bottom:787.674880pt;}
.yd8{bottom:792.469760pt;}
.y142{bottom:793.440000pt;}
.y25b{bottom:794.375040pt;}
.y208{bottom:794.380160pt;}
.y277{bottom:794.395520pt;}
.y2c7{bottom:794.400000pt;}
.y120{bottom:795.009280pt;}
.y290{bottom:795.034880pt;}
.y1ba{bottom:795.040000pt;}
.y1e1{bottom:795.834880pt;}
.y169{bottom:796.480000pt;}
.y60{bottom:796.599040pt;}
.yb3{bottom:797.243520pt;}
.y4e{bottom:800.800000pt;}
.y193{bottom:808.480000pt;}
.y8{bottom:811.997920pt;}
.y166{bottom:812.480000pt;}
.yd7{bottom:813.274880pt;}
.y207{bottom:815.185280pt;}
.y2c6{bottom:815.190400pt;}
.y11f{bottom:815.814400pt;}
.y25a{bottom:815.819520pt;}
.y1b9{bottom:815.829760pt;}
.y227{bottom:815.840000pt;}
.y2e3{bottom:816.629760pt;}
.y28f{bottom:816.634880pt;}
.y1e0{bottom:816.640000pt;}
.y5f{bottom:817.404160pt;}
.y8b{bottom:817.409280pt;}
.yb2{bottom:818.048640pt;}
.y4d{bottom:820.000000pt;}
.y192{bottom:830.240000pt;}
.yd6{bottom:834.080000pt;}
.y2c5{bottom:835.995520pt;}
.y11e{bottom:836.619520pt;}
.y259{bottom:836.624640pt;}
.y206{bottom:836.629760pt;}
.y1b8{bottom:836.634880pt;}
.y1df{bottom:837.429760pt;}
.y2e2{bottom:837.434880pt;}
.y28e{bottom:837.440000pt;}
.y5e{bottom:838.209280pt;}
.y8a{bottom:838.214400pt;}
.yb1{bottom:838.853760pt;}
.y4c{bottom:839.200000pt;}
.y165{bottom:840.160000pt;}
.y7{bottom:840.960000pt;}
.y191{bottom:854.859520pt;}
.yd5{bottom:855.840000pt;}
.y11d{bottom:857.424640pt;}
.y258{bottom:857.429760pt;}
.y205{bottom:857.434880pt;}
.y226{bottom:857.440000pt;}
.y1b7{bottom:858.234880pt;}
.y4b{bottom:858.400000pt;}
.y5d{bottom:859.014400pt;}
.y89{bottom:859.019520pt;}
.y2e1{bottom:859.034880pt;}
.yb0{bottom:859.658880pt;}
.y190{bottom:875.664640pt;}
.y4a{bottom:877.600000pt;}
.y11c{bottom:878.229760pt;}
.y204{bottom:878.240000pt;}
.y257{bottom:879.029760pt;}
.y1b6{bottom:879.040000pt;}
.y5c{bottom:879.819520pt;}
.y88{bottom:879.824640pt;}
.y1de{bottom:879.834880pt;}
.y2e0{bottom:879.840000pt;}
.yaf{bottom:880.464000pt;}
.y6{bottom:893.760000pt;}
.y18f{bottom:896.469760pt;}
.y49{bottom:896.800000pt;}
.y11b{bottom:899.034880pt;}
.y1b5{bottom:899.834880pt;}
.y203{bottom:899.840000pt;}
.y5b{bottom:900.624640pt;}
.y87{bottom:900.629760pt;}
.y1dd{bottom:900.640000pt;}
.yae{bottom:901.269120pt;}
.y5{bottom:909.280000pt;}
.y48{bottom:916.000000pt;}
.y18e{bottom:917.274880pt;}
.y11a{bottom:920.634880pt;}
.y1b4{bottom:920.640000pt;}
.y5a{bottom:921.429760pt;}
.y1dc{bottom:921.434880pt;}
.y202{bottom:921.440000pt;}
.y86{bottom:922.074240pt;}
.y47{bottom:935.200000pt;}
.y18d{bottom:938.080000pt;}
.y119{bottom:941.440000pt;}
.y59{bottom:942.234880pt;}
.y1b3{bottom:942.240000pt;}
.y85{bottom:942.879360pt;}
.y3{bottom:949.280000pt;}
.y46{bottom:954.400000pt;}
.y18c{bottom:960.000000pt;}
.y58{bottom:963.040000pt;}
.y84{bottom:963.840000pt;}
.y1{bottom:1004.320000pt;}
.y26{bottom:1008.000000pt;}
.h19{height:19.200000pt;}
.h3{height:26.400000pt;}
.hd{height:27.343750pt;}
.he{height:31.992188pt;}
.h2{height:36.640625pt;}
.h1{height:39.243750pt;}
.ha{height:41.015625pt;}
.h5{height:41.216000pt;}
.h16{height:41.917500pt;}
.h12{height:44.800000pt;}
.hf{height:45.390625pt;}
.h6{height:45.562500pt;}
.h1d{height:49.207500pt;}
.h10{height:50.312500pt;}
.h11{height:53.308125pt;}
.hc{height:54.687500pt;}
.h4{height:56.732813pt;}
.h13{height:58.286250pt;}
.hb{height:58.598750pt;}
.h14{height:59.062500pt;}
.h1e{height:60.075000pt;}
.h7{height:60.598125pt;}
.h17{height:66.142065pt;}
.h18{height:66.428785pt;}
.h9{height:71.778438pt;}
.h8{height:72.742695pt;}
.h1a{height:96.000000pt;}
.h1b{height:153.600000pt;}
.h1c{height:211.200000pt;}
.h15{height:278.240000pt;}
.h0{height:1056.000000pt;}
.w2{width:27.520000pt;}
.w4{width:28.480000pt;}
.w1{width:28.640000pt;}
.w5{width:106.080000pt;}
.w6{width:256.961333pt;}
.w9{width:264.480000pt;}
.w7{width:264.640000pt;}
.w8{width:264.641333pt;}
.w3{width:655.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.xa{left:9.600000pt;}
.x1{left:75.520000pt;}
.x14{left:77.280000pt;}
.x9{left:80.640000pt;}
.x5{left:90.240000pt;}
.x15{left:97.600000pt;}
.xe{left:123.520000pt;}
.x12{left:196.480000pt;}
.x16{left:203.680000pt;}
.x10{left:219.200000pt;}
.x4{left:267.520000pt;}
.x19{left:346.240000pt;}
.x13{left:453.440000pt;}
.x18{left:461.120000pt;}
.x17{left:468.320000pt;}
.x8{left:583.360000pt;}
.xb{left:632.160000pt;}
.x2{left:740.800000pt;}
.x3{left:751.200000pt;}
.xc{left:786.240000pt;}
.x6{left:788.480000pt;}
.xd{left:795.520000pt;}
.x7{left:797.760000pt;}
.x1a{left:804.960000pt;}
.xf{left:807.200000pt;}
}




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