
    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_ed8545e744c2fed5865e6850.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd466212f2348a42a6eb5deb.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_995374b47ee8e79f79a34994.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_315848cd1d447bd7553a80d9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_0dc3a100a80257c3cba49a0c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_180812a71609a918f9cf900a.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-0.841680px;}
.ls2e{letter-spacing:-0.781560px;}
.ls27{letter-spacing:-0.721440px;}
.ls2a{letter-spacing:-0.601200px;}
.ls29{letter-spacing:-0.541080px;}
.ls2c{letter-spacing:-0.480960px;}
.ls26{letter-spacing:-0.420840px;}
.ls23{letter-spacing:-0.378000px;}
.ls2f{letter-spacing:-0.360720px;}
.ls44{letter-spacing:-0.324000px;}
.ls42{letter-spacing:-0.300600px;}
.ls2b{letter-spacing:-0.240480px;}
.ls22{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.191520px;}
.ls28{letter-spacing:-0.180360px;}
.ls21{letter-spacing:-0.162000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.120240px;}
.ls24{letter-spacing:-0.108000px;}
.ls3f{letter-spacing:-0.095760px;}
.ls43{letter-spacing:-0.060120px;}
.ls1d{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.026640px;}
.ls50{letter-spacing:0.053280px;}
.ls39{letter-spacing:0.060120px;}
.ls4f{letter-spacing:0.088560px;}
.ls5c{letter-spacing:0.095760px;}
.ls20{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.120240px;}
.ls1f{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.150480px;}
.ls49{letter-spacing:0.153360px;}
.ls7{letter-spacing:0.155520px;}
.ls0{letter-spacing:0.162000px;}
.ls41{letter-spacing:0.180360px;}
.ls48{letter-spacing:0.181440px;}
.ls58{letter-spacing:0.191520px;}
.ls59{letter-spacing:0.255960px;}
.ls5a{letter-spacing:0.287280px;}
.ls9{letter-spacing:0.420840px;}
.ls31{letter-spacing:0.781560px;}
.ls12{letter-spacing:1.142280px;}
.ls13{letter-spacing:1.503000px;}
.lsd{letter-spacing:1.863720px;}
.lse{letter-spacing:1.923840px;}
.lsb{letter-spacing:2.224440px;}
.ls19{letter-spacing:2.585160px;}
.ls11{letter-spacing:3.306600px;}
.ls33{letter-spacing:3.667320px;}
.ls1b{letter-spacing:5.470920px;}
.ls18{letter-spacing:5.831640px;}
.lsf{letter-spacing:6.192360px;}
.lsa{letter-spacing:6.234444px;}
.ls1{letter-spacing:6.318000px;}
.ls4d{letter-spacing:6.913800px;}
.ls51{letter-spacing:7.274520px;}
.ls17{letter-spacing:7.725420px;}
.ls36{letter-spacing:8.416800px;}
.ls3{letter-spacing:8.802000px;}
.ls4e{letter-spacing:8.837640px;}
.ls2{letter-spacing:9.120600px;}
.ls1a{letter-spacing:9.438840px;}
.ls3c{letter-spacing:10.521000px;}
.ls47{letter-spacing:10.641240px;}
.ls38{letter-spacing:11.242440px;}
.ls5{letter-spacing:11.577600px;}
.ls4{letter-spacing:12.420000px;}
.ls45{letter-spacing:12.685320px;}
.ls32{letter-spacing:13.406760px;}
.ls14{letter-spacing:13.767480px;}
.ls3d{letter-spacing:14.609160px;}
.ls35{letter-spacing:18.216360px;}
.ls54{letter-spacing:18.937800px;}
.ls52{letter-spacing:19.539000px;}
.ls53{letter-spacing:19.899720px;}
.ls30{letter-spacing:20.380680px;}
.ls3b{letter-spacing:20.621160px;}
.ls8{letter-spacing:22.064040px;}
.ls1c{letter-spacing:22.424760px;}
.lsc{letter-spacing:22.785480px;}
.ls34{letter-spacing:23.867640px;}
.ls15{letter-spacing:24.228360px;}
.ls56{letter-spacing:25.310520px;}
.ls46{letter-spacing:25.671240px;}
.ls10{letter-spacing:26.031960px;}
.ls4b{letter-spacing:26.392680px;}
.ls16{letter-spacing:28.917720px;}
.ls6{letter-spacing:30.781440px;}
.ls3a{letter-spacing:31.070016px;}
.ls3e{letter-spacing:31.382640px;}
.ls4a{letter-spacing:33.186240px;}
.ls4c{letter-spacing:35.711280px;}
.ls37{letter-spacing:102.438000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.856000px;}
.ws99{word-spacing:-15.210360px;}
.ws8{word-spacing:-15.150240px;}
.ws9b{word-spacing:-15.090120px;}
.wsb{word-spacing:-15.030000px;}
.wsd7{word-spacing:-14.969880px;}
.ws98{word-spacing:-14.909760px;}
.wsa{word-spacing:-14.849640px;}
.wsd{word-spacing:-14.789520px;}
.ws9a{word-spacing:-14.729400px;}
.ws12{word-spacing:-14.669280px;}
.wse{word-spacing:-14.609160px;}
.wsf{word-spacing:-14.549040px;}
.ws10{word-spacing:-14.488920px;}
.wsc{word-spacing:-14.428800px;}
.ws9{word-spacing:-14.308560px;}
.ws11{word-spacing:-14.248440px;}
.ws13{word-spacing:-14.188320px;}
.ws1{word-spacing:-13.662000px;}
.ws2{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.338000px;}
.ws7{word-spacing:-13.284000px;}
.ws5{word-spacing:-13.122000px;}
.ws109{word-spacing:-12.161520px;}
.ws108{word-spacing:-11.970000px;}
.ws97{word-spacing:-11.874240px;}
.wsb8{word-spacing:-4.028040px;}
.wse5{word-spacing:-3.787560px;}
.ws48{word-spacing:-3.667320px;}
.ws123{word-spacing:-3.426840px;}
.wsb0{word-spacing:-3.366720px;}
.ws7e{word-spacing:-3.306600px;}
.ws68{word-spacing:-3.246480px;}
.ws132{word-spacing:-3.160080px;}
.wsff{word-spacing:-3.066120px;}
.ws127{word-spacing:-2.968560px;}
.ws67{word-spacing:-2.945880px;}
.ws70{word-spacing:-2.585160px;}
.ws10f{word-spacing:-2.525040px;}
.wsb3{word-spacing:-2.344680px;}
.wse8{word-spacing:-2.284560px;}
.ws135{word-spacing:-2.250360px;}
.ws8c{word-spacing:-2.224440px;}
.wsa6{word-spacing:-2.164320px;}
.ws75{word-spacing:-1.983960px;}
.ws96{word-spacing:-1.863720px;}
.wsf7{word-spacing:-1.803600px;}
.ws8d{word-spacing:-1.623240px;}
.ws1d{word-spacing:-1.620000px;}
.ws95{word-spacing:-1.563120px;}
.ws1e{word-spacing:-1.512000px;}
.wsc2{word-spacing:-1.503000px;}
.ws100{word-spacing:-1.322640px;}
.ws83{word-spacing:-1.262520px;}
.ws82{word-spacing:-1.202400px;}
.ws45{word-spacing:-1.142280px;}
.ws44{word-spacing:-0.841680px;}
.ws13e{word-spacing:-0.813960px;}
.ws4d{word-spacing:-0.781560px;}
.wsaf{word-spacing:-0.721440px;}
.ws76{word-spacing:-0.541080px;}
.ws21{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.480960px;}
.ws22{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.420840px;}
.wsd0{word-spacing:-0.360720px;}
.ws12e{word-spacing:-0.287280px;}
.ws139{word-spacing:-0.191520px;}
.ws56{word-spacing:-0.180360px;}
.ws17{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.144000px;}
.ws84{word-spacing:-0.120240px;}
.ws115{word-spacing:-0.108000px;}
.ws133{word-spacing:-0.095760px;}
.ws57{word-spacing:-0.060120px;}
.ws14{word-spacing:0.000000px;}
.ws18{word-spacing:0.054000px;}
.wscf{word-spacing:0.060120px;}
.ws110{word-spacing:0.095760px;}
.ws114{word-spacing:0.108000px;}
.wsc1{word-spacing:0.120240px;}
.ws16{word-spacing:0.162000px;}
.ws49{word-spacing:0.180360px;}
.ws142{word-spacing:0.191520px;}
.ws19{word-spacing:0.216000px;}
.ws50{word-spacing:0.240480px;}
.wsb9{word-spacing:0.270000px;}
.ws141{word-spacing:0.287280px;}
.ws74{word-spacing:0.300600px;}
.ws26{word-spacing:0.324000px;}
.ws4e{word-spacing:0.360720px;}
.wsba{word-spacing:0.378000px;}
.ws32{word-spacing:0.420840px;}
.ws4a{word-spacing:0.480960px;}
.ws34{word-spacing:0.541080px;}
.ws3e{word-spacing:0.601200px;}
.ws13f{word-spacing:0.622440px;}
.ws36{word-spacing:0.661320px;}
.ws37{word-spacing:0.721440px;}
.ws8e{word-spacing:0.781560px;}
.ws143{word-spacing:0.813960px;}
.ws3b{word-spacing:0.841680px;}
.ws35{word-spacing:0.901800px;}
.wsfa{word-spacing:0.961920px;}
.ws5a{word-spacing:1.022040px;}
.ws137{word-spacing:1.149120px;}
.ws9d{word-spacing:1.262520px;}
.ws9c{word-spacing:1.322640px;}
.ws136{word-spacing:1.340640px;}
.ws58{word-spacing:1.382760px;}
.wsa0{word-spacing:1.503000px;}
.ws11d{word-spacing:1.563120px;}
.ws73{word-spacing:1.623240px;}
.ws59{word-spacing:1.683360px;}
.ws69{word-spacing:1.743480px;}
.ws5b{word-spacing:1.923840px;}
.ws5c{word-spacing:1.983960px;}
.wse6{word-spacing:2.044080px;}
.ws13a{word-spacing:2.058840px;}
.ws10d{word-spacing:2.104200px;}
.ws13b{word-spacing:2.154600px;}
.ws10c{word-spacing:2.224440px;}
.ws40{word-spacing:2.284560px;}
.ws3f{word-spacing:2.344680px;}
.ws41{word-spacing:2.404800px;}
.ws11c{word-spacing:2.585160px;}
.wsc0{word-spacing:2.645280px;}
.ws3a{word-spacing:2.705400px;}
.ws80{word-spacing:2.765520px;}
.ws122{word-spacing:3.066120px;}
.wsb4{word-spacing:3.126240px;}
.ws81{word-spacing:3.426840px;}
.wsd4{word-spacing:3.486960px;}
.ws13c{word-spacing:3.495240px;}
.ws54{word-spacing:3.727440px;}
.wsa4{word-spacing:3.787560px;}
.ws53{word-spacing:3.847680px;}
.ws52{word-spacing:3.907800px;}
.wsfd{word-spacing:4.088160px;}
.ws93{word-spacing:4.148280px;}
.wsae{word-spacing:4.208400px;}
.ws5e{word-spacing:4.448880px;}
.ws5d{word-spacing:4.509000px;}
.wsdb{word-spacing:4.569120px;}
.ws12a{word-spacing:4.596480px;}
.wsda{word-spacing:4.869720px;}
.wsa1{word-spacing:4.929840px;}
.wsf8{word-spacing:5.170320px;}
.wse7{word-spacing:5.230440px;}
.ws31{word-spacing:5.238000px;}
.ws8a{word-spacing:5.290560px;}
.ws25{word-spacing:5.562000px;}
.ws101{word-spacing:5.591160px;}
.ws7f{word-spacing:5.651280px;}
.ws6e{word-spacing:6.012000px;}
.wsee{word-spacing:6.252480px;}
.ws38{word-spacing:6.372720px;}
.wsef{word-spacing:6.553080px;}
.ws39{word-spacing:6.673320px;}
.wsac{word-spacing:6.733440px;}
.ws78{word-spacing:6.793560px;}
.ws77{word-spacing:6.973920px;}
.ws10e{word-spacing:7.034040px;}
.ws92{word-spacing:7.094160px;}
.ws10a{word-spacing:7.334640px;}
.ws91{word-spacing:7.394760px;}
.ws46{word-spacing:7.454880px;}
.ws140{word-spacing:7.660800px;}
.ws47{word-spacing:7.755480px;}
.ws72{word-spacing:7.815600px;}
.wsb7{word-spacing:7.875720px;}
.ws131{word-spacing:7.995960px;}
.ws71{word-spacing:8.056080px;}
.wsb5{word-spacing:8.116200px;}
.ws130{word-spacing:8.187480px;}
.ws138{word-spacing:8.379000px;}
.wsb6{word-spacing:8.416800px;}
.wsad{word-spacing:8.476920px;}
.ws12f{word-spacing:8.570520px;}
.ws1a{word-spacing:8.640000px;}
.ws23{word-spacing:8.694000px;}
.ws1c{word-spacing:8.802000px;}
.wsa5{word-spacing:8.897760px;}
.ws24{word-spacing:8.910000px;}
.ws103{word-spacing:8.957880px;}
.ws1b{word-spacing:8.964000px;}
.wse1{word-spacing:9.198360px;}
.wscd{word-spacing:9.258480px;}
.ws6b{word-spacing:9.498960px;}
.ws88{word-spacing:9.559080px;}
.ws87{word-spacing:9.679320px;}
.wsbb{word-spacing:9.859680px;}
.wsca{word-spacing:9.979920px;}
.ws7b{word-spacing:10.220400px;}
.ws7c{word-spacing:10.280520px;}
.wsbc{word-spacing:10.340640px;}
.ws7d{word-spacing:10.581120px;}
.ws89{word-spacing:10.641240px;}
.ws11e{word-spacing:10.701360px;}
.wsc4{word-spacing:11.001960px;}
.wsc3{word-spacing:11.062080px;}
.ws2f{word-spacing:11.178000px;}
.wsbe{word-spacing:11.302560px;}
.wsbf{word-spacing:11.362680px;}
.ws86{word-spacing:11.422800px;}
.ws12d{word-spacing:11.443320px;}
.ws85{word-spacing:11.663280px;}
.ws30{word-spacing:11.718000px;}
.wsab{word-spacing:11.723400px;}
.wsaa{word-spacing:11.783520px;}
.wsa9{word-spacing:11.843640px;}
.ws2b{word-spacing:12.420000px;}
.ws124{word-spacing:12.496680px;}
.wsdf{word-spacing:12.504960px;}
.ws2c{word-spacing:12.582000px;}
.wse0{word-spacing:12.745440px;}
.wsc7{word-spacing:13.106160px;}
.wsc8{word-spacing:13.226400px;}
.ws9e{word-spacing:13.527000px;}
.ws9f{word-spacing:13.587120px;}
.ws62{word-spacing:13.947840px;}
.ws63{word-spacing:14.188320px;}
.ws6a{word-spacing:14.248440px;}
.ws94{word-spacing:14.308560px;}
.ws129{word-spacing:14.316120px;}
.ws121{word-spacing:14.549040px;}
.ws79{word-spacing:14.669280px;}
.wsec{word-spacing:14.909760px;}
.ws117{word-spacing:14.969880px;}
.ws7a{word-spacing:15.030000px;}
.ws118{word-spacing:15.631200px;}
.wsf1{word-spacing:15.991920px;}
.ws145{word-spacing:16.135560px;}
.wsf0{word-spacing:16.352640px;}
.ws42{word-spacing:16.833600px;}
.ws43{word-spacing:17.134200px;}
.wsc9{word-spacing:17.194320px;}
.ws13d{word-spacing:17.380440px;}
.wsd2{word-spacing:17.615160px;}
.wsd3{word-spacing:17.915760px;}
.ws10b{word-spacing:18.156240px;}
.wsb1{word-spacing:18.276480px;}
.ws60{word-spacing:18.516960px;}
.ws61{word-spacing:18.637200px;}
.wsea{word-spacing:18.937800px;}
.wsce{word-spacing:19.298520px;}
.ws119{word-spacing:19.358640px;}
.ws11a{word-spacing:19.659240px;}
.ws11b{word-spacing:19.719360px;}
.wscb{word-spacing:20.440800px;}
.wscc{word-spacing:20.561040px;}
.ws4f{word-spacing:21.102120px;}
.ws116{word-spacing:21.162240px;}
.wsf9{word-spacing:21.462840px;}
.ws111{word-spacing:21.522960px;}
.ws1f{word-spacing:21.762000px;}
.ws112{word-spacing:21.823560px;}
.ws8b{word-spacing:21.883680px;}
.ws20{word-spacing:21.924000px;}
.ws2e{word-spacing:21.978000px;}
.ws33{word-spacing:22.244400px;}
.ws2d{word-spacing:22.248000px;}
.wse9{word-spacing:22.545000px;}
.ws8f{word-spacing:22.605120px;}
.ws90{word-spacing:22.665240px;}
.ws3d{word-spacing:22.965840px;}
.ws3c{word-spacing:23.206320px;}
.wsd6{word-spacing:23.567040px;}
.wsd5{word-spacing:23.687280px;}
.ws28{word-spacing:23.922000px;}
.wsfe{word-spacing:23.927760px;}
.wsa7{word-spacing:23.987880px;}
.ws27{word-spacing:24.084000px;}
.ws66{word-spacing:24.408720px;}
.ws65{word-spacing:24.468840px;}
.ws64{word-spacing:24.709320px;}
.ws144{word-spacing:24.753960px;}
.ws120{word-spacing:24.769440px;}
.ws2a{word-spacing:25.002000px;}
.ws11f{word-spacing:25.070040px;}
.wsa8{word-spacing:25.490880px;}
.ws4c{word-spacing:25.851600px;}
.wsed{word-spacing:25.911720px;}
.ws4b{word-spacing:26.092080px;}
.wsd8{word-spacing:26.152200px;}
.wsfb{word-spacing:26.452800px;}
.wsfc{word-spacing:27.895680px;}
.ws6d{word-spacing:29.098080px;}
.ws6c{word-spacing:29.759400px;}
.ws6f{word-spacing:30.180240px;}
.wsc5{word-spacing:30.540960px;}
.wsc6{word-spacing:30.601080px;}
.wsd1{word-spacing:30.901680px;}
.wsf5{word-spacing:31.923720px;}
.wsf6{word-spacing:32.224320px;}
.ws29{word-spacing:33.156000px;}
.wsa3{word-spacing:33.306480px;}
.wsa2{word-spacing:33.366600px;}
.wsf2{word-spacing:33.426720px;}
.wsf3{word-spacing:33.607080px;}
.wsb2{word-spacing:33.727320px;}
.wsf4{word-spacing:34.027920px;}
.wsde{word-spacing:34.088040px;}
.ws107{word-spacing:34.148160px;}
.wsdd{word-spacing:34.689240px;}
.ws105{word-spacing:35.170200px;}
.ws104{word-spacing:35.470800px;}
.ws106{word-spacing:36.252360px;}
.ws12c{word-spacing:36.293040px;}
.wsdc{word-spacing:37.995840px;}
.wse4{word-spacing:39.739320px;}
.ws134{word-spacing:44.576280px;}
.ws128{word-spacing:46.012680px;}
.wseb{word-spacing:48.516840px;}
.wse3{word-spacing:49.238280px;}
.wse2{word-spacing:49.418640px;}
.wsbd{word-spacing:49.478760px;}
.ws125{word-spacing:59.131800px;}
.ws126{word-spacing:59.323320px;}
.ws51{word-spacing:59.578920px;}
.ws102{word-spacing:71.903520px;}
.wsd9{word-spacing:73.647000px;}
.ws113{word-spacing:88.135920px;}
.ws12b{word-spacing:164.802960px;}
.ws146{word-spacing:216.609120px;}
._1{margin-left:-16.128000px;}
._0{margin-left:-3.312000px;}
._f{margin-left:-2.174400px;}
._2{margin-left:-1.063800px;}
._3{width:1.134000px;}
._e{width:2.164320px;}
._a{width:3.787560px;}
._18{width:5.050080px;}
._4{width:6.193800px;}
._5{width:9.504000px;}
._c{width:12.990960px;}
._b{width:18.096120px;}
._9{width:20.681280px;}
._8{width:22.140000px;}
._10{width:23.187960px;}
._6{width:24.462000px;}
._d{width:29.759400px;}
._16{width:31.232664px;}
._7{width:33.015600px;}
._12{width:46.908000px;}
._17{width:50.131800px;}
._15{width:79.704000px;}
._14{width:82.872000px;}
._13{width:84.402000px;}
._1a{width:88.264440px;}
._11{width:107.190000px;}
._1b{width:146.124000px;}
._19{width:1440.114480px;}
.fc2{color:transparent;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y17e{bottom:2.610000px;}
.y18d{bottom:2.700000px;}
.y9a{bottom:2.880000px;}
.y9e{bottom:2.970000px;}
.y127{bottom:7.830000px;}
.y97{bottom:10.620000px;}
.y9d{bottom:10.710000px;}
.yce{bottom:12.060000px;}
.y186{bottom:16.380000px;}
.y18b{bottom:16.470000px;}
.y99{bottom:18.450000px;}
.y17c{bottom:30.240000px;}
.y17a{bottom:44.010000px;}
.y18a{bottom:44.100000px;}
.y140{bottom:49.500000px;}
.y1{bottom:57.240000px;}
.y182{bottom:57.870000px;}
.ya2{bottom:110.970000px;}
.y125{bottom:119.692170px;}
.ya1{bottom:121.590000px;}
.y43{bottom:123.316110px;}
.y70{bottom:123.678900px;}
.ycc{bottom:126.991170px;}
.yf9{bottom:127.892610px;}
.y181{bottom:136.800000px;}
.y124{bottom:136.976670px;}
.y15d{bottom:138.506760px;}
.y42{bottom:139.698810px;}
.y6f{bottom:140.061600px;}
.ya0{bottom:142.740000px;}
.ycb{bottom:144.185490px;}
.yf8{bottom:145.177110px;}
.y183{bottom:153.270000px;}
.y9f{bottom:153.450000px;}
.y123{bottom:154.170990px;}
.y15c{bottom:155.791260px;}
.y41{bottom:156.081510px;}
.y6e{bottom:156.444300px;}
.yca{bottom:161.469990px;}
.yf7{bottom:162.461610px;}
.y122{bottom:171.455490px;}
.y40{bottom:172.464210px;}
.y6d{bottom:172.827000px;}
.y15b{bottom:173.075760px;}
.y9c{bottom:174.510000px;}
.yc9{bottom:178.754490px;}
.yf6{bottom:179.746110px;}
.y9b{bottom:185.220000px;}
.y121{bottom:188.739990px;}
.y3f{bottom:188.846910px;}
.y6c{bottom:189.209700px;}
.y15a{bottom:190.270080px;}
.yc8{bottom:195.948810px;}
.yf5{bottom:196.940430px;}
.y6b{bottom:205.592400px;}
.y120{bottom:205.934310px;}
.y96{bottom:206.370000px;}
.y159{bottom:207.554580px;}
.y17f{bottom:210.330000px;}
.yc7{bottom:213.233310px;}
.yf4{bottom:214.224930px;}
.y3e{bottom:214.322760px;}
.y98{bottom:216.990000px;}
.y95{bottom:216.994500px;}
.y6a{bottom:221.975100px;}
.y11f{bottom:223.218810px;}
.y158{bottom:224.839080px;}
.y180{bottom:226.710000px;}
.y3d{bottom:230.705460px;}
.yf3{bottom:231.509430px;}
.yc6{bottom:234.921600px;}
.y69{bottom:238.357800px;}
.y11e{bottom:240.503310px;}
.y157{bottom:242.033400px;}
.y94{bottom:245.520000px;}
.y3c{bottom:247.088160px;}
.yf2{bottom:248.703750px;}
.y68{bottom:254.740500px;}
.y11d{bottom:257.697630px;}
.y156{bottom:259.317900px;}
.yc5{bottom:261.209070px;}
.y93{bottom:261.215190px;}
.y3b{bottom:263.470860px;}
.yf1{bottom:265.988250px;}
.y179{bottom:270.000000px;}
.y11c{bottom:274.982130px;}
.y155{bottom:276.602400px;}
.yc4{bottom:278.493570px;}
.y92{bottom:278.499690px;}
.y3a{bottom:279.853560px;}
.y67{bottom:280.216350px;}
.yf0{bottom:283.272750px;}
.y17d{bottom:286.470000px;}
.y11b{bottom:292.266630px;}
.y154{bottom:293.796720px;}
.yc3{bottom:295.778070px;}
.y91{bottom:295.784190px;}
.y39{bottom:296.236260px;}
.y66{bottom:296.599050px;}
.y17b{bottom:300.240000px;}
.yef{bottom:300.467070px;}
.y11a{bottom:309.460950px;}
.y153{bottom:311.081220px;}
.y38{bottom:312.618960px;}
.y90{bottom:312.978510px;}
.y65{bottom:312.981750px;}
.yee{bottom:317.751570px;}
.yc2{bottom:321.975360px;}
.y119{bottom:326.745450px;}
.y152{bottom:328.365720px;}
.y37{bottom:329.001660px;}
.y64{bottom:329.364450px;}
.y8f{bottom:330.263010px;}
.yed{bottom:335.036070px;}
.y178{bottom:337.771620px;}
.yc1{bottom:339.259860px;}
.y118{bottom:344.029950px;}
.y36{bottom:345.384360px;}
.y151{bottom:345.560040px;}
.y63{bottom:345.747150px;}
.y8e{bottom:347.547510px;}
.yc0{bottom:356.544360px;}
.y117{bottom:361.224270px;}
.yec{bottom:361.233360px;}
.y35{bottom:361.767060px;}
.y62{bottom:362.129850px;}
.y150{bottom:362.844540px;}
.y8d{bottom:364.741830px;}
.y177{bottom:367.005420px;}
.ybf{bottom:373.738680px;}
.y116{bottom:378.508770px;}
.y61{bottom:378.512550px;}
.yeb{bottom:378.517860px;}
.y14f{bottom:380.038860px;}
.y8c{bottom:382.026330px;}
.y34{bottom:387.152730px;}
.ybe{bottom:391.023180px;}
.y60{bottom:394.895250px;}
.y115{bottom:395.703090px;}
.yea{bottom:395.712180px;}
.y176{bottom:396.253800px;}
.y14e{bottom:397.323360px;}
.y8b{bottom:399.310830px;}
.y33{bottom:403.535430px;}
.ybd{bottom:408.307680px;}
.y5f{bottom:411.277950px;}
.y114{bottom:412.987590px;}
.ye9{bottom:412.996680px;}
.y175{bottom:413.538300px;}
.y14d{bottom:414.607860px;}
.y8a{bottom:416.505150px;}
.y32{bottom:419.918130px;}
.ybc{bottom:425.502000px;}
.y5e{bottom:427.660650px;}
.y113{bottom:430.272090px;}
.ye8{bottom:430.281180px;}
.y174{bottom:430.822800px;}
.y14c{bottom:431.802180px;}
.y89{bottom:433.789650px;}
.y31{bottom:436.300830px;}
.ybb{bottom:442.786500px;}
.y5d{bottom:444.043350px;}
.y112{bottom:447.466410px;}
.ye7{bottom:447.475500px;}
.y173{bottom:448.017120px;}
.y14b{bottom:449.086680px;}
.y88{bottom:451.074150px;}
.y30{bottom:452.683530px;}
.yba{bottom:460.071000px;}
.y111{bottom:464.750910px;}
.ye6{bottom:464.760000px;}
.y172{bottom:465.301620px;}
.y14a{bottom:466.371180px;}
.y87{bottom:468.268470px;}
.y2f{bottom:469.156410px;}
.y5c{bottom:469.429020px;}
.yb9{bottom:477.265320px;}
.y110{bottom:482.035410px;}
.ye5{bottom:482.044500px;}
.y149{bottom:483.565500px;}
.y2e{bottom:485.539110px;}
.y86{bottom:485.552970px;}
.y5b{bottom:485.811720px;}
.y171{bottom:494.510310px;}
.yb8{bottom:494.549820px;}
.y10f{bottom:499.229730px;}
.ye4{bottom:499.238820px;}
.y148{bottom:500.850000px;}
.y2d{bottom:501.921810px;}
.y5a{bottom:502.194420px;}
.y85{bottom:502.837470px;}
.yb7{bottom:511.834320px;}
.y13f{bottom:515.610000px;}
.y10e{bottom:516.514230px;}
.ye3{bottom:516.523320px;}
.y2c{bottom:518.304510px;}
.y59{bottom:518.667300px;}
.y84{bottom:520.031790px;}
.y170{bottom:523.758690px;}
.y147{bottom:526.140000px;}
.y145{bottom:526.315500px;}
.yb6{bottom:529.028640px;}
.y10d{bottom:533.798730px;}
.ye2{bottom:533.807820px;}
.y142{bottom:534.064500px;}
.y2b{bottom:534.687210px;}
.y58{bottom:535.050000px;}
.y83{bottom:537.316290px;}
.y16f{bottom:541.043190px;}
.y143{bottom:541.800000px;}
.yb5{bottom:546.313140px;}
.y141{bottom:549.630000px;}
.y10c{bottom:550.993050px;}
.ye1{bottom:551.002140px;}
.y2a{bottom:551.069910px;}
.y82{bottom:554.510610px;}
.y144{bottom:557.365500px;}
.y146{bottom:557.554500px;}
.y16e{bottom:558.237510px;}
.y57{bottom:560.298330px;}
.yb4{bottom:563.507460px;}
.y10b{bottom:568.277550px;}
.ye0{bottom:568.286640px;}
.y81{bottom:571.795110px;}
.y29{bottom:573.660000px;}
.y16d{bottom:575.522010px;}
.y56{bottom:576.681030px;}
.y13d{bottom:578.430000px;}
.yb3{bottom:580.791960px;}
.y10a{bottom:585.562050px;}
.ydf{bottom:585.571140px;}
.y80{bottom:589.079610px;}
.y13e{bottom:589.140000px;}
.y16c{bottom:592.806510px;}
.y55{bottom:593.063730px;}
.yb2{bottom:598.076460px;}
.y28{bottom:602.550000px;}
.y109{bottom:602.756370px;}
.yde{bottom:602.765460px;}
.y54{bottom:609.446430px;}
.y16b{bottom:610.000830px;}
.y7f{bottom:610.767900px;}
.yb1{bottom:615.270780px;}
.y13c{bottom:617.670000px;}
.y27{bottom:618.115500px;}
.y108{bottom:620.040870px;}
.y53{bottom:625.829130px;}
.y16a{bottom:627.285330px;}
.ydd{bottom:629.037900px;}
.yb0{bottom:632.555280px;}
.y13b{bottom:633.486330px;}
.y7e{bottom:637.055370px;}
.y107{bottom:637.325370px;}
.y52{bottom:642.211830px;}
.y169{bottom:644.569830px;}
.ydc{bottom:646.322400px;}
.y26{bottom:648.625500px;}
.y13a{bottom:650.770830px;}
.yaf{bottom:654.243570px;}
.y7d{bottom:654.339870px;}
.y106{bottom:654.519690px;}
.y51{bottom:658.594530px;}
.y168{bottom:661.764150px;}
.ydb{bottom:663.516720px;}
.y25{bottom:664.110000px;}
.y139{bottom:667.965150px;}
.y7c{bottom:671.534190px;}
.y105{bottom:671.804190px;}
.y50{bottom:674.977230px;}
.y167{bottom:679.048650px;}
.y24{bottom:679.675500px;}
.yae{bottom:680.531040px;}
.yda{bottom:680.801220px;}
.y138{bottom:685.249650px;}
.y7b{bottom:688.818690px;}
.y104{bottom:689.088690px;}
.y4f{bottom:691.359930px;}
.y23{bottom:695.160000px;}
.yad{bottom:697.815540px;}
.yd9{bottom:698.085720px;}
.y166{bottom:702.270000px;}
.y137{bottom:702.534150px;}
.y7a{bottom:706.103190px;}
.y103{bottom:706.283010px;}
.y4e{bottom:707.742630px;}
.y22{bottom:710.725500px;}
.yac{bottom:715.100040px;}
.yd8{bottom:715.280040px;}
.y136{bottom:719.728470px;}
.y79{bottom:723.297510px;}
.y102{bottom:723.567510px;}
.y4d{bottom:724.125330px;}
.y21{bottom:726.210000px;}
.y165{bottom:731.245500px;}
.yab{bottom:732.294360px;}
.yd7{bottom:732.564540px;}
.y4c{bottom:740.508030px;}
.y78{bottom:740.582010px;}
.y101{bottom:740.761830px;}
.y20{bottom:741.775500px;}
.y135{bottom:743.019480px;}
.y164{bottom:746.730000px;}
.yaa{bottom:749.578860px;}
.yd6{bottom:749.758860px;}
.y4b{bottom:756.890730px;}
.y1f{bottom:757.260000px;}
.y77{bottom:757.866510px;}
.y100{bottom:758.046330px;}
.y163{bottom:759.215700px;}
.ya9{bottom:766.863360px;}
.yd5{bottom:767.043360px;}
.y134{bottom:772.267860px;}
.y1e{bottom:772.825500px;}
.y4a{bottom:773.363610px;}
.y76{bottom:775.060830px;}
.yff{bottom:775.330830px;}
.ya8{bottom:784.057680px;}
.yd4{bottom:784.327860px;}
.y1d{bottom:788.310000px;}
.y133{bottom:789.462180px;}
.y49{bottom:789.746310px;}
.y75{bottom:792.345330px;}
.yfe{bottom:792.525150px;}
.ya7{bottom:801.342180px;}
.yd3{bottom:801.522180px;}
.y1c{bottom:803.875500px;}
.y132{bottom:806.746680px;}
.y74{bottom:809.629830px;}
.yfd{bottom:809.809650px;}
.y48{bottom:815.131980px;}
.ya6{bottom:818.626680px;}
.yd2{bottom:818.806680px;}
.y1b{bottom:819.360000px;}
.y131{bottom:824.031180px;}
.y73{bottom:826.824150px;}
.yfc{bottom:827.094150px;}
.y47{bottom:831.514680px;}
.y1a{bottom:834.844500px;}
.ya5{bottom:835.821000px;}
.yd1{bottom:836.091180px;}
.y130{bottom:841.225500px;}
.y72{bottom:844.108650px;}
.yfb{bottom:844.288470px;}
.y46{bottom:847.897380px;}
.y19{bottom:850.410000px;}
.ya4{bottom:853.105500px;}
.yd0{bottom:853.285500px;}
.y12f{bottom:858.510000px;}
.y45{bottom:864.280080px;}
.y18{bottom:865.894500px;}
.y71{bottom:867.330000px;}
.yfa{bottom:867.428730px;}
.ya3{bottom:870.390000px;}
.ycf{bottom:870.570000px;}
.y44{bottom:880.662780px;}
.y17{bottom:881.460000px;}
.y19a{bottom:883.170540px;}
.ycd{bottom:884.250000px;}
.y12e{bottom:884.430000px;}
.y126{bottom:884.520000px;}
.y12d{bottom:897.014430px;}
.y191{bottom:899.460000px;}
.y199{bottom:910.705500px;}
.yf{bottom:914.215500px;}
.y198{bottom:927.990000px;}
.ye{bottom:929.781000px;}
.yd{bottom:945.265500px;}
.y196{bottom:945.360000px;}
.y18e{bottom:959.130000px;}
.yc{bottom:960.831000px;}
.y197{bottom:961.830000px;}
.y190{bottom:975.600000px;}
.yb{bottom:976.315500px;}
.y16{bottom:989.010000px;}
.y18f{bottom:989.370000px;}
.ya{bottom:991.800000px;}
.y194{bottom:1005.030000px;}
.y189{bottom:1018.800000px;}
.y195{bottom:1021.500000px;}
.y15{bottom:1028.236500px;}
.y9{bottom:1028.250000px;}
.y18c{bottom:1035.270000px;}
.y14{bottom:1043.896500px;}
.y8{bottom:1043.910000px;}
.y13{bottom:1059.381000px;}
.y7{bottom:1059.394500px;}
.y193{bottom:1064.700000px;}
.y12{bottom:1074.946500px;}
.y6{bottom:1074.960000px;}
.y187{bottom:1078.560000px;}
.y11{bottom:1090.431000px;}
.y5{bottom:1090.444500px;}
.y188{bottom:1094.940000px;}
.y162{bottom:1098.698310px;}
.y12c{bottom:1098.792180px;}
.y10{bottom:1105.996500px;}
.y4{bottom:1106.010000px;}
.y161{bottom:1115.982810px;}
.y12b{bottom:1116.076680px;}
.y184{bottom:1124.460000px;}
.y160{bottom:1133.267310px;}
.y12a{bottom:1133.361180px;}
.y192{bottom:1140.840000px;}
.y3{bottom:1147.410000px;}
.y15f{bottom:1150.551810px;}
.y129{bottom:1150.645680px;}
.y185{bottom:1154.700000px;}
.y15e{bottom:1167.746130px;}
.y128{bottom:1167.840000px;}
.y2{bottom:1188.810000px;}
.hc{height:20.430000px;}
.ha{height:24.660000px;}
.h9{height:31.050000px;}
.h17{height:33.244805px;}
.h7{height:36.597656px;}
.h5{height:37.494141px;}
.h14{height:41.400000px;}
.h8{height:41.743477px;}
.h12{height:42.011895px;}
.h4{height:47.381836px;}
.h2{height:52.751777px;}
.h10{height:52.810097px;}
.hd{height:52.833857px;}
.hf{height:52.910537px;}
.hb{height:53.436857px;}
.h16{height:55.168500px;}
.h11{height:55.170000px;}
.h15{height:55.260000px;}
.h6{height:57.805840px;}
.he{height:62.100000px;}
.h13{height:69.031500px;}
.h3{height:126.351562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:22.228500px;}
.wb{width:22.230000px;}
.w7{width:46.800000px;}
.wa{width:57.420000px;}
.w8{width:62.370000px;}
.w9{width:65.700000px;}
.w2{width:72.000000px;}
.w4{width:72.090000px;}
.w3{width:72.180000px;}
.wc{width:335.970000px;}
.w6{width:676.890000px;}
.w5{width:756.991500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x48{left:1.170000px;}
.x29{left:3.600000px;}
.x2d{left:6.930000px;}
.x32{left:9.180000px;}
.x33{left:11.070000px;}
.x25{left:17.280000px;}
.x26{left:18.810000px;}
.x2a{left:23.310000px;}
.x30{left:49.680000px;}
.x1{left:66.960000px;}
.x1e{left:68.071500px;}
.x28{left:69.840000px;}
.x39{left:76.410000px;}
.x7{left:78.943500px;}
.x5{left:83.344500px;}
.x22{left:87.120000px;}
.xb{left:88.488000px;}
.x9{left:90.094500px;}
.x4a{left:94.770000px;}
.x6{left:107.739000px;}
.xa{left:110.439000px;}
.x4{left:115.110000px;}
.x34{left:126.990000px;}
.x8{left:132.673500px;}
.x3a{left:134.280000px;}
.x2{left:135.990000px;}
.x4e{left:139.410000px;}
.x27{left:141.570000px;}
.x51{left:146.340000px;}
.x21{left:153.090000px;}
.x31{left:157.032630px;}
.x1f{left:192.150000px;}
.x35{left:197.640000px;}
.x23{left:214.470000px;}
.x4f{left:222.480000px;}
.x3{left:225.738000px;}
.x4c{left:229.050000px;}
.x4d{left:230.220000px;}
.x36{left:260.820000px;}
.x3c{left:273.694500px;}
.x3b{left:278.743500px;}
.x54{left:286.740000px;}
.x24{left:293.670000px;}
.x2c{left:297.630000px;}
.x2b{left:300.960000px;}
.x53{left:307.440000px;}
.x52{left:310.860000px;}
.x50{left:316.530000px;}
.x4b{left:319.860000px;}
.x37{left:327.240000px;}
.x3d{left:332.284500px;}
.x13{left:346.702500px;}
.xf{left:349.848000px;}
.xd{left:354.343500px;}
.x11{left:359.662500px;}
.x12{left:363.172500px;}
.xe{left:378.738000px;}
.x15{left:382.342500px;}
.xc{left:385.312500px;}
.x38{left:394.560000px;}
.x3f{left:402.030000px;}
.x10{left:403.672500px;}
.x3e{left:405.454500px;}
.x16{left:407.452500px;}
.x14{left:412.488000px;}
.x56{left:446.398740px;}
.x20{left:459.964620px;}
.x46{left:462.240000px;}
.x2f{left:481.317480px;}
.x47{left:486.720000px;}
.x49{left:487.890000px;}
.x41{left:492.030000px;}
.x43{left:531.270000px;}
.x44{left:581.400720px;}
.x2e{left:582.531930px;}
.x45{left:603.790920px;}
.x42{left:611.910000px;}
.x1a{left:620.847000px;}
.x18{left:625.342500px;}
.x1c{left:628.947000px;}
.x55{left:642.420000px;}
.x19{left:649.737000px;}
.x1b{left:674.671500px;}
.x17{left:684.648000px;}
.x1d{left:717.390000px;}
.x40{left:833.457780px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-0.748160pt;}
.ls2e{letter-spacing:-0.694720pt;}
.ls27{letter-spacing:-0.641280pt;}
.ls2a{letter-spacing:-0.534400pt;}
.ls29{letter-spacing:-0.480960pt;}
.ls2c{letter-spacing:-0.427520pt;}
.ls26{letter-spacing:-0.374080pt;}
.ls23{letter-spacing:-0.336000pt;}
.ls2f{letter-spacing:-0.320640pt;}
.ls44{letter-spacing:-0.288000pt;}
.ls42{letter-spacing:-0.267200pt;}
.ls2b{letter-spacing:-0.213760pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.170240pt;}
.ls28{letter-spacing:-0.160320pt;}
.ls21{letter-spacing:-0.144000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.106880pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls3f{letter-spacing:-0.085120pt;}
.ls43{letter-spacing:-0.053440pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.023680pt;}
.ls50{letter-spacing:0.047360pt;}
.ls39{letter-spacing:0.053440pt;}
.ls4f{letter-spacing:0.078720pt;}
.ls5c{letter-spacing:0.085120pt;}
.ls20{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.106880pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.133760pt;}
.ls49{letter-spacing:0.136320pt;}
.ls7{letter-spacing:0.138240pt;}
.ls0{letter-spacing:0.144000pt;}
.ls41{letter-spacing:0.160320pt;}
.ls48{letter-spacing:0.161280pt;}
.ls58{letter-spacing:0.170240pt;}
.ls59{letter-spacing:0.227520pt;}
.ls5a{letter-spacing:0.255360pt;}
.ls9{letter-spacing:0.374080pt;}
.ls31{letter-spacing:0.694720pt;}
.ls12{letter-spacing:1.015360pt;}
.ls13{letter-spacing:1.336000pt;}
.lsd{letter-spacing:1.656640pt;}
.lse{letter-spacing:1.710080pt;}
.lsb{letter-spacing:1.977280pt;}
.ls19{letter-spacing:2.297920pt;}
.ls11{letter-spacing:2.939200pt;}
.ls33{letter-spacing:3.259840pt;}
.ls1b{letter-spacing:4.863040pt;}
.ls18{letter-spacing:5.183680pt;}
.lsf{letter-spacing:5.504320pt;}
.lsa{letter-spacing:5.541728pt;}
.ls1{letter-spacing:5.616000pt;}
.ls4d{letter-spacing:6.145600pt;}
.ls51{letter-spacing:6.466240pt;}
.ls17{letter-spacing:6.867040pt;}
.ls36{letter-spacing:7.481600pt;}
.ls3{letter-spacing:7.824000pt;}
.ls4e{letter-spacing:7.855680pt;}
.ls2{letter-spacing:8.107200pt;}
.ls1a{letter-spacing:8.390080pt;}
.ls3c{letter-spacing:9.352000pt;}
.ls47{letter-spacing:9.458880pt;}
.ls38{letter-spacing:9.993280pt;}
.ls5{letter-spacing:10.291200pt;}
.ls4{letter-spacing:11.040000pt;}
.ls45{letter-spacing:11.275840pt;}
.ls32{letter-spacing:11.917120pt;}
.ls14{letter-spacing:12.237760pt;}
.ls3d{letter-spacing:12.985920pt;}
.ls35{letter-spacing:16.192320pt;}
.ls54{letter-spacing:16.833600pt;}
.ls52{letter-spacing:17.368000pt;}
.ls53{letter-spacing:17.688640pt;}
.ls30{letter-spacing:18.116160pt;}
.ls3b{letter-spacing:18.329920pt;}
.ls8{letter-spacing:19.612480pt;}
.ls1c{letter-spacing:19.933120pt;}
.lsc{letter-spacing:20.253760pt;}
.ls34{letter-spacing:21.215680pt;}
.ls15{letter-spacing:21.536320pt;}
.ls56{letter-spacing:22.498240pt;}
.ls46{letter-spacing:22.818880pt;}
.ls10{letter-spacing:23.139520pt;}
.ls4b{letter-spacing:23.460160pt;}
.ls16{letter-spacing:25.704640pt;}
.ls6{letter-spacing:27.361280pt;}
.ls3a{letter-spacing:27.617792pt;}
.ls3e{letter-spacing:27.895680pt;}
.ls4a{letter-spacing:29.498880pt;}
.ls4c{letter-spacing:31.743360pt;}
.ls37{letter-spacing:91.056000pt;}
.ws0{word-spacing:-31.872000pt;}
.ws99{word-spacing:-13.520320pt;}
.ws8{word-spacing:-13.466880pt;}
.ws9b{word-spacing:-13.413440pt;}
.wsb{word-spacing:-13.360000pt;}
.wsd7{word-spacing:-13.306560pt;}
.ws98{word-spacing:-13.253120pt;}
.wsa{word-spacing:-13.199680pt;}
.wsd{word-spacing:-13.146240pt;}
.ws9a{word-spacing:-13.092800pt;}
.ws12{word-spacing:-13.039360pt;}
.wse{word-spacing:-12.985920pt;}
.wsf{word-spacing:-12.932480pt;}
.ws10{word-spacing:-12.879040pt;}
.wsc{word-spacing:-12.825600pt;}
.ws9{word-spacing:-12.718720pt;}
.ws11{word-spacing:-12.665280pt;}
.ws13{word-spacing:-12.611840pt;}
.ws1{word-spacing:-12.144000pt;}
.ws2{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.856000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws5{word-spacing:-11.664000pt;}
.ws109{word-spacing:-10.810240pt;}
.ws108{word-spacing:-10.640000pt;}
.ws97{word-spacing:-10.554880pt;}
.wsb8{word-spacing:-3.580480pt;}
.wse5{word-spacing:-3.366720pt;}
.ws48{word-spacing:-3.259840pt;}
.ws123{word-spacing:-3.046080pt;}
.wsb0{word-spacing:-2.992640pt;}
.ws7e{word-spacing:-2.939200pt;}
.ws68{word-spacing:-2.885760pt;}
.ws132{word-spacing:-2.808960pt;}
.wsff{word-spacing:-2.725440pt;}
.ws127{word-spacing:-2.638720pt;}
.ws67{word-spacing:-2.618560pt;}
.ws70{word-spacing:-2.297920pt;}
.ws10f{word-spacing:-2.244480pt;}
.wsb3{word-spacing:-2.084160pt;}
.wse8{word-spacing:-2.030720pt;}
.ws135{word-spacing:-2.000320pt;}
.ws8c{word-spacing:-1.977280pt;}
.wsa6{word-spacing:-1.923840pt;}
.ws75{word-spacing:-1.763520pt;}
.ws96{word-spacing:-1.656640pt;}
.wsf7{word-spacing:-1.603200pt;}
.ws8d{word-spacing:-1.442880pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws95{word-spacing:-1.389440pt;}
.ws1e{word-spacing:-1.344000pt;}
.wsc2{word-spacing:-1.336000pt;}
.ws100{word-spacing:-1.175680pt;}
.ws83{word-spacing:-1.122240pt;}
.ws82{word-spacing:-1.068800pt;}
.ws45{word-spacing:-1.015360pt;}
.ws44{word-spacing:-0.748160pt;}
.ws13e{word-spacing:-0.723520pt;}
.ws4d{word-spacing:-0.694720pt;}
.wsaf{word-spacing:-0.641280pt;}
.ws76{word-spacing:-0.480960pt;}
.ws21{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.427520pt;}
.ws22{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.374080pt;}
.wsd0{word-spacing:-0.320640pt;}
.ws12e{word-spacing:-0.255360pt;}
.ws139{word-spacing:-0.170240pt;}
.ws56{word-spacing:-0.160320pt;}
.ws17{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.128000pt;}
.ws84{word-spacing:-0.106880pt;}
.ws115{word-spacing:-0.096000pt;}
.ws133{word-spacing:-0.085120pt;}
.ws57{word-spacing:-0.053440pt;}
.ws14{word-spacing:0.000000pt;}
.ws18{word-spacing:0.048000pt;}
.wscf{word-spacing:0.053440pt;}
.ws110{word-spacing:0.085120pt;}
.ws114{word-spacing:0.096000pt;}
.wsc1{word-spacing:0.106880pt;}
.ws16{word-spacing:0.144000pt;}
.ws49{word-spacing:0.160320pt;}
.ws142{word-spacing:0.170240pt;}
.ws19{word-spacing:0.192000pt;}
.ws50{word-spacing:0.213760pt;}
.wsb9{word-spacing:0.240000pt;}
.ws141{word-spacing:0.255360pt;}
.ws74{word-spacing:0.267200pt;}
.ws26{word-spacing:0.288000pt;}
.ws4e{word-spacing:0.320640pt;}
.wsba{word-spacing:0.336000pt;}
.ws32{word-spacing:0.374080pt;}
.ws4a{word-spacing:0.427520pt;}
.ws34{word-spacing:0.480960pt;}
.ws3e{word-spacing:0.534400pt;}
.ws13f{word-spacing:0.553280pt;}
.ws36{word-spacing:0.587840pt;}
.ws37{word-spacing:0.641280pt;}
.ws8e{word-spacing:0.694720pt;}
.ws143{word-spacing:0.723520pt;}
.ws3b{word-spacing:0.748160pt;}
.ws35{word-spacing:0.801600pt;}
.wsfa{word-spacing:0.855040pt;}
.ws5a{word-spacing:0.908480pt;}
.ws137{word-spacing:1.021440pt;}
.ws9d{word-spacing:1.122240pt;}
.ws9c{word-spacing:1.175680pt;}
.ws136{word-spacing:1.191680pt;}
.ws58{word-spacing:1.229120pt;}
.wsa0{word-spacing:1.336000pt;}
.ws11d{word-spacing:1.389440pt;}
.ws73{word-spacing:1.442880pt;}
.ws59{word-spacing:1.496320pt;}
.ws69{word-spacing:1.549760pt;}
.ws5b{word-spacing:1.710080pt;}
.ws5c{word-spacing:1.763520pt;}
.wse6{word-spacing:1.816960pt;}
.ws13a{word-spacing:1.830080pt;}
.ws10d{word-spacing:1.870400pt;}
.ws13b{word-spacing:1.915200pt;}
.ws10c{word-spacing:1.977280pt;}
.ws40{word-spacing:2.030720pt;}
.ws3f{word-spacing:2.084160pt;}
.ws41{word-spacing:2.137600pt;}
.ws11c{word-spacing:2.297920pt;}
.wsc0{word-spacing:2.351360pt;}
.ws3a{word-spacing:2.404800pt;}
.ws80{word-spacing:2.458240pt;}
.ws122{word-spacing:2.725440pt;}
.wsb4{word-spacing:2.778880pt;}
.ws81{word-spacing:3.046080pt;}
.wsd4{word-spacing:3.099520pt;}
.ws13c{word-spacing:3.106880pt;}
.ws54{word-spacing:3.313280pt;}
.wsa4{word-spacing:3.366720pt;}
.ws53{word-spacing:3.420160pt;}
.ws52{word-spacing:3.473600pt;}
.wsfd{word-spacing:3.633920pt;}
.ws93{word-spacing:3.687360pt;}
.wsae{word-spacing:3.740800pt;}
.ws5e{word-spacing:3.954560pt;}
.ws5d{word-spacing:4.008000pt;}
.wsdb{word-spacing:4.061440pt;}
.ws12a{word-spacing:4.085760pt;}
.wsda{word-spacing:4.328640pt;}
.wsa1{word-spacing:4.382080pt;}
.wsf8{word-spacing:4.595840pt;}
.wse7{word-spacing:4.649280pt;}
.ws31{word-spacing:4.656000pt;}
.ws8a{word-spacing:4.702720pt;}
.ws25{word-spacing:4.944000pt;}
.ws101{word-spacing:4.969920pt;}
.ws7f{word-spacing:5.023360pt;}
.ws6e{word-spacing:5.344000pt;}
.wsee{word-spacing:5.557760pt;}
.ws38{word-spacing:5.664640pt;}
.wsef{word-spacing:5.824960pt;}
.ws39{word-spacing:5.931840pt;}
.wsac{word-spacing:5.985280pt;}
.ws78{word-spacing:6.038720pt;}
.ws77{word-spacing:6.199040pt;}
.ws10e{word-spacing:6.252480pt;}
.ws92{word-spacing:6.305920pt;}
.ws10a{word-spacing:6.519680pt;}
.ws91{word-spacing:6.573120pt;}
.ws46{word-spacing:6.626560pt;}
.ws140{word-spacing:6.809600pt;}
.ws47{word-spacing:6.893760pt;}
.ws72{word-spacing:6.947200pt;}
.wsb7{word-spacing:7.000640pt;}
.ws131{word-spacing:7.107520pt;}
.ws71{word-spacing:7.160960pt;}
.wsb5{word-spacing:7.214400pt;}
.ws130{word-spacing:7.277760pt;}
.ws138{word-spacing:7.448000pt;}
.wsb6{word-spacing:7.481600pt;}
.wsad{word-spacing:7.535040pt;}
.ws12f{word-spacing:7.618240pt;}
.ws1a{word-spacing:7.680000pt;}
.ws23{word-spacing:7.728000pt;}
.ws1c{word-spacing:7.824000pt;}
.wsa5{word-spacing:7.909120pt;}
.ws24{word-spacing:7.920000pt;}
.ws103{word-spacing:7.962560pt;}
.ws1b{word-spacing:7.968000pt;}
.wse1{word-spacing:8.176320pt;}
.wscd{word-spacing:8.229760pt;}
.ws6b{word-spacing:8.443520pt;}
.ws88{word-spacing:8.496960pt;}
.ws87{word-spacing:8.603840pt;}
.wsbb{word-spacing:8.764160pt;}
.wsca{word-spacing:8.871040pt;}
.ws7b{word-spacing:9.084800pt;}
.ws7c{word-spacing:9.138240pt;}
.wsbc{word-spacing:9.191680pt;}
.ws7d{word-spacing:9.405440pt;}
.ws89{word-spacing:9.458880pt;}
.ws11e{word-spacing:9.512320pt;}
.wsc4{word-spacing:9.779520pt;}
.wsc3{word-spacing:9.832960pt;}
.ws2f{word-spacing:9.936000pt;}
.wsbe{word-spacing:10.046720pt;}
.wsbf{word-spacing:10.100160pt;}
.ws86{word-spacing:10.153600pt;}
.ws12d{word-spacing:10.171840pt;}
.ws85{word-spacing:10.367360pt;}
.ws30{word-spacing:10.416000pt;}
.wsab{word-spacing:10.420800pt;}
.wsaa{word-spacing:10.474240pt;}
.wsa9{word-spacing:10.527680pt;}
.ws2b{word-spacing:11.040000pt;}
.ws124{word-spacing:11.108160pt;}
.wsdf{word-spacing:11.115520pt;}
.ws2c{word-spacing:11.184000pt;}
.wse0{word-spacing:11.329280pt;}
.wsc7{word-spacing:11.649920pt;}
.wsc8{word-spacing:11.756800pt;}
.ws9e{word-spacing:12.024000pt;}
.ws9f{word-spacing:12.077440pt;}
.ws62{word-spacing:12.398080pt;}
.ws63{word-spacing:12.611840pt;}
.ws6a{word-spacing:12.665280pt;}
.ws94{word-spacing:12.718720pt;}
.ws129{word-spacing:12.725440pt;}
.ws121{word-spacing:12.932480pt;}
.ws79{word-spacing:13.039360pt;}
.wsec{word-spacing:13.253120pt;}
.ws117{word-spacing:13.306560pt;}
.ws7a{word-spacing:13.360000pt;}
.ws118{word-spacing:13.894400pt;}
.wsf1{word-spacing:14.215040pt;}
.ws145{word-spacing:14.342720pt;}
.wsf0{word-spacing:14.535680pt;}
.ws42{word-spacing:14.963200pt;}
.ws43{word-spacing:15.230400pt;}
.wsc9{word-spacing:15.283840pt;}
.ws13d{word-spacing:15.449280pt;}
.wsd2{word-spacing:15.657920pt;}
.wsd3{word-spacing:15.925120pt;}
.ws10b{word-spacing:16.138880pt;}
.wsb1{word-spacing:16.245760pt;}
.ws60{word-spacing:16.459520pt;}
.ws61{word-spacing:16.566400pt;}
.wsea{word-spacing:16.833600pt;}
.wsce{word-spacing:17.154240pt;}
.ws119{word-spacing:17.207680pt;}
.ws11a{word-spacing:17.474880pt;}
.ws11b{word-spacing:17.528320pt;}
.wscb{word-spacing:18.169600pt;}
.wscc{word-spacing:18.276480pt;}
.ws4f{word-spacing:18.757440pt;}
.ws116{word-spacing:18.810880pt;}
.wsf9{word-spacing:19.078080pt;}
.ws111{word-spacing:19.131520pt;}
.ws1f{word-spacing:19.344000pt;}
.ws112{word-spacing:19.398720pt;}
.ws8b{word-spacing:19.452160pt;}
.ws20{word-spacing:19.488000pt;}
.ws2e{word-spacing:19.536000pt;}
.ws33{word-spacing:19.772800pt;}
.ws2d{word-spacing:19.776000pt;}
.wse9{word-spacing:20.040000pt;}
.ws8f{word-spacing:20.093440pt;}
.ws90{word-spacing:20.146880pt;}
.ws3d{word-spacing:20.414080pt;}
.ws3c{word-spacing:20.627840pt;}
.wsd6{word-spacing:20.948480pt;}
.wsd5{word-spacing:21.055360pt;}
.ws28{word-spacing:21.264000pt;}
.wsfe{word-spacing:21.269120pt;}
.wsa7{word-spacing:21.322560pt;}
.ws27{word-spacing:21.408000pt;}
.ws66{word-spacing:21.696640pt;}
.ws65{word-spacing:21.750080pt;}
.ws64{word-spacing:21.963840pt;}
.ws144{word-spacing:22.003520pt;}
.ws120{word-spacing:22.017280pt;}
.ws2a{word-spacing:22.224000pt;}
.ws11f{word-spacing:22.284480pt;}
.wsa8{word-spacing:22.658560pt;}
.ws4c{word-spacing:22.979200pt;}
.wsed{word-spacing:23.032640pt;}
.ws4b{word-spacing:23.192960pt;}
.wsd8{word-spacing:23.246400pt;}
.wsfb{word-spacing:23.513600pt;}
.wsfc{word-spacing:24.796160pt;}
.ws6d{word-spacing:25.864960pt;}
.ws6c{word-spacing:26.452800pt;}
.ws6f{word-spacing:26.826880pt;}
.wsc5{word-spacing:27.147520pt;}
.wsc6{word-spacing:27.200960pt;}
.wsd1{word-spacing:27.468160pt;}
.wsf5{word-spacing:28.376640pt;}
.wsf6{word-spacing:28.643840pt;}
.ws29{word-spacing:29.472000pt;}
.wsa3{word-spacing:29.605760pt;}
.wsa2{word-spacing:29.659200pt;}
.wsf2{word-spacing:29.712640pt;}
.wsf3{word-spacing:29.872960pt;}
.wsb2{word-spacing:29.979840pt;}
.wsf4{word-spacing:30.247040pt;}
.wsde{word-spacing:30.300480pt;}
.ws107{word-spacing:30.353920pt;}
.wsdd{word-spacing:30.834880pt;}
.ws105{word-spacing:31.262400pt;}
.ws104{word-spacing:31.529600pt;}
.ws106{word-spacing:32.224320pt;}
.ws12c{word-spacing:32.260480pt;}
.wsdc{word-spacing:33.774080pt;}
.wse4{word-spacing:35.323840pt;}
.ws134{word-spacing:39.623360pt;}
.ws128{word-spacing:40.900160pt;}
.wseb{word-spacing:43.126080pt;}
.wse3{word-spacing:43.767360pt;}
.wse2{word-spacing:43.927680pt;}
.wsbd{word-spacing:43.981120pt;}
.ws125{word-spacing:52.561600pt;}
.ws126{word-spacing:52.731840pt;}
.ws51{word-spacing:52.959040pt;}
.ws102{word-spacing:63.914240pt;}
.wsd9{word-spacing:65.464000pt;}
.ws113{word-spacing:78.343040pt;}
.ws12b{word-spacing:146.491520pt;}
.ws146{word-spacing:192.541440pt;}
._1{margin-left:-14.336000pt;}
._0{margin-left:-2.944000pt;}
._f{margin-left:-1.932800pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.008000pt;}
._e{width:1.923840pt;}
._a{width:3.366720pt;}
._18{width:4.488960pt;}
._4{width:5.505600pt;}
._5{width:8.448000pt;}
._c{width:11.547520pt;}
._b{width:16.085440pt;}
._9{width:18.383360pt;}
._8{width:19.680000pt;}
._10{width:20.611520pt;}
._6{width:21.744000pt;}
._d{width:26.452800pt;}
._16{width:27.762368pt;}
._7{width:29.347200pt;}
._12{width:41.696000pt;}
._17{width:44.561600pt;}
._15{width:70.848000pt;}
._14{width:73.664000pt;}
._13{width:75.024000pt;}
._1a{width:78.457280pt;}
._11{width:95.280000pt;}
._1b{width:129.888000pt;}
._19{width:1280.101760pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y17e{bottom:2.320000pt;}
.y18d{bottom:2.400000pt;}
.y9a{bottom:2.560000pt;}
.y9e{bottom:2.640000pt;}
.y127{bottom:6.960000pt;}
.y97{bottom:9.440000pt;}
.y9d{bottom:9.520000pt;}
.yce{bottom:10.720000pt;}
.y186{bottom:14.560000pt;}
.y18b{bottom:14.640000pt;}
.y99{bottom:16.400000pt;}
.y17c{bottom:26.880000pt;}
.y17a{bottom:39.120000pt;}
.y18a{bottom:39.200000pt;}
.y140{bottom:44.000000pt;}
.y1{bottom:50.880000pt;}
.y182{bottom:51.440000pt;}
.ya2{bottom:98.640000pt;}
.y125{bottom:106.393040pt;}
.ya1{bottom:108.080000pt;}
.y43{bottom:109.614320pt;}
.y70{bottom:109.936800pt;}
.ycc{bottom:112.881040pt;}
.yf9{bottom:113.682320pt;}
.y181{bottom:121.600000pt;}
.y124{bottom:121.757040pt;}
.y15d{bottom:123.117120pt;}
.y42{bottom:124.176720pt;}
.y6f{bottom:124.499200pt;}
.ya0{bottom:126.880000pt;}
.ycb{bottom:128.164880pt;}
.yf8{bottom:129.046320pt;}
.y183{bottom:136.240000pt;}
.y9f{bottom:136.400000pt;}
.y123{bottom:137.040880pt;}
.y15c{bottom:138.481120pt;}
.y41{bottom:138.739120pt;}
.y6e{bottom:139.061600pt;}
.yca{bottom:143.528880pt;}
.yf7{bottom:144.410320pt;}
.y122{bottom:152.404880pt;}
.y40{bottom:153.301520pt;}
.y6d{bottom:153.624000pt;}
.y15b{bottom:153.845120pt;}
.y9c{bottom:155.120000pt;}
.yc9{bottom:158.892880pt;}
.yf6{bottom:159.774320pt;}
.y9b{bottom:164.640000pt;}
.y121{bottom:167.768880pt;}
.y3f{bottom:167.863920pt;}
.y6c{bottom:168.186400pt;}
.y15a{bottom:169.128960pt;}
.yc8{bottom:174.176720pt;}
.yf5{bottom:175.058160pt;}
.y6b{bottom:182.748800pt;}
.y120{bottom:183.052720pt;}
.y96{bottom:183.440000pt;}
.y159{bottom:184.492960pt;}
.y17f{bottom:186.960000pt;}
.yc7{bottom:189.540720pt;}
.yf4{bottom:190.422160pt;}
.y3e{bottom:190.509120pt;}
.y98{bottom:192.880000pt;}
.y95{bottom:192.884000pt;}
.y6a{bottom:197.311200pt;}
.y11f{bottom:198.416720pt;}
.y158{bottom:199.856960pt;}
.y180{bottom:201.520000pt;}
.y3d{bottom:205.071520pt;}
.yf3{bottom:205.786160pt;}
.yc6{bottom:208.819200pt;}
.y69{bottom:211.873600pt;}
.y11e{bottom:213.780720pt;}
.y157{bottom:215.140800pt;}
.y94{bottom:218.240000pt;}
.y3c{bottom:219.633920pt;}
.yf2{bottom:221.070000pt;}
.y68{bottom:226.436000pt;}
.y11d{bottom:229.064560pt;}
.y156{bottom:230.504800pt;}
.yc5{bottom:232.185840pt;}
.y93{bottom:232.191280pt;}
.y3b{bottom:234.196320pt;}
.yf1{bottom:236.434000pt;}
.y179{bottom:240.000000pt;}
.y11c{bottom:244.428560pt;}
.y155{bottom:245.868800pt;}
.yc4{bottom:247.549840pt;}
.y92{bottom:247.555280pt;}
.y3a{bottom:248.758720pt;}
.y67{bottom:249.081200pt;}
.yf0{bottom:251.798000pt;}
.y17d{bottom:254.640000pt;}
.y11b{bottom:259.792560pt;}
.y154{bottom:261.152640pt;}
.yc3{bottom:262.913840pt;}
.y91{bottom:262.919280pt;}
.y39{bottom:263.321120pt;}
.y66{bottom:263.643600pt;}
.y17b{bottom:266.880000pt;}
.yef{bottom:267.081840pt;}
.y11a{bottom:275.076400pt;}
.y153{bottom:276.516640pt;}
.y38{bottom:277.883520pt;}
.y90{bottom:278.203120pt;}
.y65{bottom:278.206000pt;}
.yee{bottom:282.445840pt;}
.yc2{bottom:286.200320pt;}
.y119{bottom:290.440400pt;}
.y152{bottom:291.880640pt;}
.y37{bottom:292.445920pt;}
.y64{bottom:292.768400pt;}
.y8f{bottom:293.567120pt;}
.yed{bottom:297.809840pt;}
.y178{bottom:300.241440pt;}
.yc1{bottom:301.564320pt;}
.y118{bottom:305.804400pt;}
.y36{bottom:307.008320pt;}
.y151{bottom:307.164480pt;}
.y63{bottom:307.330800pt;}
.y8e{bottom:308.931120pt;}
.yc0{bottom:316.928320pt;}
.y117{bottom:321.088240pt;}
.yec{bottom:321.096320pt;}
.y35{bottom:321.570720pt;}
.y62{bottom:321.893200pt;}
.y150{bottom:322.528480pt;}
.y8d{bottom:324.214960pt;}
.y177{bottom:326.227040pt;}
.ybf{bottom:332.212160pt;}
.y116{bottom:336.452240pt;}
.y61{bottom:336.455600pt;}
.yeb{bottom:336.460320pt;}
.y14f{bottom:337.812320pt;}
.y8c{bottom:339.578960pt;}
.y34{bottom:344.135760pt;}
.ybe{bottom:347.576160pt;}
.y60{bottom:351.018000pt;}
.y115{bottom:351.736080pt;}
.yea{bottom:351.744160pt;}
.y176{bottom:352.225600pt;}
.y14e{bottom:353.176320pt;}
.y8b{bottom:354.942960pt;}
.y33{bottom:358.698160pt;}
.ybd{bottom:362.940160pt;}
.y5f{bottom:365.580400pt;}
.y114{bottom:367.100080pt;}
.ye9{bottom:367.108160pt;}
.y175{bottom:367.589600pt;}
.y14d{bottom:368.540320pt;}
.y8a{bottom:370.226800pt;}
.y32{bottom:373.260560pt;}
.ybc{bottom:378.224000pt;}
.y5e{bottom:380.142800pt;}
.y113{bottom:382.464080pt;}
.ye8{bottom:382.472160pt;}
.y174{bottom:382.953600pt;}
.y14c{bottom:383.824160pt;}
.y89{bottom:385.590800pt;}
.y31{bottom:387.822960pt;}
.ybb{bottom:393.588000pt;}
.y5d{bottom:394.705200pt;}
.y112{bottom:397.747920pt;}
.ye7{bottom:397.756000pt;}
.y173{bottom:398.237440pt;}
.y14b{bottom:399.188160pt;}
.y88{bottom:400.954800pt;}
.y30{bottom:402.385360pt;}
.yba{bottom:408.952000pt;}
.y111{bottom:413.111920pt;}
.ye6{bottom:413.120000pt;}
.y172{bottom:413.601440pt;}
.y14a{bottom:414.552160pt;}
.y87{bottom:416.238640pt;}
.y2f{bottom:417.027920pt;}
.y5c{bottom:417.270240pt;}
.yb9{bottom:424.235840pt;}
.y110{bottom:428.475920pt;}
.ye5{bottom:428.484000pt;}
.y149{bottom:429.836000pt;}
.y2e{bottom:431.590320pt;}
.y86{bottom:431.602640pt;}
.y5b{bottom:431.832640pt;}
.y171{bottom:439.564720pt;}
.yb8{bottom:439.599840pt;}
.y10f{bottom:443.759760pt;}
.ye4{bottom:443.767840pt;}
.y148{bottom:445.200000pt;}
.y2d{bottom:446.152720pt;}
.y5a{bottom:446.395040pt;}
.y85{bottom:446.966640pt;}
.yb7{bottom:454.963840pt;}
.y13f{bottom:458.320000pt;}
.y10e{bottom:459.123760pt;}
.ye3{bottom:459.131840pt;}
.y2c{bottom:460.715120pt;}
.y59{bottom:461.037600pt;}
.y84{bottom:462.250480pt;}
.y170{bottom:465.563280pt;}
.y147{bottom:467.680000pt;}
.y145{bottom:467.836000pt;}
.yb6{bottom:470.247680pt;}
.y10d{bottom:474.487760pt;}
.ye2{bottom:474.495840pt;}
.y142{bottom:474.724000pt;}
.y2b{bottom:475.277520pt;}
.y58{bottom:475.600000pt;}
.y83{bottom:477.614480pt;}
.y16f{bottom:480.927280pt;}
.y143{bottom:481.600000pt;}
.yb5{bottom:485.611680pt;}
.y141{bottom:488.560000pt;}
.y10c{bottom:489.771600pt;}
.ye1{bottom:489.779680pt;}
.y2a{bottom:489.839920pt;}
.y82{bottom:492.898320pt;}
.y144{bottom:495.436000pt;}
.y146{bottom:495.604000pt;}
.y16e{bottom:496.211120pt;}
.y57{bottom:498.042960pt;}
.yb4{bottom:500.895520pt;}
.y10b{bottom:505.135600pt;}
.ye0{bottom:505.143680pt;}
.y81{bottom:508.262320pt;}
.y29{bottom:509.920000pt;}
.y16d{bottom:511.575120pt;}
.y56{bottom:512.605360pt;}
.y13d{bottom:514.160000pt;}
.yb3{bottom:516.259520pt;}
.y10a{bottom:520.499600pt;}
.ydf{bottom:520.507680pt;}
.y80{bottom:523.626320pt;}
.y13e{bottom:523.680000pt;}
.y16c{bottom:526.939120pt;}
.y55{bottom:527.167760pt;}
.yb2{bottom:531.623520pt;}
.y28{bottom:535.600000pt;}
.y109{bottom:535.783440pt;}
.yde{bottom:535.791520pt;}
.y54{bottom:541.730160pt;}
.y16b{bottom:542.222960pt;}
.y7f{bottom:542.904800pt;}
.yb1{bottom:546.907360pt;}
.y13c{bottom:549.040000pt;}
.y27{bottom:549.436000pt;}
.y108{bottom:551.147440pt;}
.y53{bottom:556.292560pt;}
.y16a{bottom:557.586960pt;}
.ydd{bottom:559.144800pt;}
.yb0{bottom:562.271360pt;}
.y13b{bottom:563.098960pt;}
.y7e{bottom:566.271440pt;}
.y107{bottom:566.511440pt;}
.y52{bottom:570.854960pt;}
.y169{bottom:572.950960pt;}
.ydc{bottom:574.508800pt;}
.y26{bottom:576.556000pt;}
.y13a{bottom:578.462960pt;}
.yaf{bottom:581.549840pt;}
.y7d{bottom:581.635440pt;}
.y106{bottom:581.795280pt;}
.y51{bottom:585.417360pt;}
.y168{bottom:588.234800pt;}
.ydb{bottom:589.792640pt;}
.y25{bottom:590.320000pt;}
.y139{bottom:593.746800pt;}
.y7c{bottom:596.919280pt;}
.y105{bottom:597.159280pt;}
.y50{bottom:599.979760pt;}
.y167{bottom:603.598800pt;}
.y24{bottom:604.156000pt;}
.yae{bottom:604.916480pt;}
.yda{bottom:605.156640pt;}
.y138{bottom:609.110800pt;}
.y7b{bottom:612.283280pt;}
.y104{bottom:612.523280pt;}
.y4f{bottom:614.542160pt;}
.y23{bottom:617.920000pt;}
.yad{bottom:620.280480pt;}
.yd9{bottom:620.520640pt;}
.y166{bottom:624.240000pt;}
.y137{bottom:624.474800pt;}
.y7a{bottom:627.647280pt;}
.y103{bottom:627.807120pt;}
.y4e{bottom:629.104560pt;}
.y22{bottom:631.756000pt;}
.yac{bottom:635.644480pt;}
.yd8{bottom:635.804480pt;}
.y136{bottom:639.758640pt;}
.y79{bottom:642.931120pt;}
.y102{bottom:643.171120pt;}
.y4d{bottom:643.666960pt;}
.y21{bottom:645.520000pt;}
.y165{bottom:649.996000pt;}
.yab{bottom:650.928320pt;}
.yd7{bottom:651.168480pt;}
.y4c{bottom:658.229360pt;}
.y78{bottom:658.295120pt;}
.y101{bottom:658.454960pt;}
.y20{bottom:659.356000pt;}
.y135{bottom:660.461760pt;}
.y164{bottom:663.760000pt;}
.yaa{bottom:666.292320pt;}
.yd6{bottom:666.452320pt;}
.y4b{bottom:672.791760pt;}
.y1f{bottom:673.120000pt;}
.y77{bottom:673.659120pt;}
.y100{bottom:673.818960pt;}
.y163{bottom:674.858400pt;}
.ya9{bottom:681.656320pt;}
.yd5{bottom:681.816320pt;}
.y134{bottom:686.460320pt;}
.y1e{bottom:686.956000pt;}
.y4a{bottom:687.434320pt;}
.y76{bottom:688.942960pt;}
.yff{bottom:689.182960pt;}
.ya8{bottom:696.940160pt;}
.yd4{bottom:697.180320pt;}
.y1d{bottom:700.720000pt;}
.y133{bottom:701.744160pt;}
.y49{bottom:701.996720pt;}
.y75{bottom:704.306960pt;}
.yfe{bottom:704.466800pt;}
.ya7{bottom:712.304160pt;}
.yd3{bottom:712.464160pt;}
.y1c{bottom:714.556000pt;}
.y132{bottom:717.108160pt;}
.y74{bottom:719.670960pt;}
.yfd{bottom:719.830800pt;}
.y48{bottom:724.561760pt;}
.ya6{bottom:727.668160pt;}
.yd2{bottom:727.828160pt;}
.y1b{bottom:728.320000pt;}
.y131{bottom:732.472160pt;}
.y73{bottom:734.954800pt;}
.yfc{bottom:735.194800pt;}
.y47{bottom:739.124160pt;}
.y1a{bottom:742.084000pt;}
.ya5{bottom:742.952000pt;}
.yd1{bottom:743.192160pt;}
.y130{bottom:747.756000pt;}
.y72{bottom:750.318800pt;}
.yfb{bottom:750.478640pt;}
.y46{bottom:753.686560pt;}
.y19{bottom:755.920000pt;}
.ya4{bottom:758.316000pt;}
.yd0{bottom:758.476000pt;}
.y12f{bottom:763.120000pt;}
.y45{bottom:768.248960pt;}
.y18{bottom:769.684000pt;}
.y71{bottom:770.960000pt;}
.yfa{bottom:771.047760pt;}
.ya3{bottom:773.680000pt;}
.ycf{bottom:773.840000pt;}
.y44{bottom:782.811360pt;}
.y17{bottom:783.520000pt;}
.y19a{bottom:785.040480pt;}
.ycd{bottom:786.000000pt;}
.y12e{bottom:786.160000pt;}
.y126{bottom:786.240000pt;}
.y12d{bottom:797.346160pt;}
.y191{bottom:799.520000pt;}
.y199{bottom:809.516000pt;}
.yf{bottom:812.636000pt;}
.y198{bottom:824.880000pt;}
.ye{bottom:826.472000pt;}
.yd{bottom:840.236000pt;}
.y196{bottom:840.320000pt;}
.y18e{bottom:852.560000pt;}
.yc{bottom:854.072000pt;}
.y197{bottom:854.960000pt;}
.y190{bottom:867.200000pt;}
.yb{bottom:867.836000pt;}
.y16{bottom:879.120000pt;}
.y18f{bottom:879.440000pt;}
.ya{bottom:881.600000pt;}
.y194{bottom:893.360000pt;}
.y189{bottom:905.600000pt;}
.y195{bottom:908.000000pt;}
.y15{bottom:913.988000pt;}
.y9{bottom:914.000000pt;}
.y18c{bottom:920.240000pt;}
.y14{bottom:927.908000pt;}
.y8{bottom:927.920000pt;}
.y13{bottom:941.672000pt;}
.y7{bottom:941.684000pt;}
.y193{bottom:946.400000pt;}
.y12{bottom:955.508000pt;}
.y6{bottom:955.520000pt;}
.y187{bottom:958.720000pt;}
.y11{bottom:969.272000pt;}
.y5{bottom:969.284000pt;}
.y188{bottom:973.280000pt;}
.y162{bottom:976.620720pt;}
.y12c{bottom:976.704160pt;}
.y10{bottom:983.108000pt;}
.y4{bottom:983.120000pt;}
.y161{bottom:991.984720pt;}
.y12b{bottom:992.068160pt;}
.y184{bottom:999.520000pt;}
.y160{bottom:1007.348720pt;}
.y12a{bottom:1007.432160pt;}
.y192{bottom:1014.080000pt;}
.y3{bottom:1019.920000pt;}
.y15f{bottom:1022.712720pt;}
.y129{bottom:1022.796160pt;}
.y185{bottom:1026.400000pt;}
.y15e{bottom:1037.996560pt;}
.y128{bottom:1038.080000pt;}
.y2{bottom:1056.720000pt;}
.hc{height:18.160000pt;}
.ha{height:21.920000pt;}
.h9{height:27.600000pt;}
.h17{height:29.550937pt;}
.h7{height:32.531250pt;}
.h5{height:33.328125pt;}
.h14{height:36.800000pt;}
.h8{height:37.105312pt;}
.h12{height:37.343906pt;}
.h4{height:42.117188pt;}
.h2{height:46.890469pt;}
.h10{height:46.942309pt;}
.hd{height:46.963429pt;}
.hf{height:47.031589pt;}
.hb{height:47.499429pt;}
.h16{height:49.038667pt;}
.h11{height:49.040000pt;}
.h15{height:49.120000pt;}
.h6{height:51.382969pt;}
.he{height:55.200000pt;}
.h13{height:61.361333pt;}
.h3{height:112.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:19.758667pt;}
.wb{width:19.760000pt;}
.w7{width:41.600000pt;}
.wa{width:51.040000pt;}
.w8{width:55.440000pt;}
.w9{width:58.400000pt;}
.w2{width:64.000000pt;}
.w4{width:64.080000pt;}
.w3{width:64.160000pt;}
.wc{width:298.640000pt;}
.w6{width:601.680000pt;}
.w5{width:672.881333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x48{left:1.040000pt;}
.x29{left:3.200000pt;}
.x2d{left:6.160000pt;}
.x32{left:8.160000pt;}
.x33{left:9.840000pt;}
.x25{left:15.360000pt;}
.x26{left:16.720000pt;}
.x2a{left:20.720000pt;}
.x30{left:44.160000pt;}
.x1{left:59.520000pt;}
.x1e{left:60.508000pt;}
.x28{left:62.080000pt;}
.x39{left:67.920000pt;}
.x7{left:70.172000pt;}
.x5{left:74.084000pt;}
.x22{left:77.440000pt;}
.xb{left:78.656000pt;}
.x9{left:80.084000pt;}
.x4a{left:84.240000pt;}
.x6{left:95.768000pt;}
.xa{left:98.168000pt;}
.x4{left:102.320000pt;}
.x34{left:112.880000pt;}
.x8{left:117.932000pt;}
.x3a{left:119.360000pt;}
.x2{left:120.880000pt;}
.x4e{left:123.920000pt;}
.x27{left:125.840000pt;}
.x51{left:130.080000pt;}
.x21{left:136.080000pt;}
.x31{left:139.584560pt;}
.x1f{left:170.800000pt;}
.x35{left:175.680000pt;}
.x23{left:190.640000pt;}
.x4f{left:197.760000pt;}
.x3{left:200.656000pt;}
.x4c{left:203.600000pt;}
.x4d{left:204.640000pt;}
.x36{left:231.840000pt;}
.x3c{left:243.284000pt;}
.x3b{left:247.772000pt;}
.x54{left:254.880000pt;}
.x24{left:261.040000pt;}
.x2c{left:264.560000pt;}
.x2b{left:267.520000pt;}
.x53{left:273.280000pt;}
.x52{left:276.320000pt;}
.x50{left:281.360000pt;}
.x4b{left:284.320000pt;}
.x37{left:290.880000pt;}
.x3d{left:295.364000pt;}
.x13{left:308.180000pt;}
.xf{left:310.976000pt;}
.xd{left:314.972000pt;}
.x11{left:319.700000pt;}
.x12{left:322.820000pt;}
.xe{left:336.656000pt;}
.x15{left:339.860000pt;}
.xc{left:342.500000pt;}
.x38{left:350.720000pt;}
.x3f{left:357.360000pt;}
.x10{left:358.820000pt;}
.x3e{left:360.404000pt;}
.x16{left:362.180000pt;}
.x14{left:366.656000pt;}
.x56{left:396.798880pt;}
.x20{left:408.857440pt;}
.x46{left:410.880000pt;}
.x2f{left:427.837760pt;}
.x47{left:432.640000pt;}
.x49{left:433.680000pt;}
.x41{left:437.360000pt;}
.x43{left:472.240000pt;}
.x44{left:516.800640pt;}
.x2e{left:517.806160pt;}
.x45{left:536.703040pt;}
.x42{left:543.920000pt;}
.x1a{left:551.864000pt;}
.x18{left:555.860000pt;}
.x1c{left:559.064000pt;}
.x55{left:571.040000pt;}
.x19{left:577.544000pt;}
.x1b{left:599.708000pt;}
.x17{left:608.576000pt;}
.x1d{left:637.680000pt;}
.x40{left:740.851360pt;}
}




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