
    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_283d5f9bc5602a08e9f863e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_96d841c6815572103b0b1081.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115000;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_335fa2d008bc70dc2b866dd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_5953abd59355633a7d01c40f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.071000;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_eb5dcf1db095f12692bc47e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_a7a05629d5f8d1e36a006b33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_6414cf917d65a7181ae51b6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29928636e50b09ddc1b35f3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_60ac19d07ff5a2c8e714e499.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.860840;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:27.639600px;}
.v3{vertical-align:29.654400px;}
.v2{vertical-align:46.800000px;}
.ls3d{letter-spacing:-4.896000px;}
.ls1d{letter-spacing:-3.600000px;}
.ls5d{letter-spacing:-2.820000px;}
.ls3b{letter-spacing:-2.592000px;}
.ls3c{letter-spacing:-2.088000px;}
.ls3a{letter-spacing:-1.800000px;}
.ls5c{letter-spacing:-1.140000px;}
.ls27{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.576000px;}
.ls47{letter-spacing:-0.540000px;}
.ls64{letter-spacing:-0.528000px;}
.ls25{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.366000px;}
.ls16{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls66{letter-spacing:-0.264000px;}
.ls48{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.132000px;}
.ls5e{letter-spacing:-0.120000px;}
.ls18{letter-spacing:-0.072000px;}
.ls65{letter-spacing:-0.066000px;}
.ls5a{letter-spacing:-0.060000px;}
.ls46{letter-spacing:-0.054000px;}
.lsd{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.288000px;}
.ls51{letter-spacing:0.300000px;}
.ls61{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.366000px;}
.ls62{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.455994px;}
.ls30{letter-spacing:0.460800px;}
.ls60{letter-spacing:0.462000px;}
.ls20{letter-spacing:0.475200px;}
.ls50{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.504000px;}
.ls4f{letter-spacing:0.540000px;}
.ls59{letter-spacing:0.546000px;}
.ls1b{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.712800px;}
.ls56{letter-spacing:0.786000px;}
.ls52{letter-spacing:0.900000px;}
.ls4c{letter-spacing:1.008000px;}
.ls32{letter-spacing:1.159200px;}
.ls53{letter-spacing:1.194000px;}
.ls4e{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.980000px;}
.ls1f{letter-spacing:2.376000px;}
.ls5b{letter-spacing:3.180000px;}
.ls8{letter-spacing:3.600000px;}
.ls7{letter-spacing:4.608000px;}
.ls36{letter-spacing:4.752000px;}
.ls1e{letter-spacing:5.976000px;}
.lsa{letter-spacing:7.200000px;}
.ls57{letter-spacing:7.980000px;}
.ls4b{letter-spacing:8.352000px;}
.ls35{letter-spacing:9.475200px;}
.ls38{letter-spacing:10.800000px;}
.ls5{letter-spacing:11.808000px;}
.ls55{letter-spacing:12.780000px;}
.ls4d{letter-spacing:22.920000px;}
.ls9{letter-spacing:23.976000px;}
.ls4a{letter-spacing:29.160000px;}
.ls34{letter-spacing:29.952000px;}
.ls39{letter-spacing:32.400000px;}
.ls24{letter-spacing:32.760000px;}
.ls40{letter-spacing:39.960000px;}
.ls54{letter-spacing:55.968000px;}
.ls3f{letter-spacing:62.784000px;}
.ls2d{letter-spacing:273.600000px;}
.ls2b{letter-spacing:322.776000px;}
.ls2e{letter-spacing:328.752000px;}
.ls29{letter-spacing:340.776000px;}
.ls2f{letter-spacing:347.976000px;}
.ls31{letter-spacing:391.176000px;}
.ls2c{letter-spacing:410.400000px;}
.ls2a{letter-spacing:542.352000px;}
.ls3{letter-spacing:642.780000px;}
.ls45{letter-spacing:648.000000px;}
.ls41{letter-spacing:651.600000px;}
.ls44{letter-spacing:680.400000px;}
.ls42{letter-spacing:743.976000px;}
.ls43{letter-spacing:820.800000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:905.580000px;}
.ls49{letter-spacing:1349.184000px;}
.ls0{letter-spacing:1428.780000px;}
.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;}
}
.ws8c{word-spacing:-19.656000px;}
.ws53{word-spacing:-19.584000px;}
.ws72{word-spacing:-19.512000px;}
.ws8f{word-spacing:-19.440000px;}
.ws52{word-spacing:-19.368000px;}
.ws73{word-spacing:-19.296000px;}
.ws51{word-spacing:-19.224000px;}
.ws2c{word-spacing:-19.152000px;}
.ws6f{word-spacing:-18.936000px;}
.ws5{word-spacing:-18.864000px;}
.ws2d{word-spacing:-18.792000px;}
.ws50{word-spacing:-18.720000px;}
.ws71{word-spacing:-18.648000px;}
.ws70{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.216000px;}
.ws8d{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsb6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.640000px;}
.wsd5{word-spacing:-17.358000px;}
.wsd4{word-spacing:-17.094000px;}
.wsbf{word-spacing:-16.920000px;}
.wsbb{word-spacing:-16.560000px;}
.wsbc{word-spacing:-16.500000px;}
.wsba{word-spacing:-16.380000px;}
.wsd3{word-spacing:-16.368000px;}
.wsbd{word-spacing:-16.320000px;}
.wsb9{word-spacing:-16.260000px;}
.wsbe{word-spacing:-16.140000px;}
.ws8e{word-spacing:-16.080000px;}
.wsd0{word-spacing:-16.020000px;}
.wscf{word-spacing:-15.960000px;}
.wsd2{word-spacing:-15.900000px;}
.wsc0{word-spacing:-15.720000px;}
.ws4{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wsb8{word-spacing:-15.000000px;}
.wsd1{word-spacing:-14.880000px;}
.wsb7{word-spacing:-14.640000px;}
.wsb1{word-spacing:-13.080000px;}
.wsab{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.214000px;}
.wsc8{word-spacing:-7.200000px;}
.ws2a{word-spacing:-5.976000px;}
.ws84{word-spacing:-5.112000px;}
.ws7a{word-spacing:-5.040000px;}
.ws1c{word-spacing:-4.752000px;}
.ws9e{word-spacing:-4.392000px;}
.wsa0{word-spacing:-4.248000px;}
.ws7c{word-spacing:-4.176000px;}
.ws4e{word-spacing:-3.816000px;}
.ws3d{word-spacing:-3.528000px;}
.ws7b{word-spacing:-3.456000px;}
.wsdf{word-spacing:-3.360000px;}
.wsdb{word-spacing:-3.180000px;}
.ws33{word-spacing:-3.168000px;}
.ws86{word-spacing:-3.096000px;}
.wse1{word-spacing:-3.060000px;}
.ws3a{word-spacing:-3.024000px;}
.wse5{word-spacing:-2.820000px;}
.wse3{word-spacing:-2.520000px;}
.wse0{word-spacing:-2.400000px;}
.ws78{word-spacing:-2.376000px;}
.wse2{word-spacing:-2.340000px;}
.ws61{word-spacing:-2.160000px;}
.ws5b{word-spacing:-1.872000px;}
.ws48{word-spacing:-1.584000px;}
.ws9b{word-spacing:-1.512000px;}
.ws98{word-spacing:-1.440000px;}
.wscc{word-spacing:-1.320000px;}
.ws8a{word-spacing:-1.188000px;}
.ws6c{word-spacing:-1.152000px;}
.wscd{word-spacing:-1.140000px;}
.ws9a{word-spacing:-1.008000px;}
.wsec{word-spacing:-0.960000px;}
.ws5d{word-spacing:-0.792000px;}
.wseb{word-spacing:-0.660000px;}
.ws5c{word-spacing:-0.648000px;}
.ws75{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.504000px;}
.wsa7{word-spacing:-0.480000px;}
.ws30{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.420000px;}
.ws4c{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.216000px;}
.ws89{word-spacing:-0.144000px;}
.wsa8{word-spacing:-0.120000px;}
.ws5a{word-spacing:-0.072000px;}
.ws8b{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsd8{word-spacing:0.060000px;}
.wsf0{word-spacing:0.066000px;}
.ws11{word-spacing:0.072000px;}
.ws74{word-spacing:0.144000px;}
.wsca{word-spacing:0.180000px;}
.ws6e{word-spacing:0.216000px;}
.ws2f{word-spacing:0.288000px;}
.wsce{word-spacing:0.300000px;}
.wsd{word-spacing:0.336000px;}
.wsf{word-spacing:0.360000px;}
.wsa{word-spacing:0.420000px;}
.ws25{word-spacing:0.432000px;}
.wsf4{word-spacing:0.462000px;}
.wsda{word-spacing:0.480000px;}
.ws76{word-spacing:0.504000px;}
.wsf3{word-spacing:0.528000px;}
.ws14{word-spacing:0.576000px;}
.wse{word-spacing:0.756000px;}
.ws65{word-spacing:0.864000px;}
.ws66{word-spacing:0.936000px;}
.ws64{word-spacing:1.224000px;}
.wsb4{word-spacing:1.440000px;}
.wsb5{word-spacing:1.512000px;}
.ws9c{word-spacing:1.584000px;}
.ws31{word-spacing:1.728000px;}
.ws4a{word-spacing:2.016000px;}
.ws81{word-spacing:2.088000px;}
.ws82{word-spacing:2.448000px;}
.wsea{word-spacing:2.460000px;}
.ws41{word-spacing:2.664000px;}
.ws42{word-spacing:2.808000px;}
.wse4{word-spacing:2.820000px;}
.ws1d{word-spacing:2.952000px;}
.ws90{word-spacing:3.168000px;}
.ws67{word-spacing:3.240000px;}
.ws4f{word-spacing:3.384000px;}
.ws69{word-spacing:3.456000px;}
.wsd9{word-spacing:3.480000px;}
.ws87{word-spacing:3.528000px;}
.wsf2{word-spacing:3.564000px;}
.ws28{word-spacing:3.600000px;}
.wsc9{word-spacing:3.660000px;}
.ws21{word-spacing:3.672000px;}
.ws7d{word-spacing:3.888000px;}
.wsf1{word-spacing:3.960000px;}
.ws34{word-spacing:4.032000px;}
.ws19{word-spacing:4.176000px;}
.wscb{word-spacing:4.260000px;}
.ws40{word-spacing:4.392000px;}
.ws17{word-spacing:4.464000px;}
.ws88{word-spacing:4.536000px;}
.ws9f{word-spacing:4.824000px;}
.wsa1{word-spacing:4.896000px;}
.ws3e{word-spacing:5.040000px;}
.ws1a{word-spacing:5.184000px;}
.ws1b{word-spacing:5.328000px;}
.ws4b{word-spacing:5.616000px;}
.wsb2{word-spacing:5.688000px;}
.ws83{word-spacing:5.760000px;}
.ws1e{word-spacing:6.048000px;}
.ws56{word-spacing:6.264000px;}
.ws60{word-spacing:6.408000px;}
.ws12{word-spacing:6.552000px;}
.ws94{word-spacing:6.912000px;}
.ws93{word-spacing:6.984000px;}
.ws80{word-spacing:7.272000px;}
.ws95{word-spacing:7.488000px;}
.wsb3{word-spacing:7.632000px;}
.ws23{word-spacing:7.776000px;}
.ws68{word-spacing:8.064000px;}
.ws47{word-spacing:8.136000px;}
.wsa3{word-spacing:8.424000px;}
.wse7{word-spacing:8.460000px;}
.wsc6{word-spacing:8.784000px;}
.ws3f{word-spacing:8.928000px;}
.ws62{word-spacing:9.648000px;}
.ws85{word-spacing:9.792000px;}
.ws18{word-spacing:10.008000px;}
.ws63{word-spacing:10.152000px;}
.ws49{word-spacing:10.440000px;}
.ws91{word-spacing:10.584000px;}
.wsa9{word-spacing:11.232000px;}
.ws92{word-spacing:11.376000px;}
.ws27{word-spacing:11.664000px;}
.ws35{word-spacing:11.736000px;}
.ws26{word-spacing:12.384000px;}
.ws43{word-spacing:12.960000px;}
.ws36{word-spacing:13.248000px;}
.wsde{word-spacing:13.260000px;}
.ws22{word-spacing:13.464000px;}
.ws13{word-spacing:13.752000px;}
.ws38{word-spacing:14.184000px;}
.wsee{word-spacing:14.322000px;}
.ws37{word-spacing:14.616000px;}
.wsed{word-spacing:14.850000px;}
.ws58{word-spacing:14.976000px;}
.wsef{word-spacing:15.114000px;}
.ws3b{word-spacing:15.336000px;}
.ws6d{word-spacing:15.624000px;}
.ws59{word-spacing:15.984000px;}
.ws3c{word-spacing:16.128000px;}
.ws5f{word-spacing:17.352000px;}
.wsa6{word-spacing:18.576000px;}
.wsc1{word-spacing:19.224000px;}
.wse8{word-spacing:19.260000px;}
.wsa4{word-spacing:19.656000px;}
.wsc7{word-spacing:19.728000px;}
.ws54{word-spacing:20.952000px;}
.ws45{word-spacing:21.240000px;}
.ws6a{word-spacing:21.312000px;}
.wsa5{word-spacing:21.384000px;}
.ws79{word-spacing:22.104000px;}
.ws2b{word-spacing:22.176000px;}
.ws20{word-spacing:22.536000px;}
.ws57{word-spacing:22.824000px;}
.ws6b{word-spacing:24.048000px;}
.ws99{word-spacing:24.264000px;}
.ws24{word-spacing:24.408000px;}
.wsa2{word-spacing:24.552000px;}
.wsc4{word-spacing:24.984000px;}
.wsc5{word-spacing:25.776000px;}
.ws46{word-spacing:25.992000px;}
.ws44{word-spacing:26.136000px;}
.ws32{word-spacing:26.712000px;}
.ws1f{word-spacing:26.928000px;}
.ws77{word-spacing:29.376000px;}
.ws7e{word-spacing:29.664000px;}
.ws7f{word-spacing:30.024000px;}
.ws10{word-spacing:30.528000px;}
.ws2e{word-spacing:30.888000px;}
.wsc3{word-spacing:31.248000px;}
.ws5e{word-spacing:31.608000px;}
.wsc2{word-spacing:31.680000px;}
.ws96{word-spacing:32.184000px;}
.wsdd{word-spacing:32.460000px;}
.ws97{word-spacing:32.832000px;}
.ws9d{word-spacing:32.976000px;}
.ws39{word-spacing:33.624000px;}
.ws55{word-spacing:37.728000px;}
.ws29{word-spacing:46.152000px;}
.wsdc{word-spacing:56.460000px;}
.wse6{word-spacing:73.260000px;}
.wsd7{word-spacing:81.660000px;}
.wse9{word-spacing:90.060000px;}
.wsd6{word-spacing:91.260000px;}
.wsb0{word-spacing:148.020000px;}
.wsaf{word-spacing:152.699400px;}
.wsaa{word-spacing:156.118800px;}
.wsae{word-spacing:170.818800px;}
.wsac{word-spacing:213.074400px;}
.wsad{word-spacing:219.419400px;}
._2c{margin-left:-73.180800px;}
._2e{margin-left:-18.225600px;}
._23{margin-left:-9.936000px;}
._14{margin-left:-7.329600px;}
._11{margin-left:-6.285600px;}
._12{margin-left:-5.284800px;}
._e{margin-left:-3.600000px;}
._5{margin-left:-2.052000px;}
._0{margin-left:-1.020000px;}
._1{width:1.500000px;}
._8{width:2.781600px;}
._c{width:3.816000px;}
._d{width:5.042400px;}
._13{width:6.112800px;}
._9{width:7.608000px;}
._2a{width:8.886000px;}
._24{width:9.936000px;}
._b{width:11.294400px;}
._a{width:12.374400px;}
._6{width:13.980000px;}
._18{width:15.184800px;}
._1c{width:16.401600px;}
._25{width:17.676000px;}
._2d{width:18.789600px;}
._15{width:20.479200px;}
._16{width:21.576000px;}
._1a{width:25.015200px;}
._19{width:26.112000px;}
._7{width:28.536000px;}
._1b{width:31.051200px;}
._26{width:32.244000px;}
._10{width:44.760000px;}
._f{width:45.904800px;}
._2b{width:73.041600px;}
._2f{width:89.151600px;}
._29{width:90.366000px;}
._28{width:91.632000px;}
._27{width:212.367000px;}
._22{width:291.492000px;}
._1e{width:322.692000px;}
._1d{width:353.580000px;}
._21{width:579.600000px;}
._20{width:637.812000px;}
._3{width:765.780000px;}
._1f{width:955.980000px;}
._4{width:963.180000px;}
._17{width:987.180000px;}
._2{width:1005.420000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fs5{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y9{bottom:-0.000036px;}
.y0{bottom:0.000000px;}
.y132{bottom:0.300000px;}
.ya{bottom:3.299982px;}
.y7{bottom:5.100000px;}
.yb{bottom:5.999964px;}
.yd5{bottom:28.200000px;}
.y95{bottom:28.500000px;}
.ya4{bottom:51.600000px;}
.yae{bottom:51.900000px;}
.y3a{bottom:67.800000px;}
.y4{bottom:67.800002px;}
.y9c{bottom:74.700000px;}
.yf8{bottom:75.000000px;}
.y107{bottom:94.800000px;}
.yf5{bottom:96.900000px;}
.y92{bottom:97.272000px;}
.y38{bottom:99.624009px;}
.y108{bottom:99.900000px;}
.ye2{bottom:103.356600px;}
.y6a{bottom:105.012000px;}
.yf4{bottom:105.036000px;}
.y159{bottom:108.000000px;}
.yd7{bottom:108.600000px;}
.y91{bottom:120.672000px;}
.yd4{bottom:120.900000px;}
.ybc{bottom:122.400000px;}
.y37{bottom:122.718009px;}
.yd6{bottom:126.000000px;}
.yf7{bottom:127.200000px;}
.y158{bottom:127.500000px;}
.y69{bottom:128.106000px;}
.yf3{bottom:128.130000px;}
.yfb{bottom:132.300000px;}
.ybb{bottom:139.812000px;}
.y106{bottom:141.600000px;}
.y90{bottom:143.766000px;}
.y36{bottom:146.118009px;}
.y157{bottom:147.000000px;}
.y12e{bottom:147.600000px;}
.y68{bottom:151.506000px;}
.yf2{bottom:151.530000px;}
.y18c{bottom:152.100000px;}
.yfa{bottom:155.700000px;}
.yba{bottom:163.212000px;}
.y12d{bottom:165.006000px;}
.y156{bottom:166.200000px;}
.y8f{bottom:167.166000px;}
.yd3{bottom:167.400000px;}
.y35{bottom:169.518009px;}
.y18b{bottom:173.400000px;}
.y67{bottom:174.906000px;}
.yf1{bottom:174.930000px;}
.yf9{bottom:178.800000px;}
.y155{bottom:185.700000px;}
.yb9{bottom:186.306000px;}
.y12c{bottom:188.406000px;}
.ye3{bottom:189.726900px;}
.y8e{bottom:190.260000px;}
.y34{bottom:192.612009px;}
.y18a{bottom:194.400000px;}
.y66{bottom:198.000000px;}
.yf0{bottom:198.024000px;}
.y154{bottom:205.200000px;}
.yb8{bottom:209.706000px;}
.y12b{bottom:211.500000px;}
.y8d{bottom:213.660000px;}
.y189{bottom:214.197000px;}
.y33{bottom:216.012009px;}
.y65{bottom:218.100000px;}
.yf6{bottom:220.200000px;}
.yef{bottom:221.424000px;}
.y153{bottom:224.400000px;}
.y64{bottom:229.266000px;}
.yb7{bottom:232.800000px;}
.y12a{bottom:233.100000px;}
.y188{bottom:235.498500px;}
.y8c{bottom:237.060000px;}
.y32{bottom:239.412009px;}
.y152{bottom:243.000000px;}
.yee{bottom:244.824000px;}
.y129{bottom:246.000000px;}
.y63{bottom:252.666000px;}
.yb6{bottom:254.400000px;}
.y187{bottom:256.800000px;}
.y8b{bottom:260.154000px;}
.y151{bottom:260.400000px;}
.y31{bottom:262.506009px;}
.yd8{bottom:263.667450px;}
.yb4{bottom:266.700000px;}
.yed{bottom:267.918000px;}
.yb5{bottom:271.800000px;}
.y128{bottom:274.500000px;}
.y62{bottom:275.760000px;}
.yd9{bottom:277.707450px;}
.y150{bottom:282.000000px;}
.y186{bottom:282.600000px;}
.y8a{bottom:283.554000px;}
.y30{bottom:285.906009px;}
.yb3{bottom:289.800000px;}
.yec{bottom:291.318000px;}
.yda{bottom:291.747450px;}
.y127{bottom:292.500000px;}
.y14f{bottom:299.148000px;}
.y61{bottom:299.160000px;}
.ydb{bottom:305.787450px;}
.y89{bottom:306.954000px;}
.y2f{bottom:309.306009px;}
.yeb{bottom:314.718000px;}
.ydc{bottom:319.827450px;}
.y126{bottom:321.000000px;}
.y60{bottom:322.254000px;}
.y14e{bottom:322.548000px;}
.y185{bottom:325.798500px;}
.y88{bottom:330.048000px;}
.y2e{bottom:332.400009px;}
.ydd{bottom:333.867450px;}
.yea{bottom:337.812000px;}
.y125{bottom:339.300000px;}
.y5f{bottom:345.654000px;}
.y14d{bottom:345.948000px;}
.y184{bottom:347.100000px;}
.yde{bottom:347.907450px;}
.y2d{bottom:352.500000px;}
.y87{bottom:353.448000px;}
.ye9{bottom:361.212000px;}
.ydf{bottom:361.947450px;}
.y2c{bottom:363.599991px;}
.y183{bottom:367.200000px;}
.y124{bottom:369.000000px;}
.y14c{bottom:369.042000px;}
.y5e{bottom:369.054000px;}
.ye0{bottom:375.987450px;}
.y86{bottom:376.848000px;}
.y2b{bottom:383.400009px;}
.y182{bottom:383.700000px;}
.ye8{bottom:384.306000px;}
.y123{bottom:388.200000px;}
.ye1{bottom:390.027450px;}
.y5d{bottom:392.148000px;}
.y14b{bottom:392.442000px;}
.y2a{bottom:394.535991px;}
.y85{bottom:399.942000px;}
.y181{bottom:402.900000px;}
.ye7{bottom:407.706000px;}
.yd2{bottom:413.700000px;}
.y5c{bottom:415.548000px;}
.y14a{bottom:415.842000px;}
.y122{bottom:417.312000px;}
.y29{bottom:417.935991px;}
.y180{bottom:421.500000px;}
.y84{bottom:423.342000px;}
.ye6{bottom:431.106000px;}
.yd1{bottom:431.166000px;}
.y17f{bottom:438.000000px;}
.y149{bottom:438.936000px;}
.y5b{bottom:438.948000px;}
.y121{bottom:440.406000px;}
.y28{bottom:441.335991px;}
.y83{bottom:446.742000px;}
.ye5{bottom:454.200000px;}
.yd0{bottom:454.260000px;}
.y17e{bottom:457.200000px;}
.y5a{bottom:462.042000px;}
.y148{bottom:462.336000px;}
.y120{bottom:463.806000px;}
.y27{bottom:464.429991px;}
.y82{bottom:469.836000px;}
.y17d{bottom:476.700000px;}
.ye4{bottom:477.600000px;}
.ycf{bottom:477.660000px;}
.y147{bottom:485.430000px;}
.y59{bottom:485.442000px;}
.y11f{bottom:487.206000px;}
.y26{bottom:487.829991px;}
.y81{bottom:493.236000px;}
.y17c{bottom:496.200000px;}
.yce{bottom:501.060000px;}
.y146{bottom:508.830000px;}
.y58{bottom:508.842000px;}
.y11e{bottom:510.300000px;}
.y25{bottom:510.923991px;}
.y17b{bottom:515.400000px;}
.y80{bottom:516.330000px;}
.ycd{bottom:524.154000px;}
.y57{bottom:531.936000px;}
.y145{bottom:532.230000px;}
.y11d{bottom:533.700000px;}
.y24{bottom:534.323991px;}
.y17a{bottom:534.900000px;}
.y105{bottom:537.000000px;}
.y7f{bottom:539.730000px;}
.ycc{bottom:547.554000px;}
.y179{bottom:554.400000px;}
.y104{bottom:554.406000px;}
.y144{bottom:555.324000px;}
.y56{bottom:555.336000px;}
.y11c{bottom:557.100000px;}
.y23{bottom:557.723991px;}
.y7e{bottom:563.130000px;}
.ycb{bottom:570.954000px;}
.y178{bottom:573.900000px;}
.yb2{bottom:574.500000px;}
.y103{bottom:577.806000px;}
.y11b{bottom:578.400000px;}
.y55{bottom:578.430000px;}
.y143{bottom:578.724000px;}
.y22{bottom:580.817991px;}
.y7d{bottom:586.224000px;}
.yad{bottom:587.400000px;}
.y119{bottom:590.700000px;}
.yb0{bottom:592.500000px;}
.y177{bottom:593.100000px;}
.yca{bottom:594.048000px;}
.y11a{bottom:595.800000px;}
.y102{bottom:600.900000px;}
.y54{bottom:601.830000px;}
.y142{bottom:602.124000px;}
.yb1{bottom:604.200000px;}
.y21{bottom:604.217991px;}
.y7c{bottom:609.624000px;}
.y176{bottom:612.600000px;}
.y118{bottom:614.100000px;}
.yaf{bottom:615.900000px;}
.yc9{bottom:617.448000px;}
.y101{bottom:624.300000px;}
.y141{bottom:625.218000px;}
.y53{bottom:625.230000px;}
.y20{bottom:627.617991px;}
.y175{bottom:632.100000px;}
.y7b{bottom:633.024000px;}
.yc8{bottom:640.848000px;}
.y130{bottom:644.547750px;}
.y100{bottom:645.900000px;}
.y52{bottom:648.324000px;}
.y140{bottom:648.618000px;}
.y1f{bottom:650.711991px;}
.y174{bottom:651.300000px;}
.y12f{bottom:652.132650px;}
.y7a{bottom:656.118000px;}
.yac{bottom:657.300000px;}
.yfe{bottom:657.900000px;}
.yff{bottom:663.000000px;}
.yc7{bottom:663.942000px;}
.y173{bottom:670.800000px;}
.y51{bottom:671.724000px;}
.y13f{bottom:672.018000px;}
.y1e{bottom:674.111991px;}
.y79{bottom:679.518000px;}
.yfd{bottom:681.300000px;}
.yab{bottom:685.800000px;}
.yc6{bottom:687.342000px;}
.y172{bottom:690.300000px;}
.y13e{bottom:695.112000px;}
.y50{bottom:695.124000px;}
.y1d{bottom:697.511991px;}
.y117{bottom:701.100000px;}
.y78{bottom:702.918000px;}
.y171{bottom:709.500000px;}
.yc5{bottom:710.436000px;}
.y4f{bottom:718.218000px;}
.y116{bottom:718.224000px;}
.y13d{bottom:718.512000px;}
.y1c{bottom:720.605991px;}
.y77{bottom:726.012000px;}
.y170{bottom:729.000000px;}
.yaa{bottom:732.294000px;}
.yc4{bottom:733.836000px;}
.y13c{bottom:741.606000px;}
.y4e{bottom:741.618000px;}
.y115{bottom:741.624000px;}
.y1b{bottom:744.005991px;}
.y16f{bottom:748.500000px;}
.y76{bottom:749.412000px;}
.ya9{bottom:755.694000px;}
.yc3{bottom:757.236000px;}
.y13b{bottom:765.006000px;}
.y4d{bottom:765.018000px;}
.y114{bottom:765.024000px;}
.y1a{bottom:767.099991px;}
.ya6{bottom:767.394000px;}
.y16e{bottom:768.000000px;}
.y75{bottom:772.506000px;}
.ya8{bottom:778.788000px;}
.yc2{bottom:780.330000px;}
.y19{bottom:787.199982px;}
.y16d{bottom:787.200000px;}
.y4c{bottom:788.112000px;}
.y113{bottom:788.118000px;}
.y13a{bottom:788.406000px;}
.y74{bottom:795.906000px;}
.y18{bottom:797.399964px;}
.ya7{bottom:802.188000px;}
.yc1{bottom:803.730000px;}
.y16c{bottom:806.700000px;}
.y139{bottom:811.500000px;}
.y4b{bottom:811.512000px;}
.y112{bottom:811.518000px;}
.y17{bottom:816.899964px;}
.y73{bottom:819.306000px;}
.ya3{bottom:820.500000px;}
.y16b{bottom:826.200000px;}
.yc0{bottom:827.130000px;}
.y16{bottom:833.699982px;}
.y138{bottom:834.900000px;}
.y4a{bottom:834.912000px;}
.y111{bottom:834.918000px;}
.ya2{bottom:837.006000px;}
.y72{bottom:842.400000px;}
.y16a{bottom:845.400000px;}
.y15{bottom:847.199982px;}
.ya5{bottom:848.700000px;}
.ybf{bottom:850.224000px;}
.y137{bottom:856.500000px;}
.y49{bottom:858.006000px;}
.y110{bottom:858.012000px;}
.ya1{bottom:860.406000px;}
.y169{bottom:864.900000px;}
.y71{bottom:865.800000px;}
.y14{bottom:866.399964px;}
.y134{bottom:868.500000px;}
.y136{bottom:873.600000px;}
.ybe{bottom:873.624000px;}
.y48{bottom:881.406000px;}
.y10f{bottom:881.412000px;}
.y168{bottom:884.400000px;}
.y13{bottom:885.600036px;}
.y70{bottom:889.200000px;}
.y9b{bottom:890.400000px;}
.y9f{bottom:895.506000px;}
.y135{bottom:897.000000px;}
.ybd{bottom:897.024000px;}
.yfc{bottom:902.700000px;}
.y167{bottom:903.600000px;}
.y47{bottom:904.500000px;}
.y10e{bottom:904.506000px;}
.y12{bottom:906.006000px;}
.y6f{bottom:909.000000px;}
.y9e{bottom:918.600000px;}
.y6e{bottom:920.118000px;}
.y166{bottom:923.100000px;}
.y46{bottom:927.900000px;}
.y10d{bottom:927.906000px;}
.y11{bottom:929.406000px;}
.ya0{bottom:930.300000px;}
.y9a{bottom:930.306000px;}
.y9d{bottom:942.000000px;}
.y165{bottom:942.600000px;}
.y133{bottom:943.500000px;}
.y6d{bottom:943.518000px;}
.y45{bottom:951.300000px;}
.y10c{bottom:951.306000px;}
.y10{bottom:952.500000px;}
.y131{bottom:961.800000px;}
.y164{bottom:962.100000px;}
.y6c{bottom:966.612000px;}
.y44{bottom:971.100000px;}
.y10b{bottom:974.400000px;}
.yf{bottom:976.493958px;}
.y163{bottom:981.300000px;}
.y43{bottom:982.200000px;}
.y98{bottom:983.400000px;}
.y99{bottom:988.500000px;}
.y6b{bottom:990.012000px;}
.y10a{bottom:997.800000px;}
.y162{bottom:1000.800000px;}
.y42{bottom:1002.300000px;}
.ye{bottom:1003.794018px;}
.y41{bottom:1013.412000px;}
.y109{bottom:1019.400000px;}
.y161{bottom:1020.300000px;}
.y96{bottom:1029.900000px;}
.yd{bottom:1030.800018px;}
.y97{bottom:1035.000000px;}
.y40{bottom:1036.506000px;}
.y160{bottom:1039.500000px;}
.yc{bottom:1058.100036px;}
.y15f{bottom:1059.000000px;}
.y3f{bottom:1059.906000px;}
.y94{bottom:1077.300000px;}
.y15e{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3e{bottom:1083.306000px;}
.y93{bottom:1094.106000px;}
.y15d{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y3d{bottom:1106.400000px;}
.y15c{bottom:1117.200000px;}
.y5{bottom:1129.199982px;}
.y3c{bottom:1129.800000px;}
.y15b{bottom:1136.700000px;}
.y3{bottom:1144.800018px;}
.y3b{bottom:1153.200000px;}
.y15a{bottom:1156.200000px;}
.y2{bottom:1164.300018px;}
.y39{bottom:1183.500000px;}
.y1{bottom:1183.800018px;}
.h1d{height:10.092000px;}
.he{height:20.184000px;}
.hf{height:20.880000px;}
.h19{height:23.100000px;}
.h23{height:23.400000px;}
.h5{height:23.401500px;}
.h9{height:23.998500px;}
.h4{height:30.276000px;}
.h1c{height:36.914062px;}
.h1b{height:38.759766px;}
.h17{height:40.368000px;}
.h12{height:46.500000px;}
.h3{height:46.680000px;}
.h13{height:46.800000px;}
.h7{height:47.400000px;}
.hd{height:50.460000px;}
.h2a{height:51.348000px;}
.h2{height:52.200000px;}
.h29{height:55.506000px;}
.h10{height:56.016000px;}
.h28{height:57.420000px;}
.hc{height:60.552000px;}
.h27{height:62.578125px;}
.h8{height:62.640000px;}
.h24{height:68.414166px;}
.h16{height:69.900000px;}
.ha{height:70.644000px;}
.h6{height:70.664062px;}
.h25{height:70.706006px;}
.hb{height:73.080000px;}
.h11{height:75.093750px;}
.h22{height:83.700000px;}
.h15{height:92.998500px;}
.h1f{height:93.000000px;}
.h14{height:107.352000px;}
.h26{height:209.401500px;}
.h20{height:218.100000px;}
.h1a{height:243.000000px;}
.h1e{height:256.500000px;}
.h18{height:281.400000px;}
.h21{height:392.100000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.w7{width:129.600000px;}
.w5{width:137.700000px;}
.wf{width:180.600000px;}
.w8{width:195.600000px;}
.w13{width:216.000000px;}
.w11{width:255.301500px;}
.w6{width:260.098500px;}
.w10{width:265.798500px;}
.wb{width:287.100000px;}
.wc{width:354.598500px;}
.wd{width:354.600000px;}
.w2{width:478.200000px;}
.w12{width:493.200000px;}
.wa{width:672.300000px;}
.w9{width:709.200000px;}
.we{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.099997px;}
.x3a{left:11.700000px;}
.x21{left:13.200000px;}
.x2d{left:14.400000px;}
.x60{left:17.400000px;}
.x1b{left:19.500000px;}
.x5c{left:21.600000px;}
.x43{left:23.700000px;}
.x26{left:25.500000px;}
.x4b{left:29.100000px;}
.x47{left:31.949850px;}
.x1c{left:33.900000px;}
.x69{left:37.200000px;}
.x51{left:38.700000px;}
.x38{left:40.800000px;}
.x1e{left:43.200000px;}
.x24{left:47.700000px;}
.x28{left:49.500000px;}
.x22{left:51.900000px;}
.x59{left:65.400000px;}
.x5e{left:72.000000px;}
.x3{left:79.800000px;}
.x63{left:82.800000px;}
.x23{left:84.900000px;}
.x55{left:86.700000px;}
.x2f{left:88.800000px;}
.x1f{left:90.000000px;}
.x1{left:91.500000px;}
.x5f{left:94.200000px;}
.x14{left:95.700000px;}
.x9{left:97.505997px;}
.x46{left:109.800000px;}
.x62{left:111.000000px;}
.x29{left:113.694000px;}
.x16{left:118.500000px;}
.x8{left:123.000018px;}
.x6{left:125.099991px;}
.x31{left:127.488000px;}
.x18{left:129.300000px;}
.x25{left:130.500000px;}
.x19{left:131.694000px;}
.x64{left:132.735150px;}
.x41{left:134.088000px;}
.x2c{left:136.494000px;}
.x37{left:137.658000px;}
.x3b{left:140.994000px;}
.x13{left:144.600000px;}
.x45{left:149.823000px;}
.x61{left:154.200000px;}
.x44{left:156.667500px;}
.x57{left:171.618000px;}
.xe{left:173.100003px;}
.x5b{left:177.906000px;}
.x3f{left:186.300000px;}
.x67{left:192.300000px;}
.x58{left:197.718000px;}
.x52{left:202.500000px;}
.x65{left:222.773250px;}
.x4a{left:234.600000px;}
.xf{left:237.599991px;}
.xb{left:257.752959px;}
.xd{left:264.870009px;}
.x5d{left:272.100000px;}
.xc{left:273.343959px;}
.x1a{left:280.500000px;}
.x50{left:296.700000px;}
.x4f{left:299.100000px;}
.x3c{left:314.100000px;}
.x56{left:315.900000px;}
.x68{left:330.900000px;}
.xa{left:336.905997px;}
.x48{left:374.849250px;}
.x11{left:377.099991px;}
.x6a{left:388.200000px;}
.x1d{left:418.200000px;}
.x2e{left:435.900000px;}
.x34{left:437.088000px;}
.x32{left:442.776000px;}
.x2{left:446.400009px;}
.x12{left:449.400009px;}
.x33{left:458.382000px;}
.x10{left:460.500000px;}
.x53{left:462.600000px;}
.x35{left:467.382000px;}
.x15{left:473.100000px;}
.x2a{left:485.088000px;}
.x27{left:507.000000px;}
.x49{left:513.300000px;}
.x4d{left:537.900000px;}
.x4c{left:541.200000px;}
.x5{left:558.000000px;}
.x66{left:584.700000px;}
.x40{left:614.700000px;}
.x4e{left:620.400000px;}
.x54{left:667.500000px;}
.x20{left:678.300000px;}
.x7{left:685.800000px;}
.x42{left:690.900000px;}
.x30{left:694.200000px;}
.x3e{left:701.100000px;}
.x3d{left:710.694000px;}
.x2b{left:711.900000px;}
.x36{left:729.570000px;}
.x39{left:732.000000px;}
.x5a{left:735.900000px;}
.x17{left:746.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:24.568533pt;}
.v3{vertical-align:26.359467pt;}
.v2{vertical-align:41.600000pt;}
.ls3d{letter-spacing:-4.352000pt;}
.ls1d{letter-spacing:-3.200000pt;}
.ls5d{letter-spacing:-2.506667pt;}
.ls3b{letter-spacing:-2.304000pt;}
.ls3c{letter-spacing:-1.856000pt;}
.ls3a{letter-spacing:-1.600000pt;}
.ls5c{letter-spacing:-1.013333pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls47{letter-spacing:-0.480000pt;}
.ls64{letter-spacing:-0.469333pt;}
.ls25{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.325333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls66{letter-spacing:-0.234667pt;}
.ls48{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.117333pt;}
.ls5e{letter-spacing:-0.106667pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls65{letter-spacing:-0.058667pt;}
.ls5a{letter-spacing:-0.053333pt;}
.ls46{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls51{letter-spacing:0.266667pt;}
.ls61{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.325333pt;}
.ls62{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405328pt;}
.ls30{letter-spacing:0.409600pt;}
.ls60{letter-spacing:0.410667pt;}
.ls20{letter-spacing:0.422400pt;}
.ls50{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls4f{letter-spacing:0.480000pt;}
.ls59{letter-spacing:0.485333pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.633600pt;}
.ls56{letter-spacing:0.698667pt;}
.ls52{letter-spacing:0.800000pt;}
.ls4c{letter-spacing:0.896000pt;}
.ls32{letter-spacing:1.030400pt;}
.ls53{letter-spacing:1.061333pt;}
.ls4e{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.760000pt;}
.ls1f{letter-spacing:2.112000pt;}
.ls5b{letter-spacing:2.826667pt;}
.ls8{letter-spacing:3.200000pt;}
.ls7{letter-spacing:4.096000pt;}
.ls36{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:5.312000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls57{letter-spacing:7.093333pt;}
.ls4b{letter-spacing:7.424000pt;}
.ls35{letter-spacing:8.422400pt;}
.ls38{letter-spacing:9.600000pt;}
.ls5{letter-spacing:10.496000pt;}
.ls55{letter-spacing:11.360000pt;}
.ls4d{letter-spacing:20.373333pt;}
.ls9{letter-spacing:21.312000pt;}
.ls4a{letter-spacing:25.920000pt;}
.ls34{letter-spacing:26.624000pt;}
.ls39{letter-spacing:28.800000pt;}
.ls24{letter-spacing:29.120000pt;}
.ls40{letter-spacing:35.520000pt;}
.ls54{letter-spacing:49.749333pt;}
.ls3f{letter-spacing:55.808000pt;}
.ls2d{letter-spacing:243.200000pt;}
.ls2b{letter-spacing:286.912000pt;}
.ls2e{letter-spacing:292.224000pt;}
.ls29{letter-spacing:302.912000pt;}
.ls2f{letter-spacing:309.312000pt;}
.ls31{letter-spacing:347.712000pt;}
.ls2c{letter-spacing:364.800000pt;}
.ls2a{letter-spacing:482.090667pt;}
.ls3{letter-spacing:571.360000pt;}
.ls45{letter-spacing:576.000000pt;}
.ls41{letter-spacing:579.200000pt;}
.ls44{letter-spacing:604.800000pt;}
.ls42{letter-spacing:661.312000pt;}
.ls43{letter-spacing:729.600000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:804.960000pt;}
.ls49{letter-spacing:1199.274667pt;}
.ls0{letter-spacing:1270.026667pt;}
.ws8c{word-spacing:-17.472000pt;}
.ws53{word-spacing:-17.408000pt;}
.ws72{word-spacing:-17.344000pt;}
.ws8f{word-spacing:-17.280000pt;}
.ws52{word-spacing:-17.216000pt;}
.ws73{word-spacing:-17.152000pt;}
.ws51{word-spacing:-17.088000pt;}
.ws2c{word-spacing:-17.024000pt;}
.ws6f{word-spacing:-16.832000pt;}
.ws5{word-spacing:-16.768000pt;}
.ws2d{word-spacing:-16.704000pt;}
.ws50{word-spacing:-16.640000pt;}
.ws71{word-spacing:-16.576000pt;}
.ws70{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws8d{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.wsb6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.680000pt;}
.wsd5{word-spacing:-15.429333pt;}
.wsd4{word-spacing:-15.194667pt;}
.wsbf{word-spacing:-15.040000pt;}
.wsbb{word-spacing:-14.720000pt;}
.wsbc{word-spacing:-14.666667pt;}
.wsba{word-spacing:-14.560000pt;}
.wsd3{word-spacing:-14.549333pt;}
.wsbd{word-spacing:-14.506667pt;}
.wsb9{word-spacing:-14.453333pt;}
.wsbe{word-spacing:-14.346667pt;}
.ws8e{word-spacing:-14.293333pt;}
.wsd0{word-spacing:-14.240000pt;}
.wscf{word-spacing:-14.186667pt;}
.wsd2{word-spacing:-14.133333pt;}
.wsc0{word-spacing:-13.973333pt;}
.ws4{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wsb8{word-spacing:-13.333333pt;}
.wsd1{word-spacing:-13.226667pt;}
.wsb7{word-spacing:-13.013333pt;}
.wsb1{word-spacing:-11.626667pt;}
.wsab{word-spacing:-10.800000pt;}
.ws3{word-spacing:-9.968000pt;}
.wsc8{word-spacing:-6.400000pt;}
.ws2a{word-spacing:-5.312000pt;}
.ws84{word-spacing:-4.544000pt;}
.ws7a{word-spacing:-4.480000pt;}
.ws1c{word-spacing:-4.224000pt;}
.ws9e{word-spacing:-3.904000pt;}
.wsa0{word-spacing:-3.776000pt;}
.ws7c{word-spacing:-3.712000pt;}
.ws4e{word-spacing:-3.392000pt;}
.ws3d{word-spacing:-3.136000pt;}
.ws7b{word-spacing:-3.072000pt;}
.wsdf{word-spacing:-2.986667pt;}
.wsdb{word-spacing:-2.826667pt;}
.ws33{word-spacing:-2.816000pt;}
.ws86{word-spacing:-2.752000pt;}
.wse1{word-spacing:-2.720000pt;}
.ws3a{word-spacing:-2.688000pt;}
.wse5{word-spacing:-2.506667pt;}
.wse3{word-spacing:-2.240000pt;}
.wse0{word-spacing:-2.133333pt;}
.ws78{word-spacing:-2.112000pt;}
.wse2{word-spacing:-2.080000pt;}
.ws61{word-spacing:-1.920000pt;}
.ws5b{word-spacing:-1.664000pt;}
.ws48{word-spacing:-1.408000pt;}
.ws9b{word-spacing:-1.344000pt;}
.ws98{word-spacing:-1.280000pt;}
.wscc{word-spacing:-1.173333pt;}
.ws8a{word-spacing:-1.056000pt;}
.ws6c{word-spacing:-1.024000pt;}
.wscd{word-spacing:-1.013333pt;}
.ws9a{word-spacing:-0.896000pt;}
.wsec{word-spacing:-0.853333pt;}
.ws5d{word-spacing:-0.704000pt;}
.wseb{word-spacing:-0.586667pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws75{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.448000pt;}
.wsa7{word-spacing:-0.426667pt;}
.ws30{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws4c{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.192000pt;}
.ws89{word-spacing:-0.128000pt;}
.wsa8{word-spacing:-0.106667pt;}
.ws5a{word-spacing:-0.064000pt;}
.ws8b{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsd8{word-spacing:0.053333pt;}
.wsf0{word-spacing:0.058667pt;}
.ws11{word-spacing:0.064000pt;}
.ws74{word-spacing:0.128000pt;}
.wsca{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.256000pt;}
.wsce{word-spacing:0.266667pt;}
.wsd{word-spacing:0.298667pt;}
.wsf{word-spacing:0.320000pt;}
.wsa{word-spacing:0.373333pt;}
.ws25{word-spacing:0.384000pt;}
.wsf4{word-spacing:0.410667pt;}
.wsda{word-spacing:0.426667pt;}
.ws76{word-spacing:0.448000pt;}
.wsf3{word-spacing:0.469333pt;}
.ws14{word-spacing:0.512000pt;}
.wse{word-spacing:0.672000pt;}
.ws65{word-spacing:0.768000pt;}
.ws66{word-spacing:0.832000pt;}
.ws64{word-spacing:1.088000pt;}
.wsb4{word-spacing:1.280000pt;}
.wsb5{word-spacing:1.344000pt;}
.ws9c{word-spacing:1.408000pt;}
.ws31{word-spacing:1.536000pt;}
.ws4a{word-spacing:1.792000pt;}
.ws81{word-spacing:1.856000pt;}
.ws82{word-spacing:2.176000pt;}
.wsea{word-spacing:2.186667pt;}
.ws41{word-spacing:2.368000pt;}
.ws42{word-spacing:2.496000pt;}
.wse4{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.624000pt;}
.ws90{word-spacing:2.816000pt;}
.ws67{word-spacing:2.880000pt;}
.ws4f{word-spacing:3.008000pt;}
.ws69{word-spacing:3.072000pt;}
.wsd9{word-spacing:3.093333pt;}
.ws87{word-spacing:3.136000pt;}
.wsf2{word-spacing:3.168000pt;}
.ws28{word-spacing:3.200000pt;}
.wsc9{word-spacing:3.253333pt;}
.ws21{word-spacing:3.264000pt;}
.ws7d{word-spacing:3.456000pt;}
.wsf1{word-spacing:3.520000pt;}
.ws34{word-spacing:3.584000pt;}
.ws19{word-spacing:3.712000pt;}
.wscb{word-spacing:3.786667pt;}
.ws40{word-spacing:3.904000pt;}
.ws17{word-spacing:3.968000pt;}
.ws88{word-spacing:4.032000pt;}
.ws9f{word-spacing:4.288000pt;}
.wsa1{word-spacing:4.352000pt;}
.ws3e{word-spacing:4.480000pt;}
.ws1a{word-spacing:4.608000pt;}
.ws1b{word-spacing:4.736000pt;}
.ws4b{word-spacing:4.992000pt;}
.wsb2{word-spacing:5.056000pt;}
.ws83{word-spacing:5.120000pt;}
.ws1e{word-spacing:5.376000pt;}
.ws56{word-spacing:5.568000pt;}
.ws60{word-spacing:5.696000pt;}
.ws12{word-spacing:5.824000pt;}
.ws94{word-spacing:6.144000pt;}
.ws93{word-spacing:6.208000pt;}
.ws80{word-spacing:6.464000pt;}
.ws95{word-spacing:6.656000pt;}
.wsb3{word-spacing:6.784000pt;}
.ws23{word-spacing:6.912000pt;}
.ws68{word-spacing:7.168000pt;}
.ws47{word-spacing:7.232000pt;}
.wsa3{word-spacing:7.488000pt;}
.wse7{word-spacing:7.520000pt;}
.wsc6{word-spacing:7.808000pt;}
.ws3f{word-spacing:7.936000pt;}
.ws62{word-spacing:8.576000pt;}
.ws85{word-spacing:8.704000pt;}
.ws18{word-spacing:8.896000pt;}
.ws63{word-spacing:9.024000pt;}
.ws49{word-spacing:9.280000pt;}
.ws91{word-spacing:9.408000pt;}
.wsa9{word-spacing:9.984000pt;}
.ws92{word-spacing:10.112000pt;}
.ws27{word-spacing:10.368000pt;}
.ws35{word-spacing:10.432000pt;}
.ws26{word-spacing:11.008000pt;}
.ws43{word-spacing:11.520000pt;}
.ws36{word-spacing:11.776000pt;}
.wsde{word-spacing:11.786667pt;}
.ws22{word-spacing:11.968000pt;}
.ws13{word-spacing:12.224000pt;}
.ws38{word-spacing:12.608000pt;}
.wsee{word-spacing:12.730667pt;}
.ws37{word-spacing:12.992000pt;}
.wsed{word-spacing:13.200000pt;}
.ws58{word-spacing:13.312000pt;}
.wsef{word-spacing:13.434667pt;}
.ws3b{word-spacing:13.632000pt;}
.ws6d{word-spacing:13.888000pt;}
.ws59{word-spacing:14.208000pt;}
.ws3c{word-spacing:14.336000pt;}
.ws5f{word-spacing:15.424000pt;}
.wsa6{word-spacing:16.512000pt;}
.wsc1{word-spacing:17.088000pt;}
.wse8{word-spacing:17.120000pt;}
.wsa4{word-spacing:17.472000pt;}
.wsc7{word-spacing:17.536000pt;}
.ws54{word-spacing:18.624000pt;}
.ws45{word-spacing:18.880000pt;}
.ws6a{word-spacing:18.944000pt;}
.wsa5{word-spacing:19.008000pt;}
.ws79{word-spacing:19.648000pt;}
.ws2b{word-spacing:19.712000pt;}
.ws20{word-spacing:20.032000pt;}
.ws57{word-spacing:20.288000pt;}
.ws6b{word-spacing:21.376000pt;}
.ws99{word-spacing:21.568000pt;}
.ws24{word-spacing:21.696000pt;}
.wsa2{word-spacing:21.824000pt;}
.wsc4{word-spacing:22.208000pt;}
.wsc5{word-spacing:22.912000pt;}
.ws46{word-spacing:23.104000pt;}
.ws44{word-spacing:23.232000pt;}
.ws32{word-spacing:23.744000pt;}
.ws1f{word-spacing:23.936000pt;}
.ws77{word-spacing:26.112000pt;}
.ws7e{word-spacing:26.368000pt;}
.ws7f{word-spacing:26.688000pt;}
.ws10{word-spacing:27.136000pt;}
.ws2e{word-spacing:27.456000pt;}
.wsc3{word-spacing:27.776000pt;}
.ws5e{word-spacing:28.096000pt;}
.wsc2{word-spacing:28.160000pt;}
.ws96{word-spacing:28.608000pt;}
.wsdd{word-spacing:28.853333pt;}
.ws97{word-spacing:29.184000pt;}
.ws9d{word-spacing:29.312000pt;}
.ws39{word-spacing:29.888000pt;}
.ws55{word-spacing:33.536000pt;}
.ws29{word-spacing:41.024000pt;}
.wsdc{word-spacing:50.186667pt;}
.wse6{word-spacing:65.120000pt;}
.wsd7{word-spacing:72.586667pt;}
.wse9{word-spacing:80.053333pt;}
.wsd6{word-spacing:81.120000pt;}
.wsb0{word-spacing:131.573333pt;}
.wsaf{word-spacing:135.732800pt;}
.wsaa{word-spacing:138.772267pt;}
.wsae{word-spacing:151.838933pt;}
.wsac{word-spacing:189.399467pt;}
.wsad{word-spacing:195.039467pt;}
._2c{margin-left:-65.049600pt;}
._2e{margin-left:-16.200533pt;}
._23{margin-left:-8.832000pt;}
._14{margin-left:-6.515200pt;}
._11{margin-left:-5.587200pt;}
._12{margin-left:-4.697600pt;}
._e{margin-left:-3.200000pt;}
._5{margin-left:-1.824000pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.333333pt;}
._8{width:2.472533pt;}
._c{width:3.392000pt;}
._d{width:4.482133pt;}
._13{width:5.433600pt;}
._9{width:6.762667pt;}
._2a{width:7.898667pt;}
._24{width:8.832000pt;}
._b{width:10.039467pt;}
._a{width:10.999467pt;}
._6{width:12.426667pt;}
._18{width:13.497600pt;}
._1c{width:14.579200pt;}
._25{width:15.712000pt;}
._2d{width:16.701867pt;}
._15{width:18.203733pt;}
._16{width:19.178667pt;}
._1a{width:22.235733pt;}
._19{width:23.210667pt;}
._7{width:25.365333pt;}
._1b{width:27.601067pt;}
._26{width:28.661333pt;}
._10{width:39.786667pt;}
._f{width:40.804267pt;}
._2b{width:64.925867pt;}
._2f{width:79.245867pt;}
._29{width:80.325333pt;}
._28{width:81.450667pt;}
._27{width:188.770667pt;}
._22{width:259.104000pt;}
._1e{width:286.837333pt;}
._1d{width:314.293333pt;}
._21{width:515.200000pt;}
._20{width:566.944000pt;}
._3{width:680.693333pt;}
._1f{width:849.760000pt;}
._4{width:856.160000pt;}
._17{width:877.493333pt;}
._2{width:893.706667pt;}
.fs8{font-size:10.666667pt;}
.fs5{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y9{bottom:-0.000032pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:0.266667pt;}
.ya{bottom:2.933317pt;}
.y7{bottom:4.533333pt;}
.yb{bottom:5.333301pt;}
.yd5{bottom:25.066667pt;}
.y95{bottom:25.333333pt;}
.ya4{bottom:45.866667pt;}
.yae{bottom:46.133333pt;}
.y3a{bottom:60.266667pt;}
.y4{bottom:60.266668pt;}
.y9c{bottom:66.400000pt;}
.yf8{bottom:66.666667pt;}
.y107{bottom:84.266667pt;}
.yf5{bottom:86.133333pt;}
.y92{bottom:86.464000pt;}
.y38{bottom:88.554675pt;}
.y108{bottom:88.800000pt;}
.ye2{bottom:91.872533pt;}
.y6a{bottom:93.344000pt;}
.yf4{bottom:93.365333pt;}
.y159{bottom:96.000000pt;}
.yd7{bottom:96.533333pt;}
.y91{bottom:107.264000pt;}
.yd4{bottom:107.466667pt;}
.ybc{bottom:108.800000pt;}
.y37{bottom:109.082675pt;}
.yd6{bottom:112.000000pt;}
.yf7{bottom:113.066667pt;}
.y158{bottom:113.333333pt;}
.y69{bottom:113.872000pt;}
.yf3{bottom:113.893333pt;}
.yfb{bottom:117.600000pt;}
.ybb{bottom:124.277333pt;}
.y106{bottom:125.866667pt;}
.y90{bottom:127.792000pt;}
.y36{bottom:129.882675pt;}
.y157{bottom:130.666667pt;}
.y12e{bottom:131.200000pt;}
.y68{bottom:134.672000pt;}
.yf2{bottom:134.693333pt;}
.y18c{bottom:135.200000pt;}
.yfa{bottom:138.400000pt;}
.yba{bottom:145.077333pt;}
.y12d{bottom:146.672000pt;}
.y156{bottom:147.733333pt;}
.y8f{bottom:148.592000pt;}
.yd3{bottom:148.800000pt;}
.y35{bottom:150.682675pt;}
.y18b{bottom:154.133333pt;}
.y67{bottom:155.472000pt;}
.yf1{bottom:155.493333pt;}
.yf9{bottom:158.933333pt;}
.y155{bottom:165.066667pt;}
.yb9{bottom:165.605333pt;}
.y12c{bottom:167.472000pt;}
.ye3{bottom:168.646133pt;}
.y8e{bottom:169.120000pt;}
.y34{bottom:171.210675pt;}
.y18a{bottom:172.800000pt;}
.y66{bottom:176.000000pt;}
.yf0{bottom:176.021333pt;}
.y154{bottom:182.400000pt;}
.yb8{bottom:186.405333pt;}
.y12b{bottom:188.000000pt;}
.y8d{bottom:189.920000pt;}
.y189{bottom:190.397333pt;}
.y33{bottom:192.010675pt;}
.y65{bottom:193.866667pt;}
.yf6{bottom:195.733333pt;}
.yef{bottom:196.821333pt;}
.y153{bottom:199.466667pt;}
.y64{bottom:203.792000pt;}
.yb7{bottom:206.933333pt;}
.y12a{bottom:207.200000pt;}
.y188{bottom:209.332000pt;}
.y8c{bottom:210.720000pt;}
.y32{bottom:212.810675pt;}
.y152{bottom:216.000000pt;}
.yee{bottom:217.621333pt;}
.y129{bottom:218.666667pt;}
.y63{bottom:224.592000pt;}
.yb6{bottom:226.133333pt;}
.y187{bottom:228.266667pt;}
.y8b{bottom:231.248000pt;}
.y151{bottom:231.466667pt;}
.y31{bottom:233.338675pt;}
.yd8{bottom:234.371067pt;}
.yb4{bottom:237.066667pt;}
.yed{bottom:238.149333pt;}
.yb5{bottom:241.600000pt;}
.y128{bottom:244.000000pt;}
.y62{bottom:245.120000pt;}
.yd9{bottom:246.851067pt;}
.y150{bottom:250.666667pt;}
.y186{bottom:251.200000pt;}
.y8a{bottom:252.048000pt;}
.y30{bottom:254.138675pt;}
.yb3{bottom:257.600000pt;}
.yec{bottom:258.949333pt;}
.yda{bottom:259.331067pt;}
.y127{bottom:260.000000pt;}
.y14f{bottom:265.909333pt;}
.y61{bottom:265.920000pt;}
.ydb{bottom:271.811067pt;}
.y89{bottom:272.848000pt;}
.y2f{bottom:274.938675pt;}
.yeb{bottom:279.749333pt;}
.ydc{bottom:284.291067pt;}
.y126{bottom:285.333333pt;}
.y60{bottom:286.448000pt;}
.y14e{bottom:286.709333pt;}
.y185{bottom:289.598667pt;}
.y88{bottom:293.376000pt;}
.y2e{bottom:295.466675pt;}
.ydd{bottom:296.771067pt;}
.yea{bottom:300.277333pt;}
.y125{bottom:301.600000pt;}
.y5f{bottom:307.248000pt;}
.y14d{bottom:307.509333pt;}
.y184{bottom:308.533333pt;}
.yde{bottom:309.251067pt;}
.y2d{bottom:313.333333pt;}
.y87{bottom:314.176000pt;}
.ye9{bottom:321.077333pt;}
.ydf{bottom:321.731067pt;}
.y2c{bottom:323.199992pt;}
.y183{bottom:326.400000pt;}
.y124{bottom:328.000000pt;}
.y14c{bottom:328.037333pt;}
.y5e{bottom:328.048000pt;}
.ye0{bottom:334.211067pt;}
.y86{bottom:334.976000pt;}
.y2b{bottom:340.800008pt;}
.y182{bottom:341.066667pt;}
.ye8{bottom:341.605333pt;}
.y123{bottom:345.066667pt;}
.ye1{bottom:346.691067pt;}
.y5d{bottom:348.576000pt;}
.y14b{bottom:348.837333pt;}
.y2a{bottom:350.698659pt;}
.y85{bottom:355.504000pt;}
.y181{bottom:358.133333pt;}
.ye7{bottom:362.405333pt;}
.yd2{bottom:367.733333pt;}
.y5c{bottom:369.376000pt;}
.y14a{bottom:369.637333pt;}
.y122{bottom:370.944000pt;}
.y29{bottom:371.498659pt;}
.y180{bottom:374.666667pt;}
.y84{bottom:376.304000pt;}
.ye6{bottom:383.205333pt;}
.yd1{bottom:383.258667pt;}
.y17f{bottom:389.333333pt;}
.y149{bottom:390.165333pt;}
.y5b{bottom:390.176000pt;}
.y121{bottom:391.472000pt;}
.y28{bottom:392.298659pt;}
.y83{bottom:397.104000pt;}
.ye5{bottom:403.733333pt;}
.yd0{bottom:403.786667pt;}
.y17e{bottom:406.400000pt;}
.y5a{bottom:410.704000pt;}
.y148{bottom:410.965333pt;}
.y120{bottom:412.272000pt;}
.y27{bottom:412.826659pt;}
.y82{bottom:417.632000pt;}
.y17d{bottom:423.733333pt;}
.ye4{bottom:424.533333pt;}
.ycf{bottom:424.586667pt;}
.y147{bottom:431.493333pt;}
.y59{bottom:431.504000pt;}
.y11f{bottom:433.072000pt;}
.y26{bottom:433.626659pt;}
.y81{bottom:438.432000pt;}
.y17c{bottom:441.066667pt;}
.yce{bottom:445.386667pt;}
.y146{bottom:452.293333pt;}
.y58{bottom:452.304000pt;}
.y11e{bottom:453.600000pt;}
.y25{bottom:454.154659pt;}
.y17b{bottom:458.133333pt;}
.y80{bottom:458.960000pt;}
.ycd{bottom:465.914667pt;}
.y57{bottom:472.832000pt;}
.y145{bottom:473.093333pt;}
.y11d{bottom:474.400000pt;}
.y24{bottom:474.954659pt;}
.y17a{bottom:475.466667pt;}
.y105{bottom:477.333333pt;}
.y7f{bottom:479.760000pt;}
.ycc{bottom:486.714667pt;}
.y179{bottom:492.800000pt;}
.y104{bottom:492.805333pt;}
.y144{bottom:493.621333pt;}
.y56{bottom:493.632000pt;}
.y11c{bottom:495.200000pt;}
.y23{bottom:495.754659pt;}
.y7e{bottom:500.560000pt;}
.ycb{bottom:507.514667pt;}
.y178{bottom:510.133333pt;}
.yb2{bottom:510.666667pt;}
.y103{bottom:513.605333pt;}
.y11b{bottom:514.133333pt;}
.y55{bottom:514.160000pt;}
.y143{bottom:514.421333pt;}
.y22{bottom:516.282659pt;}
.y7d{bottom:521.088000pt;}
.yad{bottom:522.133333pt;}
.y119{bottom:525.066667pt;}
.yb0{bottom:526.666667pt;}
.y177{bottom:527.200000pt;}
.yca{bottom:528.042667pt;}
.y11a{bottom:529.600000pt;}
.y102{bottom:534.133333pt;}
.y54{bottom:534.960000pt;}
.y142{bottom:535.221333pt;}
.yb1{bottom:537.066667pt;}
.y21{bottom:537.082659pt;}
.y7c{bottom:541.888000pt;}
.y176{bottom:544.533333pt;}
.y118{bottom:545.866667pt;}
.yaf{bottom:547.466667pt;}
.yc9{bottom:548.842667pt;}
.y101{bottom:554.933333pt;}
.y141{bottom:555.749333pt;}
.y53{bottom:555.760000pt;}
.y20{bottom:557.882659pt;}
.y175{bottom:561.866667pt;}
.y7b{bottom:562.688000pt;}
.yc8{bottom:569.642667pt;}
.y130{bottom:572.931333pt;}
.y100{bottom:574.133333pt;}
.y52{bottom:576.288000pt;}
.y140{bottom:576.549333pt;}
.y1f{bottom:578.410659pt;}
.y174{bottom:578.933333pt;}
.y12f{bottom:579.673467pt;}
.y7a{bottom:583.216000pt;}
.yac{bottom:584.266667pt;}
.yfe{bottom:584.800000pt;}
.yff{bottom:589.333333pt;}
.yc7{bottom:590.170667pt;}
.y173{bottom:596.266667pt;}
.y51{bottom:597.088000pt;}
.y13f{bottom:597.349333pt;}
.y1e{bottom:599.210659pt;}
.y79{bottom:604.016000pt;}
.yfd{bottom:605.600000pt;}
.yab{bottom:609.600000pt;}
.yc6{bottom:610.970667pt;}
.y172{bottom:613.600000pt;}
.y13e{bottom:617.877333pt;}
.y50{bottom:617.888000pt;}
.y1d{bottom:620.010659pt;}
.y117{bottom:623.200000pt;}
.y78{bottom:624.816000pt;}
.y171{bottom:630.666667pt;}
.yc5{bottom:631.498667pt;}
.y4f{bottom:638.416000pt;}
.y116{bottom:638.421333pt;}
.y13d{bottom:638.677333pt;}
.y1c{bottom:640.538659pt;}
.y77{bottom:645.344000pt;}
.y170{bottom:648.000000pt;}
.yaa{bottom:650.928000pt;}
.yc4{bottom:652.298667pt;}
.y13c{bottom:659.205333pt;}
.y4e{bottom:659.216000pt;}
.y115{bottom:659.221333pt;}
.y1b{bottom:661.338659pt;}
.y16f{bottom:665.333333pt;}
.y76{bottom:666.144000pt;}
.ya9{bottom:671.728000pt;}
.yc3{bottom:673.098667pt;}
.y13b{bottom:680.005333pt;}
.y4d{bottom:680.016000pt;}
.y114{bottom:680.021333pt;}
.y1a{bottom:681.866659pt;}
.ya6{bottom:682.128000pt;}
.y16e{bottom:682.666667pt;}
.y75{bottom:686.672000pt;}
.ya8{bottom:692.256000pt;}
.yc2{bottom:693.626667pt;}
.y19{bottom:699.733317pt;}
.y16d{bottom:699.733333pt;}
.y4c{bottom:700.544000pt;}
.y113{bottom:700.549333pt;}
.y13a{bottom:700.805333pt;}
.y74{bottom:707.472000pt;}
.y18{bottom:708.799968pt;}
.ya7{bottom:713.056000pt;}
.yc1{bottom:714.426667pt;}
.y16c{bottom:717.066667pt;}
.y139{bottom:721.333333pt;}
.y4b{bottom:721.344000pt;}
.y112{bottom:721.349333pt;}
.y17{bottom:726.133301pt;}
.y73{bottom:728.272000pt;}
.ya3{bottom:729.333333pt;}
.y16b{bottom:734.400000pt;}
.yc0{bottom:735.226667pt;}
.y16{bottom:741.066651pt;}
.y138{bottom:742.133333pt;}
.y4a{bottom:742.144000pt;}
.y111{bottom:742.149333pt;}
.ya2{bottom:744.005333pt;}
.y72{bottom:748.800000pt;}
.y16a{bottom:751.466667pt;}
.y15{bottom:753.066651pt;}
.ya5{bottom:754.400000pt;}
.ybf{bottom:755.754667pt;}
.y137{bottom:761.333333pt;}
.y49{bottom:762.672000pt;}
.y110{bottom:762.677333pt;}
.ya1{bottom:764.805333pt;}
.y169{bottom:768.800000pt;}
.y71{bottom:769.600000pt;}
.y14{bottom:770.133301pt;}
.y134{bottom:772.000000pt;}
.y136{bottom:776.533333pt;}
.ybe{bottom:776.554667pt;}
.y48{bottom:783.472000pt;}
.y10f{bottom:783.477333pt;}
.y168{bottom:786.133333pt;}
.y13{bottom:787.200032pt;}
.y70{bottom:790.400000pt;}
.y9b{bottom:791.466667pt;}
.y9f{bottom:796.005333pt;}
.y135{bottom:797.333333pt;}
.ybd{bottom:797.354667pt;}
.yfc{bottom:802.400000pt;}
.y167{bottom:803.200000pt;}
.y47{bottom:804.000000pt;}
.y10e{bottom:804.005333pt;}
.y12{bottom:805.338667pt;}
.y6f{bottom:808.000000pt;}
.y9e{bottom:816.533333pt;}
.y6e{bottom:817.882667pt;}
.y166{bottom:820.533333pt;}
.y46{bottom:824.800000pt;}
.y10d{bottom:824.805333pt;}
.y11{bottom:826.138667pt;}
.ya0{bottom:826.933333pt;}
.y9a{bottom:826.938667pt;}
.y9d{bottom:837.333333pt;}
.y165{bottom:837.866667pt;}
.y133{bottom:838.666667pt;}
.y6d{bottom:838.682667pt;}
.y45{bottom:845.600000pt;}
.y10c{bottom:845.605333pt;}
.y10{bottom:846.666667pt;}
.y131{bottom:854.933333pt;}
.y164{bottom:855.200000pt;}
.y6c{bottom:859.210667pt;}
.y44{bottom:863.200000pt;}
.y10b{bottom:866.133333pt;}
.yf{bottom:867.994629pt;}
.y163{bottom:872.266667pt;}
.y43{bottom:873.066667pt;}
.y98{bottom:874.133333pt;}
.y99{bottom:878.666667pt;}
.y6b{bottom:880.010667pt;}
.y10a{bottom:886.933333pt;}
.y162{bottom:889.600000pt;}
.y42{bottom:890.933333pt;}
.ye{bottom:892.261349pt;}
.y41{bottom:900.810667pt;}
.y109{bottom:906.133333pt;}
.y161{bottom:906.933333pt;}
.y96{bottom:915.466667pt;}
.yd{bottom:916.266683pt;}
.y97{bottom:920.000000pt;}
.y40{bottom:921.338667pt;}
.y160{bottom:924.000000pt;}
.yc{bottom:940.533365pt;}
.y15f{bottom:941.333333pt;}
.y3f{bottom:942.138667pt;}
.y94{bottom:957.600000pt;}
.y15e{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3e{bottom:962.938667pt;}
.y93{bottom:972.538667pt;}
.y15d{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y3d{bottom:983.466667pt;}
.y15c{bottom:993.066667pt;}
.y5{bottom:1003.733317pt;}
.y3c{bottom:1004.266667pt;}
.y15b{bottom:1010.400000pt;}
.y3{bottom:1017.600016pt;}
.y3b{bottom:1025.066667pt;}
.y15a{bottom:1027.733333pt;}
.y2{bottom:1034.933349pt;}
.y39{bottom:1052.000000pt;}
.y1{bottom:1052.266683pt;}
.h1d{height:8.970667pt;}
.he{height:17.941333pt;}
.hf{height:18.560000pt;}
.h19{height:20.533333pt;}
.h23{height:20.800000pt;}
.h5{height:20.801333pt;}
.h9{height:21.332000pt;}
.h4{height:26.912000pt;}
.h1c{height:32.812500pt;}
.h1b{height:34.453125pt;}
.h17{height:35.882667pt;}
.h12{height:41.333333pt;}
.h3{height:41.493333pt;}
.h13{height:41.600000pt;}
.h7{height:42.133333pt;}
.hd{height:44.853333pt;}
.h2a{height:45.642667pt;}
.h2{height:46.400000pt;}
.h29{height:49.338667pt;}
.h10{height:49.792000pt;}
.h28{height:51.040000pt;}
.hc{height:53.824000pt;}
.h27{height:55.625000pt;}
.h8{height:55.680000pt;}
.h24{height:60.812592pt;}
.h16{height:62.133333pt;}
.ha{height:62.794667pt;}
.h6{height:62.812500pt;}
.h25{height:62.849783pt;}
.hb{height:64.960000pt;}
.h11{height:66.750000pt;}
.h22{height:74.400000pt;}
.h15{height:82.665333pt;}
.h1f{height:82.666667pt;}
.h14{height:95.424000pt;}
.h26{height:186.134667pt;}
.h20{height:193.866667pt;}
.h1a{height:216.000000pt;}
.h1e{height:228.000000pt;}
.h18{height:250.133333pt;}
.h21{height:348.533333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.w7{width:115.200000pt;}
.w5{width:122.400000pt;}
.wf{width:160.533333pt;}
.w8{width:173.866667pt;}
.w13{width:192.000000pt;}
.w11{width:226.934667pt;}
.w6{width:231.198667pt;}
.w10{width:236.265333pt;}
.wb{width:255.200000pt;}
.wc{width:315.198667pt;}
.wd{width:315.200000pt;}
.w2{width:425.066667pt;}
.w12{width:438.400000pt;}
.wa{width:597.600000pt;}
.w9{width:630.400000pt;}
.we{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.199997pt;}
.x3a{left:10.400000pt;}
.x21{left:11.733333pt;}
.x2d{left:12.800000pt;}
.x60{left:15.466667pt;}
.x1b{left:17.333333pt;}
.x5c{left:19.200000pt;}
.x43{left:21.066667pt;}
.x26{left:22.666667pt;}
.x4b{left:25.866667pt;}
.x47{left:28.399867pt;}
.x1c{left:30.133333pt;}
.x69{left:33.066667pt;}
.x51{left:34.400000pt;}
.x38{left:36.266667pt;}
.x1e{left:38.400000pt;}
.x24{left:42.400000pt;}
.x28{left:44.000000pt;}
.x22{left:46.133333pt;}
.x59{left:58.133333pt;}
.x5e{left:64.000000pt;}
.x3{left:70.933333pt;}
.x63{left:73.600000pt;}
.x23{left:75.466667pt;}
.x55{left:77.066667pt;}
.x2f{left:78.933333pt;}
.x1f{left:80.000000pt;}
.x1{left:81.333333pt;}
.x5f{left:83.733333pt;}
.x14{left:85.066667pt;}
.x9{left:86.671997pt;}
.x46{left:97.600000pt;}
.x62{left:98.666667pt;}
.x29{left:101.061333pt;}
.x16{left:105.333333pt;}
.x8{left:109.333349pt;}
.x6{left:111.199992pt;}
.x31{left:113.322667pt;}
.x18{left:114.933333pt;}
.x25{left:116.000000pt;}
.x19{left:117.061333pt;}
.x64{left:117.986800pt;}
.x41{left:119.189333pt;}
.x2c{left:121.328000pt;}
.x37{left:122.362667pt;}
.x3b{left:125.328000pt;}
.x13{left:128.533333pt;}
.x45{left:133.176000pt;}
.x61{left:137.066667pt;}
.x44{left:139.260000pt;}
.x57{left:152.549333pt;}
.xe{left:153.866669pt;}
.x5b{left:158.138667pt;}
.x3f{left:165.600000pt;}
.x67{left:170.933333pt;}
.x58{left:175.749333pt;}
.x52{left:180.000000pt;}
.x65{left:198.020667pt;}
.x4a{left:208.533333pt;}
.xf{left:211.199992pt;}
.xb{left:229.113741pt;}
.xd{left:235.440008pt;}
.x5d{left:241.866667pt;}
.xc{left:242.972408pt;}
.x1a{left:249.333333pt;}
.x50{left:263.733333pt;}
.x4f{left:265.866667pt;}
.x3c{left:279.200000pt;}
.x56{left:280.800000pt;}
.x68{left:294.133333pt;}
.xa{left:299.471997pt;}
.x48{left:333.199333pt;}
.x11{left:335.199992pt;}
.x6a{left:345.066667pt;}
.x1d{left:371.733333pt;}
.x2e{left:387.466667pt;}
.x34{left:388.522667pt;}
.x32{left:393.578667pt;}
.x2{left:396.800008pt;}
.x12{left:399.466675pt;}
.x33{left:407.450667pt;}
.x10{left:409.333333pt;}
.x53{left:411.200000pt;}
.x35{left:415.450667pt;}
.x15{left:420.533333pt;}
.x2a{left:431.189333pt;}
.x27{left:450.666667pt;}
.x49{left:456.266667pt;}
.x4d{left:478.133333pt;}
.x4c{left:481.066667pt;}
.x5{left:496.000000pt;}
.x66{left:519.733333pt;}
.x40{left:546.400000pt;}
.x4e{left:551.466667pt;}
.x54{left:593.333333pt;}
.x20{left:602.933333pt;}
.x7{left:609.600000pt;}
.x42{left:614.133333pt;}
.x30{left:617.066667pt;}
.x3e{left:623.200000pt;}
.x3d{left:631.728000pt;}
.x2b{left:632.800000pt;}
.x36{left:648.506667pt;}
.x39{left:650.666667pt;}
.x5a{left:654.133333pt;}
.x17{left:663.733333pt;}
}




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