
    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_1b64e80976902b6058dcf674.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_2537d71795d8709b3877d58e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_ccb344b41f9647b2039cd0d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_4da28cbd248af4fa5b6c251b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_34c2697b1dbf783520e63867.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_aafdd7074faa48ec2d981455.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_15c3f67bba67729b41da2923.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_e3714fe5b21dd4af969d1c2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_ad9d8fb352fce14933edea5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9f3fe5e9e2d2c267d36c5d1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.681641;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_60157de28579011f9f8638a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_4ce60385532961506055532f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_a69cf36268abddce3d69384c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.070312;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;}
.m2{transform:matrix(0.171209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171209,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.177846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.179172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179172,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.184593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184593,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.228779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228779,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.228782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228782,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,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);}
.m9{transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256748,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-29.880600px;}
.v6{vertical-align:-20.856240px;}
.v7{vertical-align:-19.500000px;}
.va{vertical-align:-16.242000px;}
.v4{vertical-align:-8.847000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.000000px;}
.v3{vertical-align:18.697320px;}
.v8{vertical-align:20.880000px;}
.v9{vertical-align:24.816000px;}
.v1{vertical-align:29.936160px;}
.vb{vertical-align:51.102000px;}
.ls62{letter-spacing:-0.901800px;}
.ls61{letter-spacing:-0.841680px;}
.ls5d{letter-spacing:-0.661320px;}
.ls19{letter-spacing:-0.480960px;}
.ls5c{letter-spacing:-0.420840px;}
.lsa{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.360720px;}
.ls7{letter-spacing:-0.300600px;}
.ls60{letter-spacing:-0.287280px;}
.ls18{letter-spacing:-0.240480px;}
.ls13{letter-spacing:-0.180360px;}
.ls9{letter-spacing:-0.162000px;}
.ls5e{letter-spacing:-0.143640px;}
.ls6{letter-spacing:-0.120240px;}
.ls67{letter-spacing:-0.119520px;}
.ls65{letter-spacing:-0.108000px;}
.ls5f{letter-spacing:-0.095760px;}
.ls8{letter-spacing:-0.060120px;}
.ls20{letter-spacing:-0.038880px;}
.ls0{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.012024px;}
.ls27{letter-spacing:0.046440px;}
.ls5b{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.060120px;}
.lsd{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.078156px;}
.ls4d{letter-spacing:0.082687px;}
.ls4c{letter-spacing:0.084869px;}
.ls2f{letter-spacing:0.091000px;}
.ls1b{letter-spacing:0.096192px;}
.ls5{letter-spacing:0.108000px;}
.ls4a{letter-spacing:0.118440px;}
.ls55{letter-spacing:0.119700px;}
.ls4{letter-spacing:0.120240px;}
.ls57{letter-spacing:0.123160px;}
.ls50{letter-spacing:0.128520px;}
.ls2e{letter-spacing:0.135000px;}
.ls43{letter-spacing:0.138960px;}
.ls58{letter-spacing:0.140040px;}
.ls3a{letter-spacing:0.142200px;}
.ls54{letter-spacing:0.143640px;}
.ls36{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.151200px;}
.ls38{letter-spacing:0.157680px;}
.ls41{letter-spacing:0.160560px;}
.ls4e{letter-spacing:0.166896px;}
.ls44{letter-spacing:0.169200px;}
.ls46{letter-spacing:0.175680px;}
.ls59{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.180360px;}
.ls42{letter-spacing:0.186840px;}
.ls3d{letter-spacing:0.192600px;}
.ls5a{letter-spacing:0.206640px;}
.ls66{letter-spacing:0.259920px;}
.ls63{letter-spacing:0.383040px;}
.ls56{letter-spacing:0.486236px;}
.ls47{letter-spacing:0.541080px;}
.ls26{letter-spacing:0.901800px;}
.ls25{letter-spacing:1.983960px;}
.ls40{letter-spacing:2.705400px;}
.ls23{letter-spacing:3.066120px;}
.ls45{letter-spacing:3.787560px;}
.ls39{letter-spacing:4.148280px;}
.ls35{letter-spacing:5.230440px;}
.ls17{letter-spacing:5.603184px;}
.ls52{letter-spacing:5.915808px;}
.ls2b{letter-spacing:6.673320px;}
.ls2a{letter-spacing:7.034040px;}
.ls22{letter-spacing:7.394760px;}
.ls31{letter-spacing:9.811584px;}
.ls2d{letter-spacing:12.805560px;}
.ls2c{letter-spacing:13.166280px;}
.ls28{letter-spacing:14.524992px;}
.ls4f{letter-spacing:14.609160px;}
.ls2{letter-spacing:15.330600px;}
.ls3e{letter-spacing:16.773480px;}
.ls1d{letter-spacing:20.380680px;}
.ls51{letter-spacing:21.102120px;}
.ls3c{letter-spacing:21.823560px;}
.ls37{letter-spacing:22.184280px;}
.ls29{letter-spacing:23.627160px;}
.ls12{letter-spacing:25.071120px;}
.ls3b{letter-spacing:31.863600px;}
.ls33{letter-spacing:32.585040px;}
.lse{letter-spacing:33.730560px;}
.ls34{letter-spacing:36.913680px;}
.ls11{letter-spacing:38.391120px;}
.ls53{letter-spacing:44.128080px;}
.ls4b{letter-spacing:46.653120px;}
.ls49{letter-spacing:47.013840px;}
.ls10{letter-spacing:58.191120px;}
.ls30{letter-spacing:58.556880px;}
.lsf{letter-spacing:71.511120px;}
.ls32{letter-spacing:78.336360px;}
.ls1a{letter-spacing:100.294560px;}
.ls21{letter-spacing:111.462480px;}
.ls14{letter-spacing:243.546120px;}
.ls15{letter-spacing:300.419640px;}
.ls1c{letter-spacing:320.619960px;}
.ls16{letter-spacing:333.545760px;}
.ls64{letter-spacing:358.796160px;}
.ls1e{letter-spacing:847.276920px;}
.lsb{letter-spacing:1603.640880px;}
.lsc{letter-spacing:2383.758000px;}
.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;}
}
.ws6a{word-spacing:-60.059880px;}
.ws93{word-spacing:-35.667761px;}
.ws78{word-spacing:-33.005880px;}
.ws0{word-spacing:-30.024000px;}
.ws1c{word-spacing:-18.380520px;}
.ws91{word-spacing:-18.061271px;}
.wsa1{word-spacing:-16.893720px;}
.wsa4{word-spacing:-16.853400px;}
.ws1e{word-spacing:-16.833600px;}
.ws4{word-spacing:-16.773480px;}
.ws5{word-spacing:-16.713360px;}
.ws1d{word-spacing:-16.653240px;}
.ws2{word-spacing:-16.593120px;}
.ws1b{word-spacing:-16.533000px;}
.wsb0{word-spacing:-16.493760px;}
.ws84{word-spacing:-16.472880px;}
.ws8{word-spacing:-16.412760px;}
.ws3d{word-spacing:-16.352640px;}
.ws1f{word-spacing:-16.232400px;}
.wsa2{word-spacing:-16.052040px;}
.wsa3{word-spacing:-15.871680px;}
.ws6{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.634000px;}
.wsa5{word-spacing:-13.693680px;}
.wsa0{word-spacing:-13.310640px;}
.ws9f{word-spacing:-13.167000px;}
.ws8d{word-spacing:-11.796763px;}
.ws95{word-spacing:-11.493521px;}
.ws3{word-spacing:-10.808640px;}
.ws3e{word-spacing:-10.769760px;}
.wsaf{word-spacing:-0.601200px;}
.ws18{word-spacing:-0.541080px;}
.wsa6{word-spacing:-0.480960px;}
.wsac{word-spacing:-0.240480px;}
.wse{word-spacing:-0.180360px;}
.ws17{word-spacing:-0.120240px;}
.ws70{word-spacing:-0.091000px;}
.ws9a{word-spacing:-0.084869px;}
.ws9b{word-spacing:-0.082687px;}
.wsd{word-spacing:-0.060120px;}
.ws1{word-spacing:0.000000px;}
.wsb2{word-spacing:0.059760px;}
.ws1a{word-spacing:0.060120px;}
.ws15{word-spacing:0.108000px;}
.ws19{word-spacing:0.120240px;}
.wsa8{word-spacing:0.143640px;}
.ws14{word-spacing:0.180360px;}
.wsae{word-spacing:0.216000px;}
.wsa9{word-spacing:0.239400px;}
.ws16{word-spacing:0.270000px;}
.wsa7{word-spacing:0.287280px;}
.ws2f{word-spacing:0.300600px;}
.wsaa{word-spacing:0.430920px;}
.ws6e{word-spacing:0.480960px;}
.ws20{word-spacing:0.541080px;}
.wsab{word-spacing:0.661320px;}
.wsb1{word-spacing:0.776880px;}
.wsad{word-spacing:0.841680px;}
.ws4e{word-spacing:0.901800px;}
.ws4d{word-spacing:1.262520px;}
.ws21{word-spacing:1.623240px;}
.ws2e{word-spacing:1.983960px;}
.ws4c{word-spacing:2.344680px;}
.ws5c{word-spacing:2.705400px;}
.ws66{word-spacing:3.066120px;}
.ws29{word-spacing:3.426840px;}
.ws5b{word-spacing:3.787560px;}
.ws58{word-spacing:4.148280px;}
.ws55{word-spacing:4.509000px;}
.ws98{word-spacing:4.749480px;}
.ws87{word-spacing:4.809600px;}
.ws3b{word-spacing:5.170320px;}
.ws3c{word-spacing:5.531040px;}
.ws30{word-spacing:5.891760px;}
.ws59{word-spacing:6.132240px;}
.ws5a{word-spacing:6.252480px;}
.ws74{word-spacing:6.492960px;}
.ws68{word-spacing:6.613200px;}
.ws3f{word-spacing:6.973920px;}
.ws64{word-spacing:7.334640px;}
.ws37{word-spacing:7.695360px;}
.ws63{word-spacing:8.056080px;}
.ws42{word-spacing:8.416800px;}
.ws26{word-spacing:8.777520px;}
.ws23{word-spacing:9.138240px;}
.ws35{word-spacing:9.498960px;}
.ws4a{word-spacing:9.859680px;}
.ws57{word-spacing:10.220400px;}
.ws7e{word-spacing:10.581120px;}
.ws13{word-spacing:10.941840px;}
.ws7a{word-spacing:11.302560px;}
.ws52{word-spacing:11.663280px;}
.ws53{word-spacing:12.024000px;}
.ws79{word-spacing:12.384720px;}
.ws75{word-spacing:12.745440px;}
.ws65{word-spacing:13.046040px;}
.ws39{word-spacing:13.106160px;}
.ws43{word-spacing:13.466880px;}
.ws32{word-spacing:13.827600px;}
.ws44{word-spacing:14.188320px;}
.ws71{word-spacing:14.549040px;}
.ws9d{word-spacing:14.909760px;}
.wsb{word-spacing:15.270480px;}
.ws11{word-spacing:15.390720px;}
.wsc{word-spacing:15.450840px;}
.ws12{word-spacing:15.631200px;}
.ws97{word-spacing:16.713360px;}
.ws27{word-spacing:17.074080px;}
.ws51{word-spacing:17.434800px;}
.ws49{word-spacing:18.156240px;}
.ws41{word-spacing:18.516960px;}
.ws4f{word-spacing:18.877680px;}
.ws40{word-spacing:19.238400px;}
.ws7d{word-spacing:19.599120px;}
.ws82{word-spacing:19.959840px;}
.ws25{word-spacing:20.320560px;}
.ws22{word-spacing:21.042000px;}
.ws48{word-spacing:21.402720px;}
.ws88{word-spacing:21.763440px;}
.ws31{word-spacing:22.124160px;}
.ws10{word-spacing:22.484880px;}
.wsf{word-spacing:22.845600px;}
.ws50{word-spacing:23.206320px;}
.ws6f{word-spacing:23.567040px;}
.ws7c{word-spacing:24.288480px;}
.ws56{word-spacing:24.649200px;}
.ws60{word-spacing:25.009920px;}
.ws2a{word-spacing:25.370640px;}
.ws83{word-spacing:25.731360px;}
.ws61{word-spacing:26.452800px;}
.ws5d{word-spacing:26.813520px;}
.ws73{word-spacing:27.174240px;}
.ws3a{word-spacing:27.534960px;}
.ws38{word-spacing:27.895680px;}
.ws72{word-spacing:28.256400px;}
.ws46{word-spacing:28.617120px;}
.ws47{word-spacing:28.797480px;}
.ws4b{word-spacing:28.977840px;}
.ws9e{word-spacing:29.338560px;}
.ws85{word-spacing:29.699280px;}
.ws28{word-spacing:30.060000px;}
.wsa{word-spacing:30.420720px;}
.ws9{word-spacing:30.781440px;}
.ws7b{word-spacing:31.863600px;}
.ws24{word-spacing:32.224320px;}
.ws9c{word-spacing:32.585040px;}
.ws5f{word-spacing:32.945760px;}
.ws67{word-spacing:34.388640px;}
.ws89{word-spacing:34.749360px;}
.ws8f{word-spacing:35.447343px;}
.ws76{word-spacing:36.492840px;}
.ws69{word-spacing:37.214280px;}
.ws54{word-spacing:37.935720px;}
.ws99{word-spacing:39.739320px;}
.ws45{word-spacing:40.460760px;}
.ws86{word-spacing:40.821480px;}
.ws2d{word-spacing:41.182200px;}
.ws80{word-spacing:42.264360px;}
.ws7f{word-spacing:42.625080px;}
.ws2b{word-spacing:42.985800px;}
.ws2c{word-spacing:43.286400px;}
.ws5e{word-spacing:44.067960px;}
.ws81{word-spacing:46.953720px;}
.ws62{word-spacing:50.200200px;}
.ws77{word-spacing:50.560920px;}
.ws96{word-spacing:61.021800px;}
.ws36{word-spacing:72.144000px;}
.ws34{word-spacing:81.883440px;}
.ws33{word-spacing:101.302200px;}
.ws6d{word-spacing:205.638613px;}
.ws8a{word-spacing:216.487580px;}
.ws8e{word-spacing:224.903863px;}
.ws6b{word-spacing:256.053654px;}
.ws8c{word-spacing:322.514079px;}
.ws6c{word-spacing:378.395408px;}
.ws8b{word-spacing:445.974566px;}
.ws90{word-spacing:741.090882px;}
.ws94{word-spacing:1038.297014px;}
.ws92{word-spacing:1192.188519px;}
._17{margin-left:-211.416477px;}
._14{margin-left:-210.387417px;}
._2c{margin-left:-190.686667px;}
._2f{margin-left:-185.019651px;}
._21{margin-left:-180.577022px;}
._2e{margin-left:-176.034008px;}
._2b{margin-left:-174.206983px;}
._25{margin-left:-173.047483px;}
._2a{margin-left:-170.700441px;}
._1f{margin-left:-167.973973px;}
._24{margin-left:-165.440027px;}
._30{margin-left:-163.637969px;}
._29{margin-left:-162.579074px;}
._13{margin-left:-157.169210px;}
._22{margin-left:-153.303757px;}
._15{margin-left:-151.481403px;}
._2d{margin-left:-133.785932px;}
._20{margin-left:-132.031944px;}
._16{margin-left:-104.002347px;}
._23{margin-left:-92.355678px;}
._6{margin-left:-14.400000px;}
._7{margin-left:-10.800000px;}
._2{margin-left:-8.280000px;}
._5{margin-left:-7.214400px;}
._4{margin-left:-5.400000px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.440000px;}
._3{width:1.440000px;}
._8{width:2.880000px;}
._9{width:5.209200px;}
._18{width:7.091280px;}
._33{width:8.534160px;}
._c{width:10.758600px;}
._19{width:12.418920px;}
._32{width:13.699224px;}
._a{width:15.382080px;}
._1d{width:20.727000px;}
._b{width:22.118400px;}
._e{width:30.370680px;}
._1c{width:31.978080px;}
._31{width:47.171880px;}
._12{width:48.576960px;}
._11{width:56.065320px;}
._1b{width:66.192120px;}
._1e{width:77.735160px;}
._1a{width:111.763080px;}
._10{width:176.406480px;}
._f{width:202.905000px;}
._28{width:273.947241px;}
._27{width:298.592540px;}
._26{width:427.464156px;}
._d{width:847.271160px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs12{font-size:41.343600px;}
.fse{font-size:42.434400px;}
.fsb{font-size:45.499800px;}
.fs7{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs14{font-size:59.760000px;}
.fs5{font-size:60.120000px;}
.fs13{font-size:64.968600px;}
.fs9{font-size:65.880000px;}
.fsf{font-size:66.682800px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs10{font-size:89.332200px;}
.fsd{font-size:91.499400px;}
.fs11{font-size:92.654400px;}
.fsa{font-size:102.984000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y250{bottom:2.700000px;}
.y295{bottom:2.970000px;}
.y277{bottom:3.060000px;}
.y239{bottom:3.240000px;}
.y2c{bottom:3.330000px;}
.y253{bottom:3.420000px;}
.y1cd{bottom:3.784099px;}
.y1e6{bottom:3.919865px;}
.y124{bottom:4.874850px;}
.y123{bottom:4.875000px;}
.y297{bottom:5.130000px;}
.y1e0{bottom:7.983300px;}
.y1e4{bottom:7.983600px;}
.y126{bottom:9.749700px;}
.y125{bottom:9.749850px;}
.y122{bottom:9.851700px;}
.y1cf{bottom:12.499339px;}
.y1cb{bottom:12.502950px;}
.y1de{bottom:16.611750px;}
.y1e8{bottom:16.612350px;}
.y1cc{bottom:16.670550px;}
.y1ca{bottom:16.718100px;}
.y238{bottom:20.520000px;}
.y252{bottom:20.610000px;}
.y1df{bottom:20.672400px;}
.y1e2{bottom:20.672550px;}
.y1e3{bottom:20.672700px;}
.y1e5{bottom:20.672850px;}
.y255{bottom:20.700000px;}
.y1dc{bottom:20.764350px;}
.y1dd{bottom:20.810700px;}
.y296{bottom:22.410000px;}
.y291{bottom:22.500000px;}
.y1ce{bottom:27.039725px;}
.y1e7{bottom:27.134296px;}
.y63{bottom:29.610000px;}
.y67{bottom:29.700000px;}
.y1e1{bottom:31.192950px;}
.y2a2{bottom:42.390000px;}
.y2c3{bottom:45.210600px;}
.y9{bottom:45.893520px;}
.y2e{bottom:45.900000px;}
.y85{bottom:46.890000px;}
.y282{bottom:55.890000px;}
.y61{bottom:64.080000px;}
.y92{bottom:64.170000px;}
.y2c6{bottom:66.780000px;}
.y2ad{bottom:72.360000px;}
.ya0{bottom:81.360000px;}
.y2b{bottom:85.140000px;}
.y2a7{bottom:89.550000px;}
.y28a{bottom:91.080000px;}
.y9f{bottom:92.430000px;}
.y187{bottom:93.364740px;}
.y2c5{bottom:94.320000px;}
.y29b{bottom:96.021720px;}
.y99{bottom:98.640000px;}
.y2c9{bottom:99.365580px;}
.ya4{bottom:104.836680px;}
.y218{bottom:105.598260px;}
.y2a{bottom:105.703920px;}
.y113{bottom:106.118550px;}
.y2b2{bottom:106.920000px;}
.y186{bottom:110.649240px;}
.y29a{bottom:113.306400px;}
.y1b4{bottom:121.218300px;}
.ya3{bottom:122.031000px;}
.y150{bottom:122.238630px;}
.y2c8{bottom:122.940900px;}
.y29{bottom:122.988420px;}
.y112{bottom:123.403050px;}
.y217{bottom:127.196370px;}
.y185{bottom:127.843560px;}
.y299{bottom:130.591080px;}
.ya2{bottom:139.315500px;}
.y14f{bottom:139.432950px;}
.y28{bottom:140.182740px;}
.y111{bottom:140.687550px;}
.y2c7{bottom:141.840000px;}
.y184{bottom:145.128060px;}
.y298{bottom:147.780000px;}
.y1b3{bottom:149.294340px;}
.y257{bottom:150.030000px;}
.y9e{bottom:156.415680px;}
.ya1{bottom:156.600000px;}
.y14e{bottom:156.717450px;}
.y27{bottom:157.467240px;}
.y110{bottom:157.881870px;}
.y216{bottom:158.067990px;}
.y294{bottom:162.360000px;}
.y183{bottom:162.412560px;}
.y9d{bottom:173.610000px;}
.y14d{bottom:174.001950px;}
.y26{bottom:174.571380px;}
.y10f{bottom:175.166370px;}
.ydb{bottom:175.248000px;}
.y215{bottom:175.262310px;}
.y1b2{bottom:177.280200px;}
.y293{bottom:180.360000px;}
.y182{bottom:184.100850px;}
.y1f5{bottom:190.615230px;}
.y14c{bottom:191.196270px;}
.y25{bottom:191.946060px;}
.y10e{bottom:192.450870px;}
.y98{bottom:196.650000px;}
.y214{bottom:197.040780px;}
.yda{bottom:198.469350px;}
.y290{bottom:199.350000px;}
.y181{bottom:201.385350px;}
.y292{bottom:204.570000px;}
.y1b1{bottom:205.356240px;}
.y14b{bottom:208.480770px;}
.y9c{bottom:209.070000px;}
.y24{bottom:209.230560px;}
.y10d{bottom:209.645190px;}
.y1f4{bottom:212.574060px;}
.y213{bottom:214.325280px;}
.yd9{bottom:215.753850px;}
.y28f{bottom:217.440000px;}
.y180{bottom:218.669850px;}
.y1b0{bottom:222.640740px;}
.y14a{bottom:225.765270px;}
.y23{bottom:226.424880px;}
.y1f3{bottom:230.568210px;}
.y10c{bottom:231.423660px;}
.y212{bottom:231.519600px;}
.y289{bottom:236.430000px;}
.yd8{bottom:237.532320px;}
.y17f{bottom:240.358140px;}
.y9b{bottom:243.540000px;}
.y22{bottom:243.709380px;}
.y149{bottom:247.363380px;}
.y10b{bottom:248.708160px;}
.y211{bottom:248.804100px;}
.y1af{bottom:250.626600px;}
.y1f2{bottom:253.068120px;}
.yd7{bottom:254.726640px;}
.y17e{bottom:257.642640px;}
.y97{bottom:260.631180px;}
.y21{bottom:260.993880px;}
.y10a{bottom:265.902480px;}
.y57{bottom:268.376220px;}
.y210{bottom:270.492390px;}
.y1f1{bottom:271.074060px;}
.y28e{bottom:271.620000px;}
.yd6{bottom:272.011140px;}
.y17d{bottom:274.836960px;}
.y96{bottom:277.825500px;}
.y9a{bottom:278.010000px;}
.y20{bottom:278.188200px;}
.y148{bottom:278.235000px;}
.y1ae{bottom:278.702640px;}
.y109{bottom:283.186980px;}
.y56{bottom:285.300000px;}
.y288{bottom:286.832610px;}
.y1f0{bottom:289.068210px;}
.yd5{bottom:289.295640px;}
.y28c{bottom:293.035500px;}
.y95{bottom:295.110000px;}
.y1f{bottom:295.472700px;}
.y1ad{bottom:295.987140px;}
.y17c{bottom:296.525250px;}
.y260{bottom:298.800000px;}
.y147{bottom:300.013470px;}
.y55{bottom:300.871080px;}
.y20f{bottom:301.273830px;}
.y108{bottom:304.965450px;}
.yd4{bottom:306.489960px;}
.y28d{bottom:306.900000px;}
.y287{bottom:308.160180px;}
.y28b{bottom:310.320000px;}
.y1ef{bottom:311.568120px;}
.y1e{bottom:312.757200px;}
.y146{bottom:317.207790px;}
.y91{bottom:318.150000px;}
.y20e{bottom:318.558330px;}
.y107{bottom:322.159770px;}
.y17b{bottom:322.887870px;}
.y286{bottom:323.100000px;}
.yd3{bottom:323.774460px;}
.y1ac{bottom:323.973000px;}
.y54{bottom:324.357300px;}
.y1ee{bottom:329.574060px;}
.y1d{bottom:329.861340px;}
.y94{bottom:330.565680px;}
.y145{bottom:334.492290px;}
.y20d{bottom:335.842830px;}
.y106{bottom:339.444270px;}
.y17a{bottom:340.082190px;}
.yd2{bottom:340.968780px;}
.y285{bottom:342.180000px;}
.y1ab{bottom:345.751470px;}
.y1c{bottom:347.145840px;}
.y1ed{bottom:347.574510px;}
.y53{bottom:347.580000px;}
.y93{bottom:347.760000px;}
.y20c{bottom:353.037150px;}
.y144{bottom:356.270760px;}
.y105{bottom:356.728770px;}
.y179{bottom:357.366690px;}
.yd1{bottom:358.253280px;}
.y1b{bottom:361.093680px;}
.y1aa{bottom:363.035970px;}
.y52{bottom:369.360000px;}
.y1ec{bottom:372.869370px;}
.y143{bottom:373.465080px;}
.y104{bottom:373.923090px;}
.y178{bottom:374.651190px;}
.y20b{bottom:374.725440px;}
.y281{bottom:377.370000px;}
.yd0{bottom:380.031750px;}
.y90{bottom:382.140000px;}
.y1a9{bottom:384.724260px;}
.y1eb{bottom:390.153870px;}
.y142{bottom:390.749580px;}
.y51{bottom:391.050000px;}
.y103{bottom:395.701560px;}
.y177{bottom:396.249300px;}
.ycf{bottom:397.226070px;}
.y1a8{bottom:402.008760px;}
.y8d{bottom:405.180000px;}
.y20a{bottom:405.597060px;}
.y141{bottom:408.034080px;}
.y1ea{bottom:411.932340px;}
.y284{bottom:412.650000px;}
.y50{bottom:412.830000px;}
.y102{bottom:412.895880px;}
.yce{bottom:414.510570px;}
.y283{bottom:416.070000px;}
.y8f{bottom:417.510000px;}
.y1a7{bottom:419.293260px;}
.y209{bottom:422.791380px;}
.y140{bottom:425.228400px;}
.y1db{bottom:425.760000px;}
.y1e9{bottom:425.790000px;}
.y176{bottom:427.120920px;}
.y101{bottom:430.180380px;}
.ycd{bottom:431.795070px;}
.y27d{bottom:434.160180px;}
.y4f{bottom:434.520000px;}
.y8a{bottom:434.601180px;}
.y8e{bottom:434.790000px;}
.y208{bottom:440.075880px;}
.y1a6{bottom:440.891370px;}
.y13f{bottom:442.512900px;}
.y27f{bottom:443.163150px;}
.y175{bottom:444.405420px;}
.y100{bottom:447.464880px;}
.y280{bottom:447.930000px;}
.ycc{bottom:448.989390px;}
.y27c{bottom:449.100000px;}
.y89{bottom:451.885680px;}
.y8c{bottom:452.065680px;}
.y4e{bottom:456.300000px;}
.y13e{bottom:459.797400px;}
.y207{bottom:461.764170px;}
.y27b{bottom:464.130000px;}
.y27e{bottom:464.400540px;}
.yff{bottom:464.659200px;}
.ycb{bottom:466.273890px;}
.y174{bottom:467.175870px;}
.y88{bottom:469.080000px;}
.y8b{bottom:469.260000px;}
.y1a5{bottom:471.762990px;}
.y1da{bottom:476.371170px;}
.y13d{bottom:476.991720px;}
.y4d{bottom:478.080000px;}
.y276{bottom:483.120000px;}
.yca{bottom:483.558390px;}
.y173{bottom:484.370190px;}
.yfe{bottom:486.437670px;}
.y1a4{bottom:489.047490px;}
.y84{bottom:492.120000px;}
.y206{bottom:492.545610px;}
.y278{bottom:494.912610px;}
.y27a{bottom:498.053880px;}
.y1d9{bottom:498.324060px;}
.y13c{bottom:498.770190px;}
.y4c{bottom:499.770000px;}
.yc9{bottom:500.752710px;}
.y275{bottom:501.210180px;}
.yfd{bottom:503.722170px;}
.y87{bottom:504.535500px;}
.y1a3{bottom:506.241810px;}
.y172{bottom:507.140640px;}
.y205{bottom:509.830110px;}
.y279{bottom:515.789280px;}
.y13b{bottom:515.964510px;}
.y274{bottom:516.150000px;}
.y1d8{bottom:516.323160px;}
.yc8{bottom:518.037210px;}
.y236{bottom:518.689350px;}
.yfc{bottom:520.916490px;}
.y4b{bottom:521.550000px;}
.y83{bottom:521.635680px;}
.y86{bottom:521.820000px;}
.y1a2{bottom:527.930100px;}
.y171{bottom:529.911090px;}
.y204{bottom:531.518400px;}
.y1d7{bottom:534.329100px;}
.y25f{bottom:535.230000px;}
.yc7{bottom:535.321710px;}
.y235{bottom:535.973850px;}
.y13a{bottom:537.742980px;}
.yfb{bottom:538.200990px;}
.y82{bottom:538.830000px;}
.y272{bottom:542.687760px;}
.y273{bottom:542.700000px;}
.y4a{bottom:543.597300px;}
.y170{bottom:547.195590px;}
.y1d6{bottom:552.335040px;}
.y234{bottom:553.258350px;}
.y139{bottom:555.027480px;}
.yfa{bottom:555.485490px;}
.yc6{bottom:557.010000px;}
.y271{bottom:557.722080px;}
.y1a1{bottom:558.801720px;}
.y80{bottom:561.870000px;}
.y203{bottom:562.299840px;}
.y16f{bottom:564.389910px;}
.y49{bottom:566.820000px;}
.y233{bottom:570.452670px;}
.yf9{bottom:572.679810px;}
.y270{bottom:572.756400px;}
.y81{bottom:574.290000px;}
.y1d5{bottom:574.654590px;}
.y1a0{bottom:575.996040px;}
.y138{bottom:576.715770px;}
.yc5{bottom:578.791530px;}
.y202{bottom:579.584340px;}
.y16e{bottom:587.160360px;}
.y26f{bottom:587.694960px;}
.y232{bottom:587.737170px;}
.y48{bottom:588.510000px;}
.yf8{bottom:589.964310px;}
.y7d{bottom:591.347430px;}
.y7f{bottom:591.565680px;}
.y19f{bottom:593.280540px;}
.y137{bottom:594.000270px;}
.y1d4{bottom:594.901080px;}
.y201{bottom:596.778660px;}
.yc4{bottom:600.570000px;}
.y16d{bottom:604.444860px;}
.y26d{bottom:607.186530px;}
.y26e{bottom:607.230000px;}
.yf7{bottom:607.248810px;}
.y7c{bottom:608.541750px;}
.y7e{bottom:608.760000px;}
.y47{bottom:610.290000px;}
.y136{bottom:611.284770px;}
.y231{bottom:614.009610px;}
.y200{bottom:614.063160px;}
.y19e{bottom:614.878650px;}
.y1d3{bottom:616.589370px;}
.y16c{bottom:621.639180px;}
.yc3{bottom:622.260000px;}
.y26c{bottom:627.071220px;}
.yf6{bottom:628.846920px;}
.y230{bottom:631.203930px;}
.y1ff{bottom:631.347660px;}
.y135{bottom:631.444410px;}
.y46{bottom:632.346120px;}
.y1d2{bottom:633.873870px;}
.y19d{bottom:641.241270px;}
.y16b{bottom:643.417650px;}
.y7b{bottom:643.817160px;}
.yc2{bottom:644.041530px;}
.y26b{bottom:644.265540px;}
.y134{bottom:651.735270px;}
.y1fe{bottom:652.945770px;}
.y45{bottom:655.470000px;}
.y1d1{bottom:655.652340px;}
.y22f{bottom:657.491400px;}
.y19c{bottom:658.525770px;}
.yf5{bottom:659.718540px;}
.y16a{bottom:660.702150px;}
.y26a{bottom:661.550040px;}
.yc1{bottom:665.820000px;}
.y133{bottom:668.929590px;}
.y1c9{bottom:669.435000px;}
.y1d0{bottom:669.510000px;}
.y22e{bottom:674.775900px;}
.y7a{bottom:674.778960px;}
.y19b{bottom:675.720090px;}
.yf4{bottom:677.003040px;}
.y44{bottom:677.250000px;}
.y169{bottom:677.896470px;}
.y269{bottom:678.834540px;}
.y1fd{bottom:683.817390px;}
.y2c1{bottom:684.723060px;}
.y132{bottom:686.214090px;}
.yc0{bottom:687.498210px;}
.y79{bottom:691.973280px;}
.y19a{bottom:693.004590px;}
.y268{bottom:696.028860px;}
.y43{bottom:698.670000px;}
.yf3{bottom:698.691330px;}
.y168{bottom:699.674940px;}
.y22d{bottom:700.973190px;}
.y1fc{bottom:701.101890px;}
.y131{bottom:703.498590px;}
.y78{bottom:704.583450px;}
.y2c0{bottom:706.501530px;}
.ybf{bottom:709.276680px;}
.y199{bottom:713.201940px;}
.y267{bottom:713.313360px;}
.yf2{bottom:715.975830px;}
.y1c8{bottom:716.755230px;}
.y167{bottom:716.959440px;}
.y42{bottom:718.110000px;}
.y22c{bottom:718.257690px;}
.y1fb{bottom:722.700000px;}
.y7{bottom:724.970100px;}
.y130{bottom:725.186880px;}
.ybe{bottom:726.471000px;}
.y2bf{bottom:728.280000px;}
.y198{bottom:730.486440px;}
.y266{bottom:730.597860px;}
.yf1{bottom:733.260330px;}
.y41{bottom:737.640000px;}
.y166{bottom:738.647730px;}
.y1c7{bottom:738.714060px;}
.y75{bottom:739.783710px;}
.y12f{bottom:742.471380px;}
.y2b1{bottom:742.860000px;}
.ybd{bottom:743.755500px;}
.y22b{bottom:744.454980px;}
.y77{bottom:744.458040px;}
.y265{bottom:747.792180px;}
.y2bd{bottom:749.686680px;}
.y1a{bottom:749.709360px;}
.yf0{bottom:750.454650px;}
.y197{bottom:752.174730px;}
.y1fa{bottom:753.750000px;}
.y165{bottom:755.932230px;}
.y1c6{bottom:756.714060px;}
.y74{bottom:757.068210px;}
.y40{bottom:757.170000px;}
.y12e{bottom:759.755880px;}
.ybc{bottom:761.040000px;}
.y22a{bottom:761.739480px;}
.y76{bottom:761.742540px;}
.y2b7{bottom:763.452180px;}
.y264{bottom:765.076680px;}
.y2bc{bottom:766.971180px;}
.yef{bottom:767.739150px;}
.y196{bottom:769.459230px;}
.y6{bottom:772.370100px;}
.y164{bottom:773.216730px;}
.y1c5{bottom:774.688770px;}
.y19{bottom:775.981800px;}
.y3f{bottom:776.610000px;}
.y2b6{bottom:780.736680px;}
.y12d{bottom:781.353990px;}
.y263{bottom:782.271000px;}
.y25c{bottom:782.726400px;}
.ybb{bottom:783.000000px;}
.y2bb{bottom:784.165500px;}
.y1f9{bottom:786.055500px;}
.y195{bottom:786.743730px;}
.y229{bottom:788.011920px;}
.y73{bottom:788.030010px;}
.yee{bottom:789.427440px;}
.y163{bottom:790.411050px;}
.y3e{bottom:796.500000px;}
.y1c4{bottom:796.918140px;}
.y25e{bottom:797.395680px;}
.y2b5{bottom:798.021180px;}
.y262{bottom:799.555500px;}
.y25b{bottom:799.650180px;}
.y72{bottom:800.550000px;}
.y2ba{bottom:801.450000px;}
.y1f8{bottom:803.336850px;}
.y228{bottom:805.206240px;}
.yed{bottom:806.711940px;}
.y194{bottom:808.432020px;}
.y162{bottom:812.099340px;}
.y12c{bottom:812.405970px;}
.y25d{bottom:812.425680px;}
.y25a{bottom:814.680180px;}
.y2b4{bottom:815.215500px;}
.y2be{bottom:815.220000px;}
.y261{bottom:816.840000px;}
.y3d{bottom:818.280000px;}
.y2b9{bottom:818.284500px;}
.y18{bottom:820.170000px;}
.y1f7{bottom:820.531170px;}
.y70{bottom:823.590000px;}
.yec{bottom:823.996440px;}
.yba{bottom:824.040000px;}
.y193{bottom:825.716520px;}
.y1c3{bottom:827.699580px;}
.y259{bottom:829.620000px;}
.y12b{bottom:830.411910px;}
.y227{bottom:831.493710px;}
.y2b3{bottom:832.500000px;}
.y2b8{bottom:833.850000px;}
.y1f6{bottom:834.479010px;}
.y71{bottom:836.010000px;}
.y3c{bottom:839.610000px;}
.yeb{bottom:841.190760px;}
.y161{bottom:842.970960px;}
.y192{bottom:843.001020px;}
.y1c2{bottom:844.984080px;}
.yb8{bottom:847.080000px;}
.y12a{bottom:848.417850px;}
.y24f{bottom:848.700000px;}
.y226{bottom:848.778210px;}
.y6d{bottom:853.101270px;}
.y6f{bottom:853.285530px;}
.yea{bottom:858.475260px;}
.y3b{bottom:859.140000px;}
.yb9{bottom:859.500000px;}
.y160{bottom:860.165280px;}
.y191{bottom:860.195340px;}
.y1c1{bottom:862.268580px;}
.y17{bottom:862.920000px;}
.y2ac{bottom:864.360000px;}
.y24e{bottom:865.173240px;}
.y129{bottom:866.423790px;}
.y6c{bottom:870.295590px;}
.y6e{bottom:870.479850px;}
.y225{bottom:874.975500px;}
.ye9{bottom:875.759760px;}
.y4{bottom:875.905500px;}
.y15f{bottom:877.449780px;}
.y190{bottom:877.479840px;}
.y3a{bottom:879.030000px;}
.y24d{bottom:879.034500px;}
.y1c0{bottom:879.462900px;}
.y16{bottom:880.200000px;}
.y128{bottom:884.249370px;}
.y2b0{bottom:884.961000px;}
.y224{bottom:892.260000px;}
.y24c{bottom:892.800000px;}
.ye8{bottom:892.954080px;}
.yb7{bottom:893.790000px;}
.y18f{bottom:894.764340px;}
.y15{bottom:895.950000px;}
.y121{bottom:898.035000px;}
.y15e{bottom:899.138070px;}
.y39{bottom:900.720000px;}
.y1bf{bottom:901.151190px;}
.y2af{bottom:902.245500px;}
.y6b{bottom:905.751360px;}
.y127{bottom:907.110000px;}
.ye7{bottom:910.238580px;}
.y24b{bottom:911.070000px;}
.y24a{bottom:911.077740px;}
.y223{bottom:914.220000px;}
.y18e{bottom:916.362450px;}
.yb3{bottom:916.830000px;}
.y14{bottom:919.440630px;}
.y2ae{bottom:919.530000px;}
.y38{bottom:922.500000px;}
.y6a{bottom:923.035860px;}
.y249{bottom:924.939000px;}
.y15d{bottom:925.425540px;}
.yb6{bottom:929.250000px;}
.y120{bottom:930.685140px;}
.ye6{bottom:932.017050px;}
.y1be{bottom:932.022810px;}
.y248{bottom:938.704500px;}
.y69{bottom:940.140000px;}
.y15c{bottom:942.710040px;}
.y18d{bottom:942.725070px;}
.y37{bottom:944.280000px;}
.y222{bottom:946.422450px;}
.yb5{bottom:946.440000px;}
.y11f{bottom:948.144060px;}
.ye5{bottom:949.211370px;}
.y2a6{bottom:951.390000px;}
.y247{bottom:952.470000px;}
.y1bd{bottom:953.711100px;}
.y13{bottom:954.716040px;}
.y15b{bottom:959.904360px;}
.y18c{bottom:959.919390px;}
.y66{bottom:963.090000px;}
.yb1{bottom:963.535500px;}
.yb4{bottom:963.720000px;}
.y36{bottom:965.970000px;}
.y11e{bottom:966.111750px;}
.y221{bottom:968.200920px;}
.y246{bottom:970.830000px;}
.y245{bottom:970.839000px;}
.ye4{bottom:970.899660px;}
.y1bc{bottom:970.995600px;}
.y2ab{bottom:971.986680px;}
.y68{bottom:975.510000px;}
.y15a{bottom:977.188860px;}
.y18b{bottom:977.203890px;}
.yb0{bottom:980.820000px;}
.yb2{bottom:981.000000px;}
.y258{bottom:981.540000px;}
.y11d{bottom:984.117690px;}
.y244{bottom:984.604500px;}
.y220{bottom:985.485420px;}
.y35{bottom:987.750000px;}
.y1bb{bottom:988.280100px;}
.y2aa{bottom:989.181000px;}
.y12{bottom:989.991450px;}
.y65{bottom:992.610000px;}
.y243{bottom:998.370000px;}
.y159{bottom:998.877150px;}
.y18a{bottom:998.892180px;}
.ye3{bottom:1001.771280px;}
.y11c{bottom:1002.123630px;}
.yab{bottom:1003.860000px;}
.y1ba{bottom:1005.474420px;}
.y2a9{bottom:1006.465500px;}
.y21f{bottom:1007.173710px;}
.y11{bottom:1007.185770px;}
.y34{bottom:1009.440000px;}
.y256{bottom:1013.400000px;}
.y60{bottom:1015.650000px;}
.yaf{bottom:1016.190000px;}
.y242{bottom:1016.730000px;}
.y241{bottom:1016.739000px;}
.ye2{bottom:1018.965600px;}
.y11b{bottom:1020.129570px;}
.y2a8{bottom:1023.750000px;}
.y21e{bottom:1024.458210px;}
.y10{bottom:1024.470270px;}
.y158{bottom:1025.074440px;}
.y189{bottom:1025.164620px;}
.y1b9{bottom:1027.252890px;}
.y64{bottom:1027.980000px;}
.y240{bottom:1030.504500px;}
.y33{bottom:1031.220000px;}
.yae{bottom:1033.461180px;}
.ye1{bottom:1036.250100px;}
.y21d{bottom:1041.742710px;}
.yf{bottom:1041.754770px;}
.y11a{bottom:1042.449120px;}
.y23f{bottom:1044.270000px;}
.y1b8{bottom:1044.537390px;}
.y254{bottom:1048.590000px;}
.yad{bottom:1050.745680px;}
.y32{bottom:1053.280260px;}
.y2a1{bottom:1055.610000px;}
.y157{bottom:1055.946060px;}
.ye0{bottom:1058.028570px;}
.y119{bottom:1059.733620px;}
.y1b7{bottom:1061.731710px;}
.y62{bottom:1062.540000px;}
.y23e{bottom:1063.251900px;}
.y21c{bottom:1063.340820px;}
.y188{bottom:1064.137410px;}
.y23c{bottom:1067.400180px;}
.yac{bottom:1067.940000px;}
.y156{bottom:1073.230560px;}
.ydf{bottom:1075.222890px;}
.y2a4{bottom:1076.211000px;}
.y2a0{bottom:1076.215500px;}
.y31{bottom:1076.766480px;}
.y118{bottom:1076.927940px;}
.ye{bottom:1076.935500px;}
.y5c{bottom:1079.548380px;}
.y5f{bottom:1079.721000px;}
.y23d{bottom:1080.175680px;}
.y2a3{bottom:1080.720000px;}
.y23b{bottom:1082.430180px;}
.y1b6{bottom:1083.420000px;}
.y251{bottom:1083.870000px;}
.y2{bottom:1083.911850px;}
.yaa{bottom:1085.040000px;}
.y155{bottom:1090.424880px;}
.yde{bottom:1092.507390px;}
.y2a5{bottom:1093.495500px;}
.y29f{bottom:1093.500000px;}
.yd{bottom:1094.205960px;}
.y21b{bottom:1094.212440px;}
.y5b{bottom:1096.832880px;}
.y5e{bottom:1097.005500px;}
.y23a{bottom:1097.370000px;}
.y117{bottom:1098.616230px;}
.y30{bottom:1100.252700px;}
.y1{bottom:1105.511850px;}
.y3{bottom:1107.401850px;}
.y154{bottom:1107.709380px;}
.ya8{bottom:1108.080000px;}
.ydd{bottom:1109.791890px;}
.yc{bottom:1111.490460px;}
.y21a{bottom:1111.496940px;}
.y29e{bottom:1112.580000px;}
.y5a{bottom:1114.117380px;}
.y5d{bottom:1114.290000px;}
.y1b5{bottom:1114.470000px;}
.y237{bottom:1119.150000px;}
.ya9{bottom:1120.500000px;}
.y153{bottom:1124.993880px;}
.y2f{bottom:1126.440000px;}
.y2cb{bottom:1128.970620px;}
.y116{bottom:1129.487850px;}
.y5{bottom:1131.023550px;}
.ydc{bottom:1131.390000px;}
.y219{bottom:1133.095050px;}
.ya6{bottom:1137.498840px;}
.y59{bottom:1140.480000px;}
.y152{bottom:1142.188200px;}
.yb{bottom:1146.675690px;}
.y115{bottom:1146.682170px;}
.y29d{bottom:1150.830450px;}
.ya5{bottom:1154.783340px;}
.ya7{bottom:1154.970000px;}
.y58{bottom:1162.440000px;}
.y151{bottom:1163.876490px;}
.y2ca{bottom:1163.885400px;}
.ya{bottom:1163.960190px;}
.y114{bottom:1163.966670px;}
.y2c4{bottom:1164.090450px;}
.y29c{bottom:1165.860450px;}
.y2d{bottom:1189.170000px;}
.y8{bottom:1206.450000px;}
.y2c2{bottom:1206.570450px;}
.h20{height:29.250000px;}
.h31{height:30.099271px;}
.h22{height:30.325794px;}
.h29{height:30.893404px;}
.hc{height:33.431484px;}
.h39{height:34.470000px;}
.h41{height:34.471500px;}
.h3b{height:34.560000px;}
.h34{height:35.549844px;}
.h43{height:36.268500px;}
.h42{height:36.360000px;}
.h2c{height:36.487782px;}
.hb{height:41.170254px;}
.he{height:43.769004px;}
.h27{height:43.948500px;}
.h33{height:45.110034px;}
.h3e{height:46.432617px;}
.h2e{height:47.250000px;}
.h32{height:47.298917px;}
.h2a{height:48.546902px;}
.h4a{height:49.937344px;}
.h3f{height:51.300000px;}
.h4d{height:51.385430px;}
.h8{height:51.694980px;}
.h35{height:51.697500px;}
.h38{height:51.707580px;}
.h36{height:51.716940px;}
.h1f{height:51.718740px;}
.h2d{height:51.722340px;}
.h37{height:51.742140px;}
.h26{height:51.819900px;}
.h1e{height:51.847980px;}
.h24{height:51.873900px;}
.h25{height:51.887220px;}
.h4c{height:52.260820px;}
.h1b{height:52.414980px;}
.h16{height:52.416420px;}
.h13{height:52.560000px;}
.hd{height:52.575645px;}
.h2{height:53.064000px;}
.h23{height:54.158203px;}
.h44{height:56.250000px;}
.h11{height:56.647793px;}
.h10{height:57.612832px;}
.h1d{height:57.900832px;}
.h2b{height:61.303782px;}
.h2f{height:62.027157px;}
.h49{height:62.703281px;}
.ha{height:63.329484px;}
.h9{height:63.367644px;}
.h28{height:63.531322px;}
.h30{height:64.333280px;}
.h14{height:69.748500px;}
.h17{height:69.750000px;}
.h15{height:70.392300px;}
.h21{height:71.505492px;}
.h6{height:79.596000px;}
.h4b{height:80.460000px;}
.h47{height:86.218500px;}
.h18{height:86.940000px;}
.h19{height:87.028500px;}
.h1c{height:87.030000px;}
.h45{height:102.796980px;}
.h46{height:103.410000px;}
.h1a{height:104.220000px;}
.h40{height:104.941500px;}
.h5{height:105.696000px;}
.h48{height:120.778500px;}
.h12{height:121.500000px;}
.h4{height:132.660000px;}
.h3{height:158.544000px;}
.h3c{height:163.890000px;}
.h3a{height:269.640000px;}
.hf{height:303.660000px;}
.h3d{height:312.660000px;}
.h0{height:1262.835000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:84.330000px;}
.wf{width:125.010000px;}
.w5{width:129.375000px;}
.wc{width:145.530000px;}
.wd{width:148.048500px;}
.w8{width:149.128500px;}
.w9{width:157.591500px;}
.w6{width:158.625000px;}
.w10{width:158.671500px;}
.wb{width:188.190000px;}
.wa{width:244.350000px;}
.we{width:328.771500px;}
.w7{width:353.325000px;}
.w14{width:412.200000px;}
.w4{width:539.640000px;}
.w3{width:711.990000px;}
.w13{width:892.500000px;}
.w12{width:892.830000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:4.860000px;}
.x8{left:8.100000px;}
.x56{left:10.800000px;}
.x19{left:26.813700px;}
.x12{left:28.980000px;}
.x1b{left:37.594950px;}
.x54{left:40.770000px;}
.x52{left:49.050000px;}
.x4f{left:54.090000px;}
.x2f{left:61.036050px;}
.x1c{left:64.129800px;}
.x23{left:67.803298px;}
.x2b{left:71.176950px;}
.x24{left:72.324900px;}
.x1{left:74.873700px;}
.x3{left:76.535400px;}
.x2e{left:91.601400px;}
.x7{left:98.280000px;}
.x22{left:100.607033px;}
.x21{left:103.814287px;}
.x15{left:104.940000px;}
.x5{left:106.380000px;}
.x1a{left:111.762450px;}
.x18{left:114.870000px;}
.xf{left:118.530000px;}
.xc{left:123.033240px;}
.x2a{left:124.346400px;}
.xa{left:127.710000px;}
.x2d{left:130.033050px;}
.x1e{left:133.354530px;}
.x20{left:134.972850px;}
.x34{left:138.243600px;}
.x1f{left:140.165850px;}
.x29{left:142.827600px;}
.x30{left:154.098759px;}
.x26{left:163.678200px;}
.xb{left:170.190000px;}
.x6{left:187.376670px;}
.x3d{left:209.340000px;}
.x10{left:237.780000px;}
.x55{left:241.380000px;}
.x1d{left:244.170000px;}
.x43{left:252.630000px;}
.x35{left:256.680000px;}
.x38{left:264.329100px;}
.xe{left:268.380000px;}
.x25{left:273.420000px;}
.xd{left:276.480000px;}
.x2c{left:283.190850px;}
.x13{left:302.400000px;}
.x16{left:319.230000px;}
.x28{left:330.436650px;}
.x27{left:336.123150px;}
.x14{left:352.620000px;}
.x41{left:393.840000px;}
.x17{left:397.260000px;}
.x44{left:401.592330px;}
.x33{left:405.000000px;}
.x9{left:409.140000px;}
.x36{left:415.080000px;}
.x39{left:422.715240px;}
.x31{left:468.180000px;}
.x3a{left:471.510000px;}
.x3f{left:477.810000px;}
.x11{left:488.430000px;}
.x40{left:510.480000px;}
.x46{left:553.230000px;}
.x4{left:580.293900px;}
.x49{left:581.842440px;}
.x48{left:585.630000px;}
.x4a{left:590.214150px;}
.x50{left:594.000000px;}
.x51{left:598.584150px;}
.x3b{left:608.670000px;}
.x3c{left:623.880000px;}
.x4b{left:638.280000px;}
.x37{left:660.240000px;}
.x4d{left:666.892440px;}
.x3e{left:667.980000px;}
.x4c{left:670.680000px;}
.x32{left:673.637940px;}
.x4e{left:675.264150px;}
.x53{left:679.050000px;}
.x2{left:717.077700px;}
.x42{left:723.420000px;}
.x45{left:731.079990px;}
@media print{
.v2{vertical-align:-26.560533pt;}
.v6{vertical-align:-18.538880pt;}
.v7{vertical-align:-17.333333pt;}
.va{vertical-align:-14.437333pt;}
.v4{vertical-align:-7.864000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.000000pt;}
.v3{vertical-align:16.619840pt;}
.v8{vertical-align:18.560000pt;}
.v9{vertical-align:22.058667pt;}
.v1{vertical-align:26.609920pt;}
.vb{vertical-align:45.424000pt;}
.ls62{letter-spacing:-0.801600pt;}
.ls61{letter-spacing:-0.748160pt;}
.ls5d{letter-spacing:-0.587840pt;}
.ls19{letter-spacing:-0.427520pt;}
.ls5c{letter-spacing:-0.374080pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.320640pt;}
.ls7{letter-spacing:-0.267200pt;}
.ls60{letter-spacing:-0.255360pt;}
.ls18{letter-spacing:-0.213760pt;}
.ls13{letter-spacing:-0.160320pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls5e{letter-spacing:-0.127680pt;}
.ls6{letter-spacing:-0.106880pt;}
.ls67{letter-spacing:-0.106240pt;}
.ls65{letter-spacing:-0.096000pt;}
.ls5f{letter-spacing:-0.085120pt;}
.ls8{letter-spacing:-0.053440pt;}
.ls20{letter-spacing:-0.034560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.010688pt;}
.ls27{letter-spacing:0.041280pt;}
.ls5b{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.053440pt;}
.lsd{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.069472pt;}
.ls4d{letter-spacing:0.073500pt;}
.ls4c{letter-spacing:0.075439pt;}
.ls2f{letter-spacing:0.080889pt;}
.ls1b{letter-spacing:0.085504pt;}
.ls5{letter-spacing:0.096000pt;}
.ls4a{letter-spacing:0.105280pt;}
.ls55{letter-spacing:0.106400pt;}
.ls4{letter-spacing:0.106880pt;}
.ls57{letter-spacing:0.109476pt;}
.ls50{letter-spacing:0.114240pt;}
.ls2e{letter-spacing:0.120000pt;}
.ls43{letter-spacing:0.123520pt;}
.ls58{letter-spacing:0.124480pt;}
.ls3a{letter-spacing:0.126400pt;}
.ls54{letter-spacing:0.127680pt;}
.ls36{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.134400pt;}
.ls38{letter-spacing:0.140160pt;}
.ls41{letter-spacing:0.142720pt;}
.ls4e{letter-spacing:0.148352pt;}
.ls44{letter-spacing:0.150400pt;}
.ls46{letter-spacing:0.156160pt;}
.ls59{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.160320pt;}
.ls42{letter-spacing:0.166080pt;}
.ls3d{letter-spacing:0.171200pt;}
.ls5a{letter-spacing:0.183680pt;}
.ls66{letter-spacing:0.231040pt;}
.ls63{letter-spacing:0.340480pt;}
.ls56{letter-spacing:0.432210pt;}
.ls47{letter-spacing:0.480960pt;}
.ls26{letter-spacing:0.801600pt;}
.ls25{letter-spacing:1.763520pt;}
.ls40{letter-spacing:2.404800pt;}
.ls23{letter-spacing:2.725440pt;}
.ls45{letter-spacing:3.366720pt;}
.ls39{letter-spacing:3.687360pt;}
.ls35{letter-spacing:4.649280pt;}
.ls17{letter-spacing:4.980608pt;}
.ls52{letter-spacing:5.258496pt;}
.ls2b{letter-spacing:5.931840pt;}
.ls2a{letter-spacing:6.252480pt;}
.ls22{letter-spacing:6.573120pt;}
.ls31{letter-spacing:8.721408pt;}
.ls2d{letter-spacing:11.382720pt;}
.ls2c{letter-spacing:11.703360pt;}
.ls28{letter-spacing:12.911104pt;}
.ls4f{letter-spacing:12.985920pt;}
.ls2{letter-spacing:13.627200pt;}
.ls3e{letter-spacing:14.909760pt;}
.ls1d{letter-spacing:18.116160pt;}
.ls51{letter-spacing:18.757440pt;}
.ls3c{letter-spacing:19.398720pt;}
.ls37{letter-spacing:19.719360pt;}
.ls29{letter-spacing:21.001920pt;}
.ls12{letter-spacing:22.285440pt;}
.ls3b{letter-spacing:28.323200pt;}
.ls33{letter-spacing:28.964480pt;}
.lse{letter-spacing:29.982720pt;}
.ls34{letter-spacing:32.812160pt;}
.ls11{letter-spacing:34.125440pt;}
.ls53{letter-spacing:39.224960pt;}
.ls4b{letter-spacing:41.469440pt;}
.ls49{letter-spacing:41.790080pt;}
.ls10{letter-spacing:51.725440pt;}
.ls30{letter-spacing:52.050560pt;}
.lsf{letter-spacing:63.565440pt;}
.ls32{letter-spacing:69.632320pt;}
.ls1a{letter-spacing:89.150720pt;}
.ls21{letter-spacing:99.077760pt;}
.ls14{letter-spacing:216.485440pt;}
.ls15{letter-spacing:267.039680pt;}
.ls1c{letter-spacing:284.995520pt;}
.ls16{letter-spacing:296.485120pt;}
.ls64{letter-spacing:318.929920pt;}
.ls1e{letter-spacing:753.135040pt;}
.lsb{letter-spacing:1425.458560pt;}
.lsc{letter-spacing:2118.896000pt;}
.ws6a{word-spacing:-53.386560pt;}
.ws93{word-spacing:-31.704677pt;}
.ws78{word-spacing:-29.338560pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1c{word-spacing:-16.338240pt;}
.ws91{word-spacing:-16.054463pt;}
.wsa1{word-spacing:-15.016640pt;}
.wsa4{word-spacing:-14.980800pt;}
.ws1e{word-spacing:-14.963200pt;}
.ws4{word-spacing:-14.909760pt;}
.ws5{word-spacing:-14.856320pt;}
.ws1d{word-spacing:-14.802880pt;}
.ws2{word-spacing:-14.749440pt;}
.ws1b{word-spacing:-14.696000pt;}
.wsb0{word-spacing:-14.661120pt;}
.ws84{word-spacing:-14.642560pt;}
.ws8{word-spacing:-14.589120pt;}
.ws3d{word-spacing:-14.535680pt;}
.ws1f{word-spacing:-14.428800pt;}
.wsa2{word-spacing:-14.268480pt;}
.wsa3{word-spacing:-14.108160pt;}
.ws6{word-spacing:-13.200000pt;}
.ws7{word-spacing:-13.008000pt;}
.wsa5{word-spacing:-12.172160pt;}
.wsa0{word-spacing:-11.831680pt;}
.ws9f{word-spacing:-11.704000pt;}
.ws8d{word-spacing:-10.486012pt;}
.ws95{word-spacing:-10.216463pt;}
.ws3{word-spacing:-9.607680pt;}
.ws3e{word-spacing:-9.573120pt;}
.wsaf{word-spacing:-0.534400pt;}
.ws18{word-spacing:-0.480960pt;}
.wsa6{word-spacing:-0.427520pt;}
.wsac{word-spacing:-0.213760pt;}
.wse{word-spacing:-0.160320pt;}
.ws17{word-spacing:-0.106880pt;}
.ws70{word-spacing:-0.080889pt;}
.ws9a{word-spacing:-0.075439pt;}
.ws9b{word-spacing:-0.073500pt;}
.wsd{word-spacing:-0.053440pt;}
.ws1{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.053120pt;}
.ws1a{word-spacing:0.053440pt;}
.ws15{word-spacing:0.096000pt;}
.ws19{word-spacing:0.106880pt;}
.wsa8{word-spacing:0.127680pt;}
.ws14{word-spacing:0.160320pt;}
.wsae{word-spacing:0.192000pt;}
.wsa9{word-spacing:0.212800pt;}
.ws16{word-spacing:0.240000pt;}
.wsa7{word-spacing:0.255360pt;}
.ws2f{word-spacing:0.267200pt;}
.wsaa{word-spacing:0.383040pt;}
.ws6e{word-spacing:0.427520pt;}
.ws20{word-spacing:0.480960pt;}
.wsab{word-spacing:0.587840pt;}
.wsb1{word-spacing:0.690560pt;}
.wsad{word-spacing:0.748160pt;}
.ws4e{word-spacing:0.801600pt;}
.ws4d{word-spacing:1.122240pt;}
.ws21{word-spacing:1.442880pt;}
.ws2e{word-spacing:1.763520pt;}
.ws4c{word-spacing:2.084160pt;}
.ws5c{word-spacing:2.404800pt;}
.ws66{word-spacing:2.725440pt;}
.ws29{word-spacing:3.046080pt;}
.ws5b{word-spacing:3.366720pt;}
.ws58{word-spacing:3.687360pt;}
.ws55{word-spacing:4.008000pt;}
.ws98{word-spacing:4.221760pt;}
.ws87{word-spacing:4.275200pt;}
.ws3b{word-spacing:4.595840pt;}
.ws3c{word-spacing:4.916480pt;}
.ws30{word-spacing:5.237120pt;}
.ws59{word-spacing:5.450880pt;}
.ws5a{word-spacing:5.557760pt;}
.ws74{word-spacing:5.771520pt;}
.ws68{word-spacing:5.878400pt;}
.ws3f{word-spacing:6.199040pt;}
.ws64{word-spacing:6.519680pt;}
.ws37{word-spacing:6.840320pt;}
.ws63{word-spacing:7.160960pt;}
.ws42{word-spacing:7.481600pt;}
.ws26{word-spacing:7.802240pt;}
.ws23{word-spacing:8.122880pt;}
.ws35{word-spacing:8.443520pt;}
.ws4a{word-spacing:8.764160pt;}
.ws57{word-spacing:9.084800pt;}
.ws7e{word-spacing:9.405440pt;}
.ws13{word-spacing:9.726080pt;}
.ws7a{word-spacing:10.046720pt;}
.ws52{word-spacing:10.367360pt;}
.ws53{word-spacing:10.688000pt;}
.ws79{word-spacing:11.008640pt;}
.ws75{word-spacing:11.329280pt;}
.ws65{word-spacing:11.596480pt;}
.ws39{word-spacing:11.649920pt;}
.ws43{word-spacing:11.970560pt;}
.ws32{word-spacing:12.291200pt;}
.ws44{word-spacing:12.611840pt;}
.ws71{word-spacing:12.932480pt;}
.ws9d{word-spacing:13.253120pt;}
.wsb{word-spacing:13.573760pt;}
.ws11{word-spacing:13.680640pt;}
.wsc{word-spacing:13.734080pt;}
.ws12{word-spacing:13.894400pt;}
.ws97{word-spacing:14.856320pt;}
.ws27{word-spacing:15.176960pt;}
.ws51{word-spacing:15.497600pt;}
.ws49{word-spacing:16.138880pt;}
.ws41{word-spacing:16.459520pt;}
.ws4f{word-spacing:16.780160pt;}
.ws40{word-spacing:17.100800pt;}
.ws7d{word-spacing:17.421440pt;}
.ws82{word-spacing:17.742080pt;}
.ws25{word-spacing:18.062720pt;}
.ws22{word-spacing:18.704000pt;}
.ws48{word-spacing:19.024640pt;}
.ws88{word-spacing:19.345280pt;}
.ws31{word-spacing:19.665920pt;}
.ws10{word-spacing:19.986560pt;}
.wsf{word-spacing:20.307200pt;}
.ws50{word-spacing:20.627840pt;}
.ws6f{word-spacing:20.948480pt;}
.ws7c{word-spacing:21.589760pt;}
.ws56{word-spacing:21.910400pt;}
.ws60{word-spacing:22.231040pt;}
.ws2a{word-spacing:22.551680pt;}
.ws83{word-spacing:22.872320pt;}
.ws61{word-spacing:23.513600pt;}
.ws5d{word-spacing:23.834240pt;}
.ws73{word-spacing:24.154880pt;}
.ws3a{word-spacing:24.475520pt;}
.ws38{word-spacing:24.796160pt;}
.ws72{word-spacing:25.116800pt;}
.ws46{word-spacing:25.437440pt;}
.ws47{word-spacing:25.597760pt;}
.ws4b{word-spacing:25.758080pt;}
.ws9e{word-spacing:26.078720pt;}
.ws85{word-spacing:26.399360pt;}
.ws28{word-spacing:26.720000pt;}
.wsa{word-spacing:27.040640pt;}
.ws9{word-spacing:27.361280pt;}
.ws7b{word-spacing:28.323200pt;}
.ws24{word-spacing:28.643840pt;}
.ws9c{word-spacing:28.964480pt;}
.ws5f{word-spacing:29.285120pt;}
.ws67{word-spacing:30.567680pt;}
.ws89{word-spacing:30.888320pt;}
.ws8f{word-spacing:31.508749pt;}
.ws76{word-spacing:32.438080pt;}
.ws69{word-spacing:33.079360pt;}
.ws54{word-spacing:33.720640pt;}
.ws99{word-spacing:35.323840pt;}
.ws45{word-spacing:35.965120pt;}
.ws86{word-spacing:36.285760pt;}
.ws2d{word-spacing:36.606400pt;}
.ws80{word-spacing:37.568320pt;}
.ws7f{word-spacing:37.888960pt;}
.ws2b{word-spacing:38.209600pt;}
.ws2c{word-spacing:38.476800pt;}
.ws5e{word-spacing:39.171520pt;}
.ws81{word-spacing:41.736640pt;}
.ws62{word-spacing:44.622400pt;}
.ws77{word-spacing:44.943040pt;}
.ws96{word-spacing:54.241600pt;}
.ws36{word-spacing:64.128000pt;}
.ws34{word-spacing:72.785280pt;}
.ws33{word-spacing:90.046400pt;}
.ws6d{word-spacing:182.789878pt;}
.ws8a{word-spacing:192.433405pt;}
.ws8e{word-spacing:199.914545pt;}
.ws6b{word-spacing:227.603248pt;}
.ws8c{word-spacing:286.679181pt;}
.ws6c{word-spacing:336.351473pt;}
.ws8b{word-spacing:396.421837pt;}
.ws90{word-spacing:658.747450pt;}
.ws94{word-spacing:922.930679pt;}
.ws92{word-spacing:1059.723128pt;}
._17{margin-left:-187.925758pt;}
._14{margin-left:-187.011037pt;}
._2c{margin-left:-169.499259pt;}
._2f{margin-left:-164.461912pt;}
._21{margin-left:-160.512909pt;}
._2e{margin-left:-156.474674pt;}
._2b{margin-left:-154.850652pt;}
._25{margin-left:-153.819985pt;}
._2a{margin-left:-151.733725pt;}
._1f{margin-left:-149.310198pt;}
._24{margin-left:-147.057802pt;}
._30{margin-left:-145.455972pt;}
._29{margin-left:-144.514732pt;}
._13{margin-left:-139.705964pt;}
._22{margin-left:-136.270006pt;}
._15{margin-left:-134.650136pt;}
._2d{margin-left:-118.920829pt;}
._20{margin-left:-117.361728pt;}
._16{margin-left:-92.446531pt;}
._23{margin-left:-82.093936pt;}
._6{margin-left:-12.800000pt;}
._7{margin-left:-9.600000pt;}
._2{margin-left:-7.360000pt;}
._5{margin-left:-6.412800pt;}
._4{margin-left:-4.800000pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.280000pt;}
._8{width:2.560000pt;}
._9{width:4.630400pt;}
._18{width:6.303360pt;}
._33{width:7.585920pt;}
._c{width:9.563200pt;}
._19{width:11.039040pt;}
._32{width:12.177088pt;}
._a{width:13.672960pt;}
._1d{width:18.424000pt;}
._b{width:19.660800pt;}
._e{width:26.996160pt;}
._1c{width:28.424960pt;}
._31{width:41.930560pt;}
._12{width:43.179520pt;}
._11{width:49.835840pt;}
._1b{width:58.837440pt;}
._1e{width:69.097920pt;}
._1a{width:99.344960pt;}
._10{width:156.805760pt;}
._f{width:180.360000pt;}
._28{width:243.508658pt;}
._27{width:265.415591pt;}
._26{width:379.968139pt;}
._d{width:753.129920pt;}
.fs6{font-size:34.560000pt;}
.fs12{font-size:36.749867pt;}
.fse{font-size:37.719467pt;}
.fsb{font-size:40.444267pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs14{font-size:53.120000pt;}
.fs5{font-size:53.440000pt;}
.fs13{font-size:57.749867pt;}
.fs9{font-size:58.560000pt;}
.fsf{font-size:59.273600pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs10{font-size:79.406400pt;}
.fsd{font-size:81.332800pt;}
.fs11{font-size:82.359467pt;}
.fsa{font-size:91.541333pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y250{bottom:2.400000pt;}
.y295{bottom:2.640000pt;}
.y277{bottom:2.720000pt;}
.y239{bottom:2.880000pt;}
.y2c{bottom:2.960000pt;}
.y253{bottom:3.040000pt;}
.y1cd{bottom:3.363643pt;}
.y1e6{bottom:3.484324pt;}
.y124{bottom:4.333200pt;}
.y123{bottom:4.333333pt;}
.y297{bottom:4.560000pt;}
.y1e0{bottom:7.096267pt;}
.y1e4{bottom:7.096533pt;}
.y126{bottom:8.666400pt;}
.y125{bottom:8.666533pt;}
.y122{bottom:8.757067pt;}
.y1cf{bottom:11.110524pt;}
.y1cb{bottom:11.113733pt;}
.y1de{bottom:14.766000pt;}
.y1e8{bottom:14.766533pt;}
.y1cc{bottom:14.818267pt;}
.y1ca{bottom:14.860533pt;}
.y238{bottom:18.240000pt;}
.y252{bottom:18.320000pt;}
.y1df{bottom:18.375467pt;}
.y1e2{bottom:18.375600pt;}
.y1e3{bottom:18.375733pt;}
.y1e5{bottom:18.375867pt;}
.y255{bottom:18.400000pt;}
.y1dc{bottom:18.457200pt;}
.y1dd{bottom:18.498400pt;}
.y296{bottom:19.920000pt;}
.y291{bottom:20.000000pt;}
.y1ce{bottom:24.035311pt;}
.y1e7{bottom:24.119374pt;}
.y63{bottom:26.320000pt;}
.y67{bottom:26.400000pt;}
.y1e1{bottom:27.727067pt;}
.y2a2{bottom:37.680000pt;}
.y2c3{bottom:40.187200pt;}
.y9{bottom:40.794240pt;}
.y2e{bottom:40.800000pt;}
.y85{bottom:41.680000pt;}
.y282{bottom:49.680000pt;}
.y61{bottom:56.960000pt;}
.y92{bottom:57.040000pt;}
.y2c6{bottom:59.360000pt;}
.y2ad{bottom:64.320000pt;}
.ya0{bottom:72.320000pt;}
.y2b{bottom:75.680000pt;}
.y2a7{bottom:79.600000pt;}
.y28a{bottom:80.960000pt;}
.y9f{bottom:82.160000pt;}
.y187{bottom:82.990880pt;}
.y2c5{bottom:83.840000pt;}
.y29b{bottom:85.352640pt;}
.y99{bottom:87.680000pt;}
.y2c9{bottom:88.324960pt;}
.ya4{bottom:93.188160pt;}
.y218{bottom:93.865120pt;}
.y2a{bottom:93.959040pt;}
.y113{bottom:94.327600pt;}
.y2b2{bottom:95.040000pt;}
.y186{bottom:98.354880pt;}
.y29a{bottom:100.716800pt;}
.y1b4{bottom:107.749600pt;}
.ya3{bottom:108.472000pt;}
.y150{bottom:108.656560pt;}
.y2c8{bottom:109.280800pt;}
.y29{bottom:109.323040pt;}
.y112{bottom:109.691600pt;}
.y217{bottom:113.063440pt;}
.y185{bottom:113.638720pt;}
.y299{bottom:116.080960pt;}
.ya2{bottom:123.836000pt;}
.y14f{bottom:123.940400pt;}
.y28{bottom:124.606880pt;}
.y111{bottom:125.055600pt;}
.y2c7{bottom:126.080000pt;}
.y184{bottom:129.002720pt;}
.y298{bottom:131.360000pt;}
.y1b3{bottom:132.706080pt;}
.y257{bottom:133.360000pt;}
.y9e{bottom:139.036160pt;}
.ya1{bottom:139.200000pt;}
.y14e{bottom:139.304400pt;}
.y27{bottom:139.970880pt;}
.y110{bottom:140.339440pt;}
.y216{bottom:140.504880pt;}
.y294{bottom:144.320000pt;}
.y183{bottom:144.366720pt;}
.y9d{bottom:154.320000pt;}
.y14d{bottom:154.668400pt;}
.y26{bottom:155.174560pt;}
.y10f{bottom:155.703440pt;}
.ydb{bottom:155.776000pt;}
.y215{bottom:155.788720pt;}
.y1b2{bottom:157.582400pt;}
.y293{bottom:160.320000pt;}
.y182{bottom:163.645200pt;}
.y1f5{bottom:169.435760pt;}
.y14c{bottom:169.952240pt;}
.y25{bottom:170.618720pt;}
.y10e{bottom:171.067440pt;}
.y98{bottom:174.800000pt;}
.y214{bottom:175.147360pt;}
.yda{bottom:176.417200pt;}
.y290{bottom:177.200000pt;}
.y181{bottom:179.009200pt;}
.y292{bottom:181.840000pt;}
.y1b1{bottom:182.538880pt;}
.y14b{bottom:185.316240pt;}
.y9c{bottom:185.840000pt;}
.y24{bottom:185.982720pt;}
.y10d{bottom:186.351280pt;}
.y1f4{bottom:188.954720pt;}
.y213{bottom:190.511360pt;}
.yd9{bottom:191.781200pt;}
.y28f{bottom:193.280000pt;}
.y180{bottom:194.373200pt;}
.y1b0{bottom:197.902880pt;}
.y14a{bottom:200.680240pt;}
.y23{bottom:201.266560pt;}
.y1f3{bottom:204.949520pt;}
.y10c{bottom:205.709920pt;}
.y212{bottom:205.795200pt;}
.y289{bottom:210.160000pt;}
.yd8{bottom:211.139840pt;}
.y17f{bottom:213.651680pt;}
.y9b{bottom:216.480000pt;}
.y22{bottom:216.630560pt;}
.y149{bottom:219.878560pt;}
.y10b{bottom:221.073920pt;}
.y211{bottom:221.159200pt;}
.y1af{bottom:222.779200pt;}
.y1f2{bottom:224.949440pt;}
.yd7{bottom:226.423680pt;}
.y17e{bottom:229.015680pt;}
.y97{bottom:231.672160pt;}
.y21{bottom:231.994560pt;}
.y10a{bottom:236.357760pt;}
.y57{bottom:238.556640pt;}
.y210{bottom:240.437680pt;}
.y1f1{bottom:240.954720pt;}
.y28e{bottom:241.440000pt;}
.yd6{bottom:241.787680pt;}
.y17d{bottom:244.299520pt;}
.y96{bottom:246.956000pt;}
.y9a{bottom:247.120000pt;}
.y20{bottom:247.278400pt;}
.y148{bottom:247.320000pt;}
.y1ae{bottom:247.735680pt;}
.y109{bottom:251.721760pt;}
.y56{bottom:253.600000pt;}
.y288{bottom:254.962320pt;}
.y1f0{bottom:256.949520pt;}
.yd5{bottom:257.151680pt;}
.y28c{bottom:260.476000pt;}
.y95{bottom:262.320000pt;}
.y1f{bottom:262.642400pt;}
.y1ad{bottom:263.099680pt;}
.y17c{bottom:263.578000pt;}
.y260{bottom:265.600000pt;}
.y147{bottom:266.678640pt;}
.y55{bottom:267.440960pt;}
.y20f{bottom:267.798960pt;}
.y108{bottom:271.080400pt;}
.yd4{bottom:272.435520pt;}
.y28d{bottom:272.800000pt;}
.y287{bottom:273.920160pt;}
.y28b{bottom:275.840000pt;}
.y1ef{bottom:276.949440pt;}
.y1e{bottom:278.006400pt;}
.y146{bottom:281.962480pt;}
.y91{bottom:282.800000pt;}
.y20e{bottom:283.162960pt;}
.y107{bottom:286.364240pt;}
.y17b{bottom:287.011440pt;}
.y286{bottom:287.200000pt;}
.yd3{bottom:287.799520pt;}
.y1ac{bottom:287.976000pt;}
.y54{bottom:288.317600pt;}
.y1ee{bottom:292.954720pt;}
.y1d{bottom:293.210080pt;}
.y94{bottom:293.836160pt;}
.y145{bottom:297.326480pt;}
.y20d{bottom:298.526960pt;}
.y106{bottom:301.728240pt;}
.y17a{bottom:302.295280pt;}
.yd2{bottom:303.083360pt;}
.y285{bottom:304.160000pt;}
.y1ab{bottom:307.334640pt;}
.y1c{bottom:308.574080pt;}
.y1ed{bottom:308.955120pt;}
.y53{bottom:308.960000pt;}
.y93{bottom:309.120000pt;}
.y20c{bottom:313.810800pt;}
.y144{bottom:316.685120pt;}
.y105{bottom:317.092240pt;}
.y179{bottom:317.659280pt;}
.yd1{bottom:318.447360pt;}
.y1b{bottom:320.972160pt;}
.y1aa{bottom:322.698640pt;}
.y52{bottom:328.320000pt;}
.y1ec{bottom:331.439440pt;}
.y143{bottom:331.968960pt;}
.y104{bottom:332.376080pt;}
.y178{bottom:333.023280pt;}
.y20b{bottom:333.089280pt;}
.y281{bottom:335.440000pt;}
.yd0{bottom:337.806000pt;}
.y90{bottom:339.680000pt;}
.y1a9{bottom:341.977120pt;}
.y1eb{bottom:346.803440pt;}
.y142{bottom:347.332960pt;}
.y51{bottom:347.600000pt;}
.y103{bottom:351.734720pt;}
.y177{bottom:352.221600pt;}
.ycf{bottom:353.089840pt;}
.y1a8{bottom:357.341120pt;}
.y8d{bottom:360.160000pt;}
.y20a{bottom:360.530720pt;}
.y141{bottom:362.696960pt;}
.y1ea{bottom:366.162080pt;}
.y284{bottom:366.800000pt;}
.y50{bottom:366.960000pt;}
.y102{bottom:367.018560pt;}
.yce{bottom:368.453840pt;}
.y283{bottom:369.840000pt;}
.y8f{bottom:371.120000pt;}
.y1a7{bottom:372.705120pt;}
.y209{bottom:375.814560pt;}
.y140{bottom:377.980800pt;}
.y1db{bottom:378.453333pt;}
.y1e9{bottom:378.480000pt;}
.y176{bottom:379.663040pt;}
.y101{bottom:382.382560pt;}
.ycd{bottom:383.817840pt;}
.y27d{bottom:385.920160pt;}
.y4f{bottom:386.240000pt;}
.y8a{bottom:386.312160pt;}
.y8e{bottom:386.480000pt;}
.y208{bottom:391.178560pt;}
.y1a6{bottom:391.903440pt;}
.y13f{bottom:393.344800pt;}
.y27f{bottom:393.922800pt;}
.y175{bottom:395.027040pt;}
.y100{bottom:397.746560pt;}
.y280{bottom:398.160000pt;}
.ycc{bottom:399.101680pt;}
.y27c{bottom:399.200000pt;}
.y89{bottom:401.676160pt;}
.y8c{bottom:401.836160pt;}
.y4e{bottom:405.600000pt;}
.y13e{bottom:408.708800pt;}
.y207{bottom:410.457040pt;}
.y27b{bottom:412.560000pt;}
.y27e{bottom:412.800480pt;}
.yff{bottom:413.030400pt;}
.ycb{bottom:414.465680pt;}
.y174{bottom:415.267440pt;}
.y88{bottom:416.960000pt;}
.y8b{bottom:417.120000pt;}
.y1a5{bottom:419.344880pt;}
.y1da{bottom:423.441040pt;}
.y13d{bottom:423.992640pt;}
.y4d{bottom:424.960000pt;}
.y276{bottom:429.440000pt;}
.yca{bottom:429.829680pt;}
.y173{bottom:430.551280pt;}
.yfe{bottom:432.389040pt;}
.y1a4{bottom:434.708880pt;}
.y84{bottom:437.440000pt;}
.y206{bottom:437.818320pt;}
.y278{bottom:439.922320pt;}
.y27a{bottom:442.714560pt;}
.y1d9{bottom:442.954720pt;}
.y13c{bottom:443.351280pt;}
.y4c{bottom:444.240000pt;}
.yc9{bottom:445.113520pt;}
.y275{bottom:445.520160pt;}
.yfd{bottom:447.753040pt;}
.y87{bottom:448.476000pt;}
.y1a3{bottom:449.992720pt;}
.y172{bottom:450.791680pt;}
.y205{bottom:453.182320pt;}
.y279{bottom:458.479360pt;}
.y13b{bottom:458.635120pt;}
.y274{bottom:458.800000pt;}
.y1d8{bottom:458.953920pt;}
.yc8{bottom:460.477520pt;}
.y236{bottom:461.057200pt;}
.yfc{bottom:463.036880pt;}
.y4b{bottom:463.600000pt;}
.y83{bottom:463.676160pt;}
.y86{bottom:463.840000pt;}
.y1a2{bottom:469.271200pt;}
.y171{bottom:471.032080pt;}
.y204{bottom:472.460800pt;}
.y1d7{bottom:474.959200pt;}
.y25f{bottom:475.760000pt;}
.yc7{bottom:475.841520pt;}
.y235{bottom:476.421200pt;}
.y13a{bottom:477.993760pt;}
.yfb{bottom:478.400880pt;}
.y82{bottom:478.960000pt;}
.y272{bottom:482.389120pt;}
.y273{bottom:482.400000pt;}
.y4a{bottom:483.197600pt;}
.y170{bottom:486.396080pt;}
.y1d6{bottom:490.964480pt;}
.y234{bottom:491.785200pt;}
.y139{bottom:493.357760pt;}
.yfa{bottom:493.764880pt;}
.yc6{bottom:495.120000pt;}
.y271{bottom:495.752960pt;}
.y1a1{bottom:496.712640pt;}
.y80{bottom:499.440000pt;}
.y203{bottom:499.822080pt;}
.y16f{bottom:501.679920pt;}
.y49{bottom:503.840000pt;}
.y233{bottom:507.069040pt;}
.yf9{bottom:509.048720pt;}
.y270{bottom:509.116800pt;}
.y81{bottom:510.480000pt;}
.y1d5{bottom:510.804080pt;}
.y1a0{bottom:511.996480pt;}
.y138{bottom:512.636240pt;}
.yc5{bottom:514.481360pt;}
.y202{bottom:515.186080pt;}
.y16e{bottom:521.920320pt;}
.y26f{bottom:522.395520pt;}
.y232{bottom:522.433040pt;}
.y48{bottom:523.120000pt;}
.yf8{bottom:524.412720pt;}
.y7d{bottom:525.642160pt;}
.y7f{bottom:525.836160pt;}
.y19f{bottom:527.360480pt;}
.y137{bottom:528.000240pt;}
.y1d4{bottom:528.800960pt;}
.y201{bottom:530.469920pt;}
.yc4{bottom:533.840000pt;}
.y16d{bottom:537.284320pt;}
.y26d{bottom:539.721360pt;}
.y26e{bottom:539.760000pt;}
.yf7{bottom:539.776720pt;}
.y7c{bottom:540.926000pt;}
.y7e{bottom:541.120000pt;}
.y47{bottom:542.480000pt;}
.y136{bottom:543.364240pt;}
.y231{bottom:545.786320pt;}
.y200{bottom:545.833920pt;}
.y19e{bottom:546.558800pt;}
.y1d3{bottom:548.079440pt;}
.y16c{bottom:552.568160pt;}
.yc3{bottom:553.120000pt;}
.y26c{bottom:557.396640pt;}
.yf6{bottom:558.975040pt;}
.y230{bottom:561.070160pt;}
.y1ff{bottom:561.197920pt;}
.y135{bottom:561.283920pt;}
.y46{bottom:562.085440pt;}
.y1d2{bottom:563.443440pt;}
.y19d{bottom:569.992240pt;}
.y16b{bottom:571.926800pt;}
.y7b{bottom:572.281920pt;}
.yc2{bottom:572.481360pt;}
.y26b{bottom:572.680480pt;}
.y134{bottom:579.320240pt;}
.y1fe{bottom:580.396240pt;}
.y45{bottom:582.640000pt;}
.y1d1{bottom:582.802080pt;}
.y22f{bottom:584.436800pt;}
.y19c{bottom:585.356240pt;}
.yf5{bottom:586.416480pt;}
.y16a{bottom:587.290800pt;}
.y26a{bottom:588.044480pt;}
.yc1{bottom:591.840000pt;}
.y133{bottom:594.604080pt;}
.y1c9{bottom:595.053333pt;}
.y1d0{bottom:595.120000pt;}
.y22e{bottom:599.800800pt;}
.y7a{bottom:599.803520pt;}
.y19b{bottom:600.640080pt;}
.yf4{bottom:601.780480pt;}
.y44{bottom:602.000000pt;}
.y169{bottom:602.574640pt;}
.y269{bottom:603.408480pt;}
.y1fd{bottom:607.837680pt;}
.y2c1{bottom:608.642720pt;}
.y132{bottom:609.968080pt;}
.yc0{bottom:611.109520pt;}
.y79{bottom:615.087360pt;}
.y19a{bottom:616.004080pt;}
.y268{bottom:618.692320pt;}
.y43{bottom:621.040000pt;}
.yf3{bottom:621.058960pt;}
.y168{bottom:621.933280pt;}
.y22d{bottom:623.087280pt;}
.y1fc{bottom:623.201680pt;}
.y131{bottom:625.332080pt;}
.y78{bottom:626.296400pt;}
.y2c0{bottom:628.001360pt;}
.ybf{bottom:630.468160pt;}
.y199{bottom:633.957280pt;}
.y267{bottom:634.056320pt;}
.yf2{bottom:636.422960pt;}
.y1c8{bottom:637.115760pt;}
.y167{bottom:637.297280pt;}
.y42{bottom:638.320000pt;}
.y22c{bottom:638.451280pt;}
.y1fb{bottom:642.400000pt;}
.y7{bottom:644.417867pt;}
.y130{bottom:644.610560pt;}
.ybe{bottom:645.752000pt;}
.y2bf{bottom:647.360000pt;}
.y198{bottom:649.321280pt;}
.y266{bottom:649.420320pt;}
.yf1{bottom:651.786960pt;}
.y41{bottom:655.680000pt;}
.y166{bottom:656.575760pt;}
.y1c7{bottom:656.634720pt;}
.y75{bottom:657.585520pt;}
.y12f{bottom:659.974560pt;}
.y2b1{bottom:660.320000pt;}
.ybd{bottom:661.116000pt;}
.y22b{bottom:661.737760pt;}
.y77{bottom:661.740480pt;}
.y265{bottom:664.704160pt;}
.y2bd{bottom:666.388160pt;}
.y1a{bottom:666.408320pt;}
.yf0{bottom:667.070800pt;}
.y197{bottom:668.599760pt;}
.y1fa{bottom:670.000000pt;}
.y165{bottom:671.939760pt;}
.y1c6{bottom:672.634720pt;}
.y74{bottom:672.949520pt;}
.y40{bottom:673.040000pt;}
.y12e{bottom:675.338560pt;}
.ybc{bottom:676.480000pt;}
.y22a{bottom:677.101760pt;}
.y76{bottom:677.104480pt;}
.y2b7{bottom:678.624160pt;}
.y264{bottom:680.068160pt;}
.y2bc{bottom:681.752160pt;}
.yef{bottom:682.434800pt;}
.y196{bottom:683.963760pt;}
.y6{bottom:686.551200pt;}
.y164{bottom:687.303760pt;}
.y1c5{bottom:688.612240pt;}
.y19{bottom:689.761600pt;}
.y3f{bottom:690.320000pt;}
.y2b6{bottom:693.988160pt;}
.y12d{bottom:694.536880pt;}
.y263{bottom:695.352000pt;}
.y25c{bottom:695.756800pt;}
.ybb{bottom:696.000000pt;}
.y2bb{bottom:697.036000pt;}
.y1f9{bottom:698.716000pt;}
.y195{bottom:699.327760pt;}
.y229{bottom:700.455040pt;}
.y73{bottom:700.471120pt;}
.yee{bottom:701.713280pt;}
.y163{bottom:702.587600pt;}
.y3e{bottom:708.000000pt;}
.y1c4{bottom:708.371680pt;}
.y25e{bottom:708.796160pt;}
.y2b5{bottom:709.352160pt;}
.y262{bottom:710.716000pt;}
.y25b{bottom:710.800160pt;}
.y72{bottom:711.600000pt;}
.y2ba{bottom:712.400000pt;}
.y1f8{bottom:714.077200pt;}
.y228{bottom:715.738880pt;}
.yed{bottom:717.077280pt;}
.y194{bottom:718.606240pt;}
.y162{bottom:721.866080pt;}
.y12c{bottom:722.138640pt;}
.y25d{bottom:722.156160pt;}
.y25a{bottom:724.160160pt;}
.y2b4{bottom:724.636000pt;}
.y2be{bottom:724.640000pt;}
.y261{bottom:726.080000pt;}
.y3d{bottom:727.360000pt;}
.y2b9{bottom:727.364000pt;}
.y18{bottom:729.040000pt;}
.y1f7{bottom:729.361040pt;}
.y70{bottom:732.080000pt;}
.yec{bottom:732.441280pt;}
.yba{bottom:732.480000pt;}
.y193{bottom:733.970240pt;}
.y1c3{bottom:735.732960pt;}
.y259{bottom:737.440000pt;}
.y12b{bottom:738.143920pt;}
.y227{bottom:739.105520pt;}
.y2b3{bottom:740.000000pt;}
.y2b8{bottom:741.200000pt;}
.y1f6{bottom:741.759120pt;}
.y71{bottom:743.120000pt;}
.y3c{bottom:746.320000pt;}
.yeb{bottom:747.725120pt;}
.y161{bottom:749.307520pt;}
.y192{bottom:749.334240pt;}
.y1c2{bottom:751.096960pt;}
.yb8{bottom:752.960000pt;}
.y12a{bottom:754.149200pt;}
.y24f{bottom:754.400000pt;}
.y226{bottom:754.469520pt;}
.y6d{bottom:758.312240pt;}
.y6f{bottom:758.476027pt;}
.yea{bottom:763.089120pt;}
.y3b{bottom:763.680000pt;}
.yb9{bottom:764.000000pt;}
.y160{bottom:764.591360pt;}
.y191{bottom:764.618080pt;}
.y1c1{bottom:766.460960pt;}
.y17{bottom:767.040000pt;}
.y2ac{bottom:768.320000pt;}
.y24e{bottom:769.042880pt;}
.y129{bottom:770.154480pt;}
.y6c{bottom:773.596080pt;}
.y6e{bottom:773.759867pt;}
.y225{bottom:777.756000pt;}
.ye9{bottom:778.453120pt;}
.y4{bottom:778.582667pt;}
.y15f{bottom:779.955360pt;}
.y190{bottom:779.982080pt;}
.y3a{bottom:781.360000pt;}
.y24d{bottom:781.364000pt;}
.y1c0{bottom:781.744800pt;}
.y16{bottom:782.400000pt;}
.y128{bottom:785.999440pt;}
.y2b0{bottom:786.632000pt;}
.y224{bottom:793.120000pt;}
.y24c{bottom:793.600000pt;}
.ye8{bottom:793.736960pt;}
.yb7{bottom:794.480000pt;}
.y18f{bottom:795.346080pt;}
.y15{bottom:796.400000pt;}
.y121{bottom:798.253333pt;}
.y15e{bottom:799.233840pt;}
.y39{bottom:800.640000pt;}
.y1bf{bottom:801.023280pt;}
.y2af{bottom:801.996000pt;}
.y6b{bottom:805.112320pt;}
.y127{bottom:806.320000pt;}
.ye7{bottom:809.100960pt;}
.y24b{bottom:809.840000pt;}
.y24a{bottom:809.846880pt;}
.y223{bottom:812.640000pt;}
.y18e{bottom:814.544400pt;}
.yb3{bottom:814.960000pt;}
.y14{bottom:817.280560pt;}
.y2ae{bottom:817.360000pt;}
.y38{bottom:820.000000pt;}
.y6a{bottom:820.476320pt;}
.y249{bottom:822.168000pt;}
.y15d{bottom:822.600480pt;}
.yb6{bottom:826.000000pt;}
.y120{bottom:827.275680pt;}
.ye6{bottom:828.459600pt;}
.y1be{bottom:828.464720pt;}
.y248{bottom:834.404000pt;}
.y69{bottom:835.680000pt;}
.y15c{bottom:837.964480pt;}
.y18d{bottom:837.977840pt;}
.y37{bottom:839.360000pt;}
.y222{bottom:841.264400pt;}
.yb5{bottom:841.280000pt;}
.y11f{bottom:842.794720pt;}
.ye5{bottom:843.743440pt;}
.y2a6{bottom:845.680000pt;}
.y247{bottom:846.640000pt;}
.y1bd{bottom:847.743200pt;}
.y13{bottom:848.636480pt;}
.y15b{bottom:853.248320pt;}
.y18c{bottom:853.261680pt;}
.y66{bottom:856.080000pt;}
.yb1{bottom:856.476000pt;}
.yb4{bottom:856.640000pt;}
.y36{bottom:858.640000pt;}
.y11e{bottom:858.766000pt;}
.y221{bottom:860.623040pt;}
.y246{bottom:862.960000pt;}
.y245{bottom:862.968000pt;}
.ye4{bottom:863.021920pt;}
.y1bc{bottom:863.107200pt;}
.y2ab{bottom:863.988160pt;}
.y68{bottom:867.120000pt;}
.y15a{bottom:868.612320pt;}
.y18b{bottom:868.625680pt;}
.yb0{bottom:871.840000pt;}
.yb2{bottom:872.000000pt;}
.y258{bottom:872.480000pt;}
.y11d{bottom:874.771280pt;}
.y244{bottom:875.204000pt;}
.y220{bottom:875.987040pt;}
.y35{bottom:878.000000pt;}
.y1bb{bottom:878.471200pt;}
.y2aa{bottom:879.272000pt;}
.y12{bottom:879.992400pt;}
.y65{bottom:882.320000pt;}
.y243{bottom:887.440000pt;}
.y159{bottom:887.890800pt;}
.y18a{bottom:887.904160pt;}
.ye3{bottom:890.463360pt;}
.y11c{bottom:890.776560pt;}
.yab{bottom:892.320000pt;}
.y1ba{bottom:893.755040pt;}
.y2a9{bottom:894.636000pt;}
.y21f{bottom:895.265520pt;}
.y11{bottom:895.276240pt;}
.y34{bottom:897.280000pt;}
.y256{bottom:900.800000pt;}
.y60{bottom:902.800000pt;}
.yaf{bottom:903.280000pt;}
.y242{bottom:903.760000pt;}
.y241{bottom:903.768000pt;}
.ye2{bottom:905.747200pt;}
.y11b{bottom:906.781840pt;}
.y2a8{bottom:910.000000pt;}
.y21e{bottom:910.629520pt;}
.y10{bottom:910.640240pt;}
.y158{bottom:911.177280pt;}
.y189{bottom:911.257440pt;}
.y1b9{bottom:913.113680pt;}
.y64{bottom:913.760000pt;}
.y240{bottom:916.004000pt;}
.y33{bottom:916.640000pt;}
.yae{bottom:918.632160pt;}
.ye1{bottom:921.111200pt;}
.y21d{bottom:925.993520pt;}
.yf{bottom:926.004240pt;}
.y11a{bottom:926.621440pt;}
.y23f{bottom:928.240000pt;}
.y1b8{bottom:928.477680pt;}
.y254{bottom:932.080000pt;}
.yad{bottom:933.996160pt;}
.y32{bottom:936.249120pt;}
.y2a1{bottom:938.320000pt;}
.y157{bottom:938.618720pt;}
.ye0{bottom:940.469840pt;}
.y119{bottom:941.985440pt;}
.y1b7{bottom:943.761520pt;}
.y62{bottom:944.480000pt;}
.y23e{bottom:945.112800pt;}
.y21c{bottom:945.191840pt;}
.y188{bottom:945.899920pt;}
.y23c{bottom:948.800160pt;}
.yac{bottom:949.280000pt;}
.y156{bottom:953.982720pt;}
.ydf{bottom:955.753680pt;}
.y2a4{bottom:956.632000pt;}
.y2a0{bottom:956.636000pt;}
.y31{bottom:957.125760pt;}
.y118{bottom:957.269280pt;}
.ye{bottom:957.276000pt;}
.y5c{bottom:959.598560pt;}
.y5f{bottom:959.752000pt;}
.y23d{bottom:960.156160pt;}
.y2a3{bottom:960.640000pt;}
.y23b{bottom:962.160160pt;}
.y1b6{bottom:963.040000pt;}
.y251{bottom:963.440000pt;}
.y2{bottom:963.477200pt;}
.yaa{bottom:964.480000pt;}
.y155{bottom:969.266560pt;}
.yde{bottom:971.117680pt;}
.y2a5{bottom:971.996000pt;}
.y29f{bottom:972.000000pt;}
.yd{bottom:972.627520pt;}
.y21b{bottom:972.633280pt;}
.y5b{bottom:974.962560pt;}
.y5e{bottom:975.116000pt;}
.y23a{bottom:975.440000pt;}
.y117{bottom:976.547760pt;}
.y30{bottom:978.002400pt;}
.y1{bottom:982.677200pt;}
.y3{bottom:984.357200pt;}
.y154{bottom:984.630560pt;}
.ya8{bottom:984.960000pt;}
.ydd{bottom:986.481680pt;}
.yc{bottom:987.991520pt;}
.y21a{bottom:987.997280pt;}
.y29e{bottom:988.960000pt;}
.y5a{bottom:990.326560pt;}
.y5d{bottom:990.480000pt;}
.y1b5{bottom:990.640000pt;}
.y237{bottom:994.800000pt;}
.ya9{bottom:996.000000pt;}
.y153{bottom:999.994560pt;}
.y2f{bottom:1001.280000pt;}
.y2cb{bottom:1003.529440pt;}
.y116{bottom:1003.989200pt;}
.y5{bottom:1005.354267pt;}
.ydc{bottom:1005.680000pt;}
.y219{bottom:1007.195600pt;}
.ya6{bottom:1011.110080pt;}
.y59{bottom:1013.760000pt;}
.y152{bottom:1015.278400pt;}
.yb{bottom:1019.267280pt;}
.y115{bottom:1019.273040pt;}
.y29d{bottom:1022.960400pt;}
.ya5{bottom:1026.474080pt;}
.ya7{bottom:1026.640000pt;}
.y58{bottom:1033.280000pt;}
.y151{bottom:1034.556880pt;}
.y2ca{bottom:1034.564800pt;}
.ya{bottom:1034.631280pt;}
.y114{bottom:1034.637040pt;}
.y2c4{bottom:1034.747067pt;}
.y29c{bottom:1036.320400pt;}
.y2d{bottom:1057.040000pt;}
.y8{bottom:1072.400000pt;}
.y2c2{bottom:1072.507067pt;}
.h20{height:26.000000pt;}
.h31{height:26.754908pt;}
.h22{height:26.956262pt;}
.h29{height:27.460803pt;}
.hc{height:29.716875pt;}
.h39{height:30.640000pt;}
.h41{height:30.641333pt;}
.h3b{height:30.720000pt;}
.h34{height:31.599861pt;}
.h43{height:32.238667pt;}
.h42{height:32.320000pt;}
.h2c{height:32.433584pt;}
.hb{height:36.595781pt;}
.he{height:38.905781pt;}
.h27{height:39.065333pt;}
.h33{height:40.097808pt;}
.h3e{height:41.273438pt;}
.h2e{height:42.000000pt;}
.h32{height:42.043482pt;}
.h2a{height:43.152802pt;}
.h4a{height:44.388750pt;}
.h3f{height:45.600000pt;}
.h4d{height:45.675938pt;}
.h8{height:45.951094pt;}
.h35{height:45.953334pt;}
.h38{height:45.962294pt;}
.h36{height:45.970614pt;}
.h1f{height:45.972214pt;}
.h2d{height:45.975414pt;}
.h37{height:45.993014pt;}
.h26{height:46.062134pt;}
.h1e{height:46.087094pt;}
.h24{height:46.110134pt;}
.h25{height:46.121974pt;}
.h4c{height:46.454062pt;}
.h1b{height:46.591094pt;}
.h16{height:46.592374pt;}
.h13{height:46.720000pt;}
.hd{height:46.733906pt;}
.h2{height:47.168000pt;}
.h23{height:48.140625pt;}
.h44{height:50.000000pt;}
.h11{height:50.353594pt;}
.h10{height:51.211406pt;}
.h1d{height:51.467406pt;}
.h2b{height:54.492251pt;}
.h2f{height:55.135251pt;}
.h49{height:55.736250pt;}
.ha{height:56.292875pt;}
.h9{height:56.326795pt;}
.h28{height:56.472286pt;}
.h30{height:57.185138pt;}
.h14{height:61.998667pt;}
.h17{height:62.000000pt;}
.h15{height:62.570934pt;}
.h21{height:63.560438pt;}
.h6{height:70.752000pt;}
.h4b{height:71.520000pt;}
.h47{height:76.638667pt;}
.h18{height:77.280000pt;}
.h19{height:77.358667pt;}
.h1c{height:77.360000pt;}
.h45{height:91.375094pt;}
.h46{height:91.920000pt;}
.h1a{height:92.640000pt;}
.h40{height:93.281333pt;}
.h5{height:93.952000pt;}
.h48{height:107.358667pt;}
.h12{height:108.000000pt;}
.h4{height:117.920000pt;}
.h3{height:140.928000pt;}
.h3c{height:145.680000pt;}
.h3a{height:239.680000pt;}
.hf{height:269.920000pt;}
.h3d{height:277.920000pt;}
.h0{height:1122.520000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:74.960000pt;}
.wf{width:111.120000pt;}
.w5{width:115.000000pt;}
.wc{width:129.360000pt;}
.wd{width:131.598667pt;}
.w8{width:132.558667pt;}
.w9{width:140.081333pt;}
.w6{width:141.000000pt;}
.w10{width:141.041333pt;}
.wb{width:167.280000pt;}
.wa{width:217.200000pt;}
.we{width:292.241333pt;}
.w7{width:314.066667pt;}
.w14{width:366.400000pt;}
.w4{width:479.680000pt;}
.w3{width:632.880000pt;}
.w13{width:793.333333pt;}
.w12{width:793.626667pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:4.320000pt;}
.x8{left:7.200000pt;}
.x56{left:9.600000pt;}
.x19{left:23.834400pt;}
.x12{left:25.760000pt;}
.x1b{left:33.417733pt;}
.x54{left:36.240000pt;}
.x52{left:43.600000pt;}
.x4f{left:48.080000pt;}
.x2f{left:54.254267pt;}
.x1c{left:57.004267pt;}
.x23{left:60.269598pt;}
.x2b{left:63.268400pt;}
.x24{left:64.288800pt;}
.x1{left:66.554400pt;}
.x3{left:68.031467pt;}
.x2e{left:81.423467pt;}
.x7{left:87.360000pt;}
.x22{left:89.428474pt;}
.x21{left:92.279367pt;}
.x15{left:93.280000pt;}
.x5{left:94.560000pt;}
.x1a{left:99.344400pt;}
.x18{left:102.106667pt;}
.xf{left:105.360000pt;}
.xc{left:109.362880pt;}
.x2a{left:110.530133pt;}
.xa{left:113.520000pt;}
.x2d{left:115.584933pt;}
.x1e{left:118.537360pt;}
.x20{left:119.975867pt;}
.x34{left:122.883200pt;}
.x1f{left:124.591867pt;}
.x29{left:126.957867pt;}
.x30{left:136.976675pt;}
.x26{left:145.491733pt;}
.xb{left:151.280000pt;}
.x6{left:166.557040pt;}
.x3d{left:186.080000pt;}
.x10{left:211.360000pt;}
.x55{left:214.560000pt;}
.x1d{left:217.040000pt;}
.x43{left:224.560000pt;}
.x35{left:228.160000pt;}
.x38{left:234.959200pt;}
.xe{left:238.560000pt;}
.x25{left:243.040000pt;}
.xd{left:245.760000pt;}
.x2c{left:251.725200pt;}
.x13{left:268.800000pt;}
.x16{left:283.760000pt;}
.x28{left:293.721467pt;}
.x27{left:298.776133pt;}
.x14{left:313.440000pt;}
.x41{left:350.080000pt;}
.x17{left:353.120000pt;}
.x44{left:356.970960pt;}
.x33{left:360.000000pt;}
.x9{left:363.680000pt;}
.x36{left:368.960000pt;}
.x39{left:375.746880pt;}
.x31{left:416.160000pt;}
.x3a{left:419.120000pt;}
.x3f{left:424.720000pt;}
.x11{left:434.160000pt;}
.x40{left:453.760000pt;}
.x46{left:491.760000pt;}
.x4{left:515.816800pt;}
.x49{left:517.193280pt;}
.x48{left:520.560000pt;}
.x4a{left:524.634800pt;}
.x50{left:528.000000pt;}
.x51{left:532.074800pt;}
.x3b{left:541.040000pt;}
.x3c{left:554.560000pt;}
.x4b{left:567.360000pt;}
.x37{left:586.880000pt;}
.x4d{left:592.793280pt;}
.x3e{left:593.760000pt;}
.x4c{left:596.160000pt;}
.x32{left:598.789280pt;}
.x4e{left:600.234800pt;}
.x53{left:603.600000pt;}
.x2{left:637.402400pt;}
.x42{left:643.040000pt;}
.x45{left:649.848880pt;}
}




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