
    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_ee9888ece016bfbd1623e20e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070000;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_000f825b708371691d2b04b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_97e5813b850255d150a402b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_4af063250eddfc7b3d1a33c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_a9d92cc5574c8e5dd729c280.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053000;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_b20d28f6493dc3a23268a302.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060000;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_b5389f335991183cf0b0af27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972000;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_36140d5693d8ac80bf62cd7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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_b131afd8398df9118979095f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070000;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_36140d5693d8ac80bf62cd7d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962000;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_b131afd8398df9118979095f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4af063250eddfc7b3d1a33c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972000;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-11.970000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.970000px;}
.v7{vertical-align:18.000600px;}
.v5{vertical-align:19.980000px;}
.v4{vertical-align:20.989200px;}
.v1{vertical-align:22.977600px;}
.v8{vertical-align:30.024000px;}
.v6{vertical-align:44.520000px;}
.v9{vertical-align:60.042000px;}
.lsd{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.567000px;}
.ls4{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.367290px;}
.lsb{letter-spacing:-0.315000px;}
.ls3{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.220374px;}
.lsf{letter-spacing:-0.183645px;}
.ls7{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.073458px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000249px;}
.ls10{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.020400px;}
.ls5{letter-spacing:7.119000px;}
.ls12{letter-spacing:334.638000px;}
.ls0{letter-spacing:1247.572800px;}
.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;}
}
.wsd0{word-spacing:-20.904000px;}
.ws3{word-spacing:-16.317000px;}
.ws20{word-spacing:-16.191000px;}
.ws94{word-spacing:-16.080000px;}
.wsb5{word-spacing:-16.002000px;}
.ws1e{word-spacing:-15.939000px;}
.wse0{word-spacing:-15.750000px;}
.ws4d{word-spacing:-15.687000px;}
.ws93{word-spacing:-15.540000px;}
.wsaf{word-spacing:-14.472000px;}
.wsad{word-spacing:-13.986000px;}
.ws0{word-spacing:-12.432000px;}
.ws1{word-spacing:-10.780836px;}
.ws2{word-spacing:-10.418793px;}
.ws4{word-spacing:-9.512811px;}
.ws21{word-spacing:-9.439353px;}
.ws95{word-spacing:-9.374640px;}
.wsb6{word-spacing:-9.329166px;}
.ws1f{word-spacing:-9.292437px;}
.ws4e{word-spacing:-9.145521px;}
.wsb1{word-spacing:-8.437176px;}
.wsae{word-spacing:-8.153838px;}
.wsd3{word-spacing:-6.111000px;}
.ws100{word-spacing:-6.048000px;}
.wsf1{word-spacing:-5.607000px;}
.wsf5{word-spacing:-5.355000px;}
.wsf6{word-spacing:-5.166000px;}
.ws8b{word-spacing:-4.599000px;}
.wse4{word-spacing:-4.410000px;}
.ws53{word-spacing:-4.284000px;}
.wse5{word-spacing:-4.221000px;}
.wse8{word-spacing:-4.158000px;}
.wse3{word-spacing:-3.969000px;}
.ws8f{word-spacing:-3.906000px;}
.wse7{word-spacing:-3.465000px;}
.wsf{word-spacing:-3.276000px;}
.ws2c{word-spacing:-3.150000px;}
.ws54{word-spacing:-3.087000px;}
.ws72{word-spacing:-3.024000px;}
.ws55{word-spacing:-2.961000px;}
.ws6f{word-spacing:-2.898000px;}
.ws40{word-spacing:-2.835000px;}
.ws9e{word-spacing:-2.772000px;}
.ws82{word-spacing:-2.709000px;}
.ws13{word-spacing:-2.646000px;}
.ws48{word-spacing:-2.583000px;}
.ws49{word-spacing:-2.520000px;}
.ws47{word-spacing:-2.457000px;}
.ws19{word-spacing:-2.400000px;}
.ws25{word-spacing:-2.394000px;}
.ws4b{word-spacing:-2.331000px;}
.ws9d{word-spacing:-2.268000px;}
.ws8e{word-spacing:-2.205000px;}
.ws57{word-spacing:-2.142000px;}
.ws41{word-spacing:-2.079000px;}
.ws2d{word-spacing:-2.016000px;}
.wsb7{word-spacing:-1.953000px;}
.ws69{word-spacing:-1.890000px;}
.ws6d{word-spacing:-1.827000px;}
.wsc1{word-spacing:-1.764000px;}
.ws7b{word-spacing:-1.701000px;}
.wsc7{word-spacing:-1.638000px;}
.ws70{word-spacing:-1.575000px;}
.ws8c{word-spacing:-1.512000px;}
.ws7c{word-spacing:-1.449000px;}
.ws9c{word-spacing:-1.386000px;}
.ws11{word-spacing:-1.323000px;}
.ws4c{word-spacing:-1.260000px;}
.ws68{word-spacing:-1.197000px;}
.ws17{word-spacing:-1.134000px;}
.ws43{word-spacing:-1.071000px;}
.ws56{word-spacing:-1.008000px;}
.ws9f{word-spacing:-0.945000px;}
.ws1b{word-spacing:-0.912000px;}
.ws80{word-spacing:-0.882000px;}
.ws16{word-spacing:-0.819000px;}
.ws91{word-spacing:-0.756000px;}
.ws76{word-spacing:-0.693000px;}
.ws1c{word-spacing:-0.672000px;}
.ws7d{word-spacing:-0.630000px;}
.ws81{word-spacing:-0.567000px;}
.wsa0{word-spacing:-0.504000px;}
.ws52{word-spacing:-0.441000px;}
.ws4f{word-spacing:-0.378000px;}
.ws3a{word-spacing:-0.315000px;}
.ws6a{word-spacing:-0.288000px;}
.ws7f{word-spacing:-0.252000px;}
.wsca{word-spacing:-0.216000px;}
.ws5f{word-spacing:-0.189000px;}
.ws7a{word-spacing:-0.126000px;}
.ws67{word-spacing:-0.063000px;}
.ws5{word-spacing:0.000000px;}
.ws83{word-spacing:0.063000px;}
.ws28{word-spacing:0.126000px;}
.ws1a{word-spacing:0.240000px;}
.ws3b{word-spacing:0.252000px;}
.wsac{word-spacing:0.315000px;}
.ws77{word-spacing:0.378000px;}
.ws31{word-spacing:0.441000px;}
.ws1d{word-spacing:0.480000px;}
.wsa4{word-spacing:0.504000px;}
.ws98{word-spacing:0.567000px;}
.wscc{word-spacing:0.630000px;}
.ws42{word-spacing:0.693000px;}
.ws24{word-spacing:0.756000px;}
.ws75{word-spacing:0.819000px;}
.ws90{word-spacing:0.882000px;}
.ws8{word-spacing:0.912000px;}
.ws59{word-spacing:0.945000px;}
.ws74{word-spacing:1.008000px;}
.ws29{word-spacing:1.071000px;}
.ws3d{word-spacing:1.134000px;}
.ws32{word-spacing:1.197000px;}
.ws6b{word-spacing:1.248000px;}
.ws6e{word-spacing:1.260000px;}
.ws66{word-spacing:1.323000px;}
.ws39{word-spacing:1.386000px;}
.ws30{word-spacing:1.449000px;}
.ws60{word-spacing:1.512000px;}
.ws65{word-spacing:1.575000px;}
.ws38{word-spacing:1.638000px;}
.ws2b{word-spacing:1.701000px;}
.ws2a{word-spacing:1.764000px;}
.ws37{word-spacing:1.827000px;}
.ws7e{word-spacing:1.890000px;}
.ws3f{word-spacing:1.953000px;}
.ws3e{word-spacing:2.016000px;}
.ws73{word-spacing:2.079000px;}
.ws61{word-spacing:2.142000px;}
.wsb8{word-spacing:2.205000px;}
.ws5c{word-spacing:2.268000px;}
.ws33{word-spacing:2.331000px;}
.wse{word-spacing:2.394000px;}
.ws9b{word-spacing:2.457000px;}
.wsa5{word-spacing:2.496000px;}
.wsaa{word-spacing:2.520000px;}
.ws5b{word-spacing:2.583000px;}
.ws71{word-spacing:2.646000px;}
.ws26{word-spacing:2.709000px;}
.wsab{word-spacing:2.772000px;}
.ws6c{word-spacing:2.835000px;}
.ws4a{word-spacing:2.898000px;}
.ws9a{word-spacing:2.961000px;}
.ws84{word-spacing:3.024000px;}
.ws3c{word-spacing:3.087000px;}
.ws86{word-spacing:3.150000px;}
.ws35{word-spacing:3.213000px;}
.ws7{word-spacing:3.216000px;}
.ws2e{word-spacing:3.276000px;}
.ws6{word-spacing:3.312000px;}
.ws2f{word-spacing:3.339000px;}
.ws5a{word-spacing:3.402000px;}
.ws64{word-spacing:3.465000px;}
.wsc8{word-spacing:3.528000px;}
.wsa2{word-spacing:3.591000px;}
.ws10{word-spacing:3.654000px;}
.ws18{word-spacing:3.717000px;}
.wsa8{word-spacing:3.780000px;}
.ws87{word-spacing:3.843000px;}
.wsce{word-spacing:3.906000px;}
.wsd1{word-spacing:3.969000px;}
.wsd4{word-spacing:4.032000px;}
.wsbe{word-spacing:4.158000px;}
.wscd{word-spacing:4.221000px;}
.ws46{word-spacing:4.284000px;}
.ws92{word-spacing:4.347000px;}
.wsa3{word-spacing:4.410000px;}
.ws45{word-spacing:4.473000px;}
.wscb{word-spacing:4.599000px;}
.ws85{word-spacing:4.725000px;}
.ws5e{word-spacing:4.788000px;}
.wsb{word-spacing:4.851000px;}
.ws99{word-spacing:4.914000px;}
.ws14{word-spacing:5.040000px;}
.ws22{word-spacing:5.103000px;}
.wsea{word-spacing:5.166000px;}
.ws79{word-spacing:5.229000px;}
.ws27{word-spacing:5.355000px;}
.wsfc{word-spacing:5.418000px;}
.ws63{word-spacing:5.481000px;}
.wscf{word-spacing:5.607000px;}
.ws34{word-spacing:5.670000px;}
.ws36{word-spacing:5.733000px;}
.wsc9{word-spacing:5.796000px;}
.wsbf{word-spacing:5.859000px;}
.wsa9{word-spacing:5.922000px;}
.wsa1{word-spacing:5.985000px;}
.wsc0{word-spacing:6.048000px;}
.ws103{word-spacing:6.174000px;}
.ws97{word-spacing:6.237000px;}
.ws62{word-spacing:6.300000px;}
.ws51{word-spacing:6.363000px;}
.wse6{word-spacing:6.426000px;}
.wsf2{word-spacing:6.489000px;}
.ws5d{word-spacing:6.615000px;}
.wsc{word-spacing:6.867000px;}
.ws58{word-spacing:6.930000px;}
.wsc6{word-spacing:6.993000px;}
.wsde{word-spacing:7.119000px;}
.wsbd{word-spacing:7.182000px;}
.wsdf{word-spacing:7.245000px;}
.ws78{word-spacing:7.308000px;}
.wsda{word-spacing:7.434000px;}
.ws23{word-spacing:7.497000px;}
.wse1{word-spacing:7.686000px;}
.wsf8{word-spacing:7.749000px;}
.ws44{word-spacing:7.875000px;}
.wsbc{word-spacing:7.938000px;}
.wsf9{word-spacing:8.001000px;}
.ws88{word-spacing:8.064000px;}
.ws101{word-spacing:8.127000px;}
.wsd2{word-spacing:8.190000px;}
.ws50{word-spacing:8.316000px;}
.ws12{word-spacing:8.379000px;}
.wsd5{word-spacing:8.442000px;}
.wse9{word-spacing:8.694000px;}
.wsdd{word-spacing:8.946000px;}
.wsd9{word-spacing:9.135000px;}
.ws15{word-spacing:9.198000px;}
.wsdc{word-spacing:9.261000px;}
.ws89{word-spacing:9.450000px;}
.ws8a{word-spacing:9.513000px;}
.wsf0{word-spacing:10.080000px;}
.wsfe{word-spacing:10.395000px;}
.wsdb{word-spacing:10.458000px;}
.wsfd{word-spacing:10.584000px;}
.wsff{word-spacing:10.773000px;}
.ws8d{word-spacing:10.836000px;}
.wsd{word-spacing:10.962000px;}
.wsef{word-spacing:11.214000px;}
.wsee{word-spacing:11.592000px;}
.wsf4{word-spacing:12.789000px;}
.wsf3{word-spacing:13.293000px;}
.ws102{word-spacing:13.797000px;}
.wse2{word-spacing:14.616000px;}
.wsd7{word-spacing:15.309000px;}
.wsd6{word-spacing:15.813000px;}
.wsd8{word-spacing:16.317000px;}
.wseb{word-spacing:16.380000px;}
.wsed{word-spacing:19.341000px;}
.wsf7{word-spacing:19.404000px;}
.wsec{word-spacing:20.034000px;}
.wsfb{word-spacing:20.223000px;}
.wsfa{word-spacing:20.916000px;}
.wsbb{word-spacing:166.482000px;}
.wsba{word-spacing:166.914000px;}
.wsc4{word-spacing:171.612000px;}
.wsb9{word-spacing:183.978000px;}
.wsb2{word-spacing:184.734000px;}
.wsb3{word-spacing:197.964000px;}
.wsb4{word-spacing:199.476000px;}
.wsa6{word-spacing:211.896000px;}
.wsa7{word-spacing:219.942000px;}
.wsb0{word-spacing:255.906000px;}
.wsc2{word-spacing:262.008000px;}
.wsc5{word-spacing:303.318000px;}
.wsc3{word-spacing:354.186000px;}
.wsa{word-spacing:493.374000px;}
.ws9{word-spacing:500.976000px;}
.ws96{word-spacing:1246.914000px;}
._5{margin-left:-500.976000px;}
._6{margin-left:-493.416000px;}
._13{margin-left:-37.296000px;}
._1c{margin-left:-21.357000px;}
._15{margin-left:-19.467000px;}
._1d{margin-left:-18.018000px;}
._56{margin-left:-14.496300px;}
._11{margin-left:-13.257300px;}
._12{margin-left:-11.831751px;}
._57{margin-left:-10.500000px;}
._8{margin-left:-9.168000px;}
._f{margin-left:-7.560000px;}
._e{margin-left:-6.100800px;}
._2{margin-left:-4.824000px;}
._4{margin-left:-3.360000px;}
._7{margin-left:-2.100000px;}
._3{margin-left:-1.017600px;}
._a{width:1.035000px;}
._55{width:2.331000px;}
._58{width:6.447000px;}
._10{width:7.896000px;}
._d{width:13.680000px;}
._c{width:16.416000px;}
._b{width:18.768000px;}
._14{width:22.491000px;}
._9{width:55.260501px;}
._49{width:125.658000px;}
._53{width:134.622000px;}
._42{width:153.522000px;}
._45{width:154.602000px;}
._48{width:162.432000px;}
._47{width:164.808000px;}
._4a{width:172.368000px;}
._4c{width:178.794000px;}
._4f{width:181.440000px;}
._3e{width:186.840000px;}
._3c{width:190.634868px;}
._50{width:192.456000px;}
._2b{width:196.182000px;}
._22{width:206.580000px;}
._4d{width:208.654800px;}
._2a{width:212.166000px;}
._2d{width:213.408000px;}
._2e{width:214.866000px;}
._28{width:216.216000px;}
._34{width:219.942000px;}
._32{width:222.607668px;}
._27{width:225.612000px;}
._37{width:226.800000px;}
._3a{width:228.798000px;}
._38{width:231.228000px;}
._46{width:233.010000px;}
._30{width:236.196000px;}
._54{width:238.302000px;}
._24{width:240.030000px;}
._21{width:241.860000px;}
._26{width:244.026000px;}
._20{width:249.360000px;}
._33{width:251.694000px;}
._41{width:262.548000px;}
._31{width:274.485600px;}
._39{width:277.722000px;}
._51{width:283.608000px;}
._4b{width:295.704000px;}
._44{width:298.080000px;}
._3b{width:300.510000px;}
._2c{width:306.396000px;}
._35{width:308.394000px;}
._36{width:309.744000px;}
._43{width:318.423132px;}
._25{width:320.274000px;}
._40{width:326.430000px;}
._29{width:331.506000px;}
._3f{width:334.206000px;}
._52{width:341.055600px;}
._4e{width:343.053600px;}
._1e{width:345.720000px;}
._17{width:354.936000px;}
._3d{width:378.702000px;}
._1f{width:431.880000px;}
._19{width:482.544000px;}
._16{width:496.140000px;}
._18{width:507.654000px;}
._23{width:545.400000px;}
._2f{width:584.872800px;}
._1b{width:626.445600px;}
._1a{width:713.556000px;}
._0{width:1164.912000px;}
._1{width:1634.880000px;}
.fc3{color:rgb(99,100,102);}
.fc2{color:rgb(219,0,0);}
.fc1{color:rgb(0,0,250);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fs2{font-size:36.000000px;}
.fs9{font-size:36.729000px;}
.fs6{font-size:40.227000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fsc{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:81.911100px;}
.ya{bottom:82.912350px;}
.y35{bottom:85.083450px;}
.y9{bottom:95.539350px;}
.y8{bottom:109.377150px;}
.y256{bottom:135.853800px;}
.y9d{bottom:135.966150px;}
.y288{bottom:136.018200px;}
.y185{bottom:136.061100px;}
.y1f2{bottom:136.061550px;}
.y32{bottom:136.063050px;}
.y13b{bottom:136.066050px;}
.y225{bottom:136.068300px;}
.y124{bottom:136.070550px;}
.yf5{bottom:136.072050px;}
.y1b6{bottom:136.094550px;}
.y6a{bottom:136.098450px;}
.ydb{bottom:136.133250px;}
.y16b{bottom:136.133850px;}
.y2ba{bottom:136.175550px;}
.ya6{bottom:136.582650px;}
.ye9{bottom:137.262000px;}
.y31{bottom:149.563050px;}
.y287{bottom:153.910200px;}
.y255{bottom:153.919050px;}
.y69{bottom:154.069200px;}
.y16a{bottom:154.277850px;}
.y123{bottom:154.293300px;}
.yf4{bottom:154.310550px;}
.y2b9{bottom:154.319550px;}
.yda{bottom:154.371750px;}
.y1f1{bottom:154.457550px;}
.y224{bottom:154.627650px;}
.y184{bottom:154.668750px;}
.y9c{bottom:154.724400px;}
.y1b5{bottom:154.726800px;}
.ye8{bottom:155.264250px;}
.ya5{bottom:155.830650px;}
.y13a{bottom:156.058050px;}
.y30{bottom:163.063050px;}
.ya4{bottom:167.830650px;}
.y139{bottom:170.302050px;}
.y254{bottom:171.984300px;}
.y68{bottom:172.039950px;}
.y169{bottom:172.421850px;}
.y2b8{bottom:172.463550px;}
.yf3{bottom:172.549050px;}
.yd9{bottom:172.610250px;}
.y1f0{bottom:172.852950px;}
.y223{bottom:173.133900px;}
.ye7{bottom:173.266500px;}
.y183{bottom:173.285250px;}
.y1b4{bottom:173.359050px;}
.y9b{bottom:173.482650px;}
.y286{bottom:176.054700px;}
.y2f{bottom:176.563050px;}
.ya3{bottom:179.830650px;}
.y122{bottom:187.405500px;}
.y67{bottom:190.010700px;}
.y2e{bottom:190.063050px;}
.y168{bottom:190.565850px;}
.y2b7{bottom:190.607550px;}
.yf2{bottom:190.787550px;}
.yd8{bottom:190.848750px;}
.y1ef{bottom:191.244900px;}
.y222{bottom:191.640150px;}
.y182{bottom:191.901750px;}
.y1b3{bottom:191.991300px;}
.y9a{bottom:192.240900px;}
.y285{bottom:193.946700px;}
.y253{bottom:194.302050px;}
.ye6{bottom:197.644650px;}
.y2d{bottom:203.563050px;}
.y66{bottom:207.981450px;}
.y167{bottom:208.709850px;}
.yf1{bottom:209.026050px;}
.yd7{bottom:209.087250px;}
.y1ee{bottom:209.640900px;}
.y221{bottom:210.146400px;}
.y181{bottom:210.518250px;}
.y1b2{bottom:210.623550px;}
.y99{bottom:210.999150px;}
.y284{bottom:211.838700px;}
.y252{bottom:212.367300px;}
.y2b6{bottom:213.004050px;}
.y2c{bottom:217.063050px;}
.y121{bottom:221.036700px;}
.y65{bottom:225.952200px;}
.y166{bottom:226.853850px;}
.yf0{bottom:227.264550px;}
.yd6{bottom:227.325750px;}
.y1ed{bottom:228.036900px;}
.y220{bottom:228.652650px;}
.y180{bottom:229.134750px;}
.y1b1{bottom:229.255800px;}
.y98{bottom:229.757400px;}
.y2b{bottom:230.563050px;}
.y2b5{bottom:231.148050px;}
.y283{bottom:233.983200px;}
.y251{bottom:234.685050px;}
.ye5{bottom:239.030400px;}
.y120{bottom:243.311700px;}
.y64{bottom:243.922950px;}
.y2a{bottom:244.063050px;}
.y165{bottom:244.997850px;}
.yef{bottom:245.503050px;}
.y1ec{bottom:246.432900px;}
.y21f{bottom:247.158900px;}
.y17f{bottom:247.749450px;}
.y1b0{bottom:247.888050px;}
.y97{bottom:248.515650px;}
.yd5{bottom:249.816750px;}
.y282{bottom:251.875200px;}
.y250{bottom:252.750300px;}
.y2b4{bottom:253.544550px;}
.y63{bottom:261.909300px;}
.y164{bottom:263.141850px;}
.yee{bottom:263.741550px;}
.y1eb{bottom:264.828900px;}
.y11f{bottom:265.586700px;}
.y21e{bottom:265.665150px;}
.y17e{bottom:266.364300px;}
.y1af{bottom:266.524950px;}
.y96{bottom:267.273900px;}
.yd4{bottom:268.055250px;}
.y281{bottom:269.767200px;}
.y24f{bottom:270.815550px;}
.y2b3{bottom:271.688550px;}
.y62{bottom:279.880050px;}
.y163{bottom:281.285850px;}
.y1ea{bottom:283.224900px;}
.y21d{bottom:284.171400px;}
.y17d{bottom:284.977200px;}
.y1ae{bottom:285.280050px;}
.y95{bottom:286.032150px;}
.yd3{bottom:286.293750px;}
.y29{bottom:287.325000px;}
.y280{bottom:287.659200px;}
.y11e{bottom:287.861700px;}
.y2b2{bottom:289.832550px;}
.y24e{bottom:293.133300px;}
.yed{bottom:296.863200px;}
.y61{bottom:297.850800px;}
.y162{bottom:299.429850px;}
.y1e9{bottom:301.619550px;}
.y21c{bottom:302.677650px;}
.y17c{bottom:303.593700px;}
.y1ad{bottom:303.912300px;}
.yd2{bottom:304.532250px;}
.y94{bottom:304.790400px;}
.y28{bottom:305.343000px;}
.y2b1{bottom:307.976550px;}
.y27f{bottom:309.803700px;}
.y11d{bottom:310.136700px;}
.y24d{bottom:311.198550px;}
.y60{bottom:315.821550px;}
.y161{bottom:317.601000px;}
.y1e8{bottom:320.015550px;}
.y21b{bottom:321.183900px;}
.y17b{bottom:322.210200px;}
.y1ac{bottom:322.544550px;}
.yd1{bottom:322.770750px;}
.y27{bottom:323.361000px;}
.y2b0{bottom:326.120550px;}
.y27e{bottom:327.695700px;}
.y93{bottom:327.801150px;}
.y11c{bottom:332.411700px;}
.y24c{bottom:333.516300px;}
.y5f{bottom:333.792300px;}
.y160{bottom:335.745000px;}
.y1e7{bottom:338.411550px;}
.y21a{bottom:339.690150px;}
.yd0{bottom:341.009250px;}
.y1ab{bottom:341.176800px;}
.y26{bottom:341.379000px;}
.y92{bottom:346.559400px;}
.y2af{bottom:348.517050px;}
.y27d{bottom:349.840200px;}
.y11b{bottom:354.684900px;}
.y17a{bottom:355.706850px;}
.y24b{bottom:355.834050px;}
.y5e{bottom:356.015550px;}
.y15f{bottom:357.086250px;}
.ycf{bottom:359.247750px;}
.y25{bottom:359.397000px;}
.y1aa{bottom:359.809050px;}
.y219{bottom:364.579650px;}
.y91{bottom:365.317650px;}
.y27c{bottom:367.732200px;}
.y2ae{bottom:370.913550px;}
.y1e6{bottom:371.688750px;}
.y24a{bottom:373.899300px;}
.y5d{bottom:373.994400px;}
.y15e{bottom:375.230250px;}
.yce{bottom:377.486250px;}
.y1a9{bottom:378.441300px;}
.y179{bottom:381.662400px;}
.y24{bottom:383.792550px;}
.y90{bottom:384.075900px;}
.y11a{bottom:388.872900px;}
.y2ad{bottom:389.057550px;}
.y27b{bottom:389.876700px;}
.y249{bottom:391.964550px;}
.y5c{bottom:391.965150px;}
.y15d{bottom:393.374250px;}
.ycd{bottom:395.724750px;}
.y1a8{bottom:397.073550px;}
.y1e4{bottom:398.185200px;}
.y1e5{bottom:398.198700px;}
.y178{bottom:401.804400px;}
.y8f{bottom:402.834150px;}
.y2ac{bottom:407.201550px;}
.y27a{bottom:407.768700px;}
.y218{bottom:408.093750px;}
.y2df{bottom:409.627200px;}
.y5b{bottom:409.947300px;}
.y15c{bottom:411.525300px;}
.y1e3{bottom:413.183700px;}
.ycc{bottom:413.963250px;}
.y248{bottom:414.282300px;}
.y1a7{bottom:415.705800px;}
.y119{bottom:421.156050px;}
.y8e{bottom:421.592400px;}
.y177{bottom:421.946400px;}
.y2ab{bottom:425.345550px;}
.y217{bottom:426.600000px;}
.y23{bottom:426.694500px;}
.y2de{bottom:427.330200px;}
.y5a{bottom:427.914450px;}
.y15b{bottom:429.683400px;}
.y279{bottom:429.913200px;}
.ycb{bottom:432.201750px;}
.y247{bottom:432.347550px;}
.y1a6{bottom:434.338050px;}
.y1e2{bottom:434.702700px;}
.y118{bottom:439.378800px;}
.y8d{bottom:440.350650px;}
.y176{bottom:442.088400px;}
.y1df{bottom:442.195200px;}
.y2dd{bottom:445.033200px;}
.y216{bottom:445.106250px;}
.y59{bottom:445.897200px;}
.y2aa{bottom:447.742050px;}
.y278{bottom:447.805200px;}
.y15a{bottom:447.827400px;}
.y22{bottom:448.965000px;}
.y1e1{bottom:449.701200px;}
.y246{bottom:450.412800px;}
.yca{bottom:450.440250px;}
.y1a5{bottom:452.970300px;}
.y1de{bottom:457.193700px;}
.y117{bottom:457.601550px;}
.y8c{bottom:459.108900px;}
.y175{bottom:462.243150px;}
.y215{bottom:463.612500px;}
.y58{bottom:463.867950px;}
.y1e0{bottom:464.699700px;}
.y2a9{bottom:465.886050px;}
.y159{bottom:465.971400px;}
.y21{bottom:466.981650px;}
.y2dc{bottom:466.988700px;}
.y245{bottom:468.478050px;}
.yc9{bottom:468.815550px;}
.y277{bottom:469.949700px;}
.y116{bottom:475.824300px;}
.y1a4{bottom:475.855050px;}
.y8b{bottom:477.867150px;}
.y57{bottom:481.838700px;}
.y214{bottom:482.118750px;}
.y173{bottom:482.385150px;}
.y2db{bottom:484.691700px;}
.y20{bottom:484.999650px;}
.y1dd{bottom:486.218700px;}
.yc8{bottom:487.054050px;}
.y276{bottom:487.841700px;}
.y2a8{bottom:488.282550px;}
.y172{bottom:489.877650px;}
.y158{bottom:490.500450px;}
.y244{bottom:490.795800px;}
.y1da{bottom:493.711200px;}
.y115{bottom:494.047050px;}
.y1a3{bottom:494.487300px;}
.y8a{bottom:496.625400px;}
.y174{bottom:497.383650px;}
.y56{bottom:499.821300px;}
.y213{bottom:500.625000px;}
.y1dc{bottom:501.217200px;}
.y1f{bottom:503.017650px;}
.y2a7{bottom:506.426550px;}
.y2da{bottom:506.647200px;}
.y1d9{bottom:508.709700px;}
.y243{bottom:508.861050px;}
.yc7{bottom:509.545050px;}
.y275{bottom:509.986200px;}
.y114{bottom:512.269800px;}
.y1a2{bottom:513.119550px;}
.y1db{bottom:516.215700px;}
.y55{bottom:517.792050px;}
.y212{bottom:519.131250px;}
.y1e{bottom:521.033100px;}
.y89{bottom:521.756550px;}
.y2d9{bottom:524.350200px;}
.y2a6{bottom:524.570550px;}
.y171{bottom:527.698800px;}
.yc6{bottom:527.783550px;}
.y274{bottom:527.878200px;}
.y113{bottom:530.589600px;}
.y242{bottom:531.178800px;}
.y1a1{bottom:531.751800px;}
.y54{bottom:535.762800px;}
.y211{bottom:537.637500px;}
.y1d7{bottom:537.707700px;}
.y1d8{bottom:537.721200px;}
.y1d{bottom:539.051100px;}
.y170{bottom:543.318300px;}
.y157{bottom:544.793250px;}
.y273{bottom:545.770200px;}
.yc5{bottom:546.022050px;}
.y2d8{bottom:546.305700px;}
.y88{bottom:546.887700px;}
.y2a5{bottom:546.967050px;}
.y112{bottom:548.812350px;}
.y241{bottom:549.244050px;}
.y1a0{bottom:550.384050px;}
.y1d6{bottom:552.706200px;}
.y53{bottom:553.820400px;}
.y210{bottom:556.143750px;}
.y1c{bottom:557.069100px;}
.y2d7{bottom:564.008700px;}
.yc4{bottom:564.260550px;}
.y2a4{bottom:565.111050px;}
.y111{bottom:567.035100px;}
.y240{bottom:567.309300px;}
.y272{bottom:567.914700px;}
.y19f{bottom:569.016300px;}
.y16f{bottom:571.683750px;}
.y52{bottom:571.791150px;}
.y1d4{bottom:574.198200px;}
.y1d5{bottom:574.211700px;}
.y156{bottom:574.535100px;}
.y20f{bottom:574.650000px;}
.y1b{bottom:575.087100px;}
.y2d6{bottom:581.711700px;}
.yc3{bottom:582.499050px;}
.y2a3{bottom:583.255050px;}
.y110{bottom:585.257850px;}
.y271{bottom:585.806700px;}
.y1d3{bottom:589.196700px;}
.y23f{bottom:589.627050px;}
.y51{bottom:589.761900px;}
.y87{bottom:590.555550px;}
.y16e{bottom:591.555750px;}
.y19e{bottom:591.901050px;}
.y1a{bottom:593.105100px;}
.y20e{bottom:593.156250px;}
.y155{bottom:598.929600px;}
.yc2{bottom:600.737550px;}
.y10f{bottom:603.480600px;}
.y2d5{bottom:603.667200px;}
.y270{bottom:603.698700px;}
.y2a2{bottom:605.651550px;}
.y23e{bottom:607.692300px;}
.y50{bottom:607.732650px;}
.y86{bottom:609.156300px;}
.y19d{bottom:610.533300px;}
.y1d2{bottom:610.702200px;}
.y19{bottom:611.123100px;}
.y20d{bottom:611.662500px;}
.yc1{bottom:618.976050px;}
.y2d4{bottom:621.370200px;}
.y10e{bottom:621.703350px;}
.y154{bottom:623.324100px;}
.y2a1{bottom:623.795550px;}
.y1d1{bottom:625.700700px;}
.y4f{bottom:625.703400px;}
.y23d{bottom:625.757550px;}
.y26f{bottom:625.843200px;}
.y85{bottom:627.757050px;}
.y18{bottom:629.141100px;}
.y19c{bottom:629.165550px;}
.y20c{bottom:630.168750px;}
.yc0{bottom:637.214550px;}
.y2d3{bottom:639.073200px;}
.y2a0{bottom:641.939550px;}
.y4e{bottom:643.674150px;}
.y26e{bottom:643.735200px;}
.y10d{bottom:644.178600px;}
.y84{bottom:646.357800px;}
.y1cf{bottom:647.192700px;}
.y1d0{bottom:647.206200px;}
.y153{bottom:647.718600px;}
.y19b{bottom:647.797800px;}
.y23c{bottom:648.075300px;}
.y20b{bottom:648.675000px;}
.y17{bottom:653.536500px;}
.ybf{bottom:655.453050px;}
.y2d2{bottom:661.028700px;}
.y26d{bottom:661.627200px;}
.y4d{bottom:661.644900px;}
.y1ce{bottom:662.191200px;}
.y10c{bottom:662.401350px;}
.y29f{bottom:664.336050px;}
.y83{bottom:664.958550px;}
.y23b{bottom:666.140550px;}
.y19a{bottom:666.430050px;}
.y20a{bottom:667.181250px;}
.y152{bottom:672.113100px;}
.ybe{bottom:673.691550px;}
.y2d1{bottom:678.731700px;}
.y4c{bottom:679.615650px;}
.y10b{bottom:680.624100px;}
.y29e{bottom:682.480050px;}
.y138{bottom:682.769550px;}
.y82{bottom:683.559300px;}
.y1cc{bottom:683.711700px;}
.y1cd{bottom:683.723700px;}
.y26c{bottom:683.771700px;}
.y199{bottom:685.062300px;}
.y209{bottom:685.687500px;}
.ya2{bottom:687.996150px;}
.y23a{bottom:688.458300px;}
.ybd{bottom:691.930050px;}
.y2d0{bottom:696.434700px;}
.y151{bottom:696.501150px;}
.y4b{bottom:697.586400px;}
.y1cb{bottom:698.710200px;}
.y10a{bottom:698.846850px;}
.y29d{bottom:700.624050px;}
.y26b{bottom:701.663700px;}
.y81{bottom:702.160050px;}
.ya1{bottom:702.994650px;}
.y198{bottom:703.694550px;}
.y208{bottom:704.193750px;}
.y16{bottom:704.944200px;}
.y239{bottom:706.523550px;}
.y150{bottom:707.646150px;}
.ybc{bottom:710.168550px;}
.y137{bottom:715.524000px;}
.y4a{bottom:715.557150px;}
.y109{bottom:717.069600px;}
.y2cf{bottom:718.390200px;}
.y29c{bottom:718.768050px;}
.y26a{bottom:719.555700px;}
.y80{bottom:720.760800px;}
.y197{bottom:722.326800px;}
.y207{bottom:722.700000px;}
.y15{bottom:725.661750px;}
.ybb{bottom:728.407050px;}
.y238{bottom:728.841300px;}
.y1ca{bottom:729.501750px;}
.ya0{bottom:730.750500px;}
.y49{bottom:733.527900px;}
.y136{bottom:734.266500px;}
.y108{bottom:735.292350px;}
.y2ce{bottom:736.093200px;}
.y7f{bottom:739.361550px;}
.y196{bottom:740.959050px;}
.y29b{bottom:741.164550px;}
.y206{bottom:741.206250px;}
.y269{bottom:741.700200px;}
.y14{bottom:746.379300px;}
.yba{bottom:746.645550px;}
.y237{bottom:746.906550px;}
.y48{bottom:751.498650px;}
.y14f{bottom:751.829700px;}
.y135{bottom:753.009000px;}
.y107{bottom:753.515100px;}
.y2cd{bottom:753.796200px;}
.y7e{bottom:757.962300px;}
.y29a{bottom:759.308550px;}
.y195{bottom:759.591300px;}
.y268{bottom:759.592200px;}
.y205{bottom:759.712500px;}
.y1c9{bottom:761.898150px;}
.yb9{bottom:764.884050px;}
.y236{bottom:764.971800px;}
.y14e{bottom:766.976700px;}
.y13{bottom:767.096850px;}
.y47{bottom:769.469400px;}
.y2cc{bottom:771.499200px;}
.y134{bottom:771.751500px;}
.y106{bottom:771.775050px;}
.y7d{bottom:776.563050px;}
.y299{bottom:777.452550px;}
.y204{bottom:778.218750px;}
.y194{bottom:778.223550px;}
.y1c8{bottom:780.294150px;}
.y267{bottom:781.736700px;}
.yb8{bottom:783.122550px;}
.y235{bottom:787.289550px;}
.y46{bottom:787.440150px;}
.y12{bottom:787.814400px;}
.y105{bottom:789.997800px;}
.y2cb{bottom:793.454700px;}
.y203{bottom:796.725000px;}
.y193{bottom:796.855800px;}
.y133{bottom:796.873050px;}
.y1c7{bottom:798.690150px;}
.y14d{bottom:799.249050px;}
.y7c{bottom:799.416300px;}
.y266{bottom:799.628700px;}
.y298{bottom:799.849050px;}
.yb7{bottom:801.361050px;}
.y234{bottom:805.354800px;}
.y45{bottom:805.410900px;}
.y11{bottom:808.531950px;}
.yec{bottom:809.823150px;}
.y2ca{bottom:811.157700px;}
.y104{bottom:812.473050px;}
.y202{bottom:815.241900px;}
.y1c6{bottom:817.086150px;}
.y14c{bottom:817.393050px;}
.y297{bottom:817.993050px;}
.y7b{bottom:818.021850px;}
.yb6{bottom:819.599550px;}
.y265{bottom:821.773200px;}
.y192{bottom:821.870700px;}
.y233{bottom:823.420050px;}
.y44{bottom:827.634150px;}
.y2c9{bottom:828.860700px;}
.y10{bottom:829.249200px;}
.y103{bottom:830.695800px;}
.y201{bottom:833.748150px;}
.y1c5{bottom:835.482150px;}
.y14b{bottom:835.537050px;}
.y7a{bottom:836.622600px;}
.yb5{bottom:837.838050px;}
.y264{bottom:839.665200px;}
.y296{bottom:840.389550px;}
.y132{bottom:840.515550px;}
.yeb{bottom:842.090550px;}
.y43{bottom:845.604900px;}
.y2c8{bottom:846.563700px;}
.y232{bottom:847.857300px;}
.y102{bottom:848.918550px;}
.y200{bottom:852.265050px;}
.y14a{bottom:853.681050px;}
.y1c4{bottom:853.878150px;}
.y79{bottom:855.233100px;}
.yb4{bottom:856.076550px;}
.y295{bottom:858.533550px;}
.y131{bottom:859.258050px;}
.yea{bottom:860.329050px;}
.y191{bottom:861.141300px;}
.y263{bottom:861.809700px;}
.y42{bottom:863.575650px;}
.y101{bottom:867.193800px;}
.y2c7{bottom:868.519200px;}
.y1ff{bottom:870.771300px;}
.y149{bottom:871.825050px;}
.y1c3{bottom:872.274150px;}
.y78{bottom:873.833850px;}
.y130{bottom:878.000550px;}
.yb3{bottom:878.567550px;}
.y262{bottom:879.701700px;}
.y294{bottom:880.930050px;}
.y41{bottom:881.546400px;}
.yf{bottom:883.977600px;}
.y100{bottom:885.416550px;}
.y2c6{bottom:886.222200px;}
.y190{bottom:889.223850px;}
.y1fe{bottom:889.282800px;}
.y148{bottom:889.969050px;}
.y1c2{bottom:890.670150px;}
.y231{bottom:891.061800px;}
.y77{bottom:892.434600px;}
.yb2{bottom:896.806050px;}
.y261{bottom:897.593700px;}
.y293{bottom:899.074050px;}
.y40{bottom:899.517150px;}
.y12f{bottom:900.995550px;}
.yff{bottom:903.639300px;}
.y2c5{bottom:903.925200px;}
.ye{bottom:906.500100px;}
.y1fd{bottom:907.846950px;}
.y147{bottom:908.113050px;}
.y1c1{bottom:909.066150px;}
.y230{bottom:909.426300px;}
.y76{bottom:911.035350px;}
.y18f{bottom:911.498850px;}
.yb1{bottom:915.044550px;}
.y260{bottom:915.485700px;}
.y3f{bottom:917.487900px;}
.y12e{bottom:919.738050px;}
.y292{bottom:921.470550px;}
.yfe{bottom:921.862050px;}
.y2c4{bottom:925.880700px;}
.y146{bottom:926.257050px;}
.y1fc{bottom:926.353200px;}
.y1c0{bottom:927.462150px;}
.y22f{bottom:927.790800px;}
.y75{bottom:929.638650px;}
.yb0{bottom:933.283050px;}
.y18e{bottom:933.773850px;}
.y3e{bottom:935.458650px;}
.y25f{bottom:937.630200px;}
.y12d{bottom:938.480550px;}
.y291{bottom:939.614550px;}
.yfd{bottom:940.084800px;}
.ye4{bottom:942.661800px;}
.y2c3{bottom:943.583700px;}
.y145{bottom:944.401050px;}
.y1fb{bottom:944.859450px;}
.y1bf{bottom:945.857550px;}
.yd{bottom:946.021800px;}
.y22e{bottom:946.155300px;}
.y74{bottom:948.241800px;}
.yaf{bottom:951.521550px;}
.y3d{bottom:953.429400px;}
.y25e{bottom:955.522200px;}
.y18d{bottom:956.048850px;}
.y12c{bottom:957.223050px;}
.ye3{bottom:957.660300px;}
.y290{bottom:957.758550px;}
.yfc{bottom:958.307550px;}
.y2c2{bottom:961.286700px;}
.y144{bottom:962.545050px;}
.y1fa{bottom:963.365700px;}
.y1be{bottom:964.250850px;}
.y22d{bottom:964.519800px;}
.y73{bottom:966.849900px;}
.yae{bottom:969.760050px;}
.yc{bottom:976.041300px;}
.yfb{bottom:976.530300px;}
.y25d{bottom:977.666700px;}
.y3c{bottom:977.782050px;}
.y28f{bottom:980.155050px;}
.y12b{bottom:980.218050px;}
.y18c{bottom:980.453550px;}
.y143{bottom:980.689050px;}
.y1f9{bottom:981.871950px;}
.y1bd{bottom:982.646850px;}
.y22c{bottom:982.884300px;}
.y2c1{bottom:983.242200px;}
.y72{bottom:985.450650px;}
.yad{bottom:987.998550px;}
.ye2{bottom:989.652450px;}
.yfa{bottom:994.753050px;}
.y25c{bottom:995.558700px;}
.y189{bottom:997.828050px;}
.y28e{bottom:998.299050px;}
.y142{bottom:998.833050px;}
.y12a{bottom:998.960550px;}
.y18b{bottom:1000.217550px;}
.y1f8{bottom:1000.378200px;}
.y2c0{bottom:1000.945200px;}
.y1bc{bottom:1001.042850px;}
.y22b{bottom:1001.248800px;}
.y71{bottom:1004.051400px;}
.yb{bottom:1006.060800px;}
.yac{bottom:1006.237050px;}
.ye1{bottom:1007.654700px;}
.y18a{bottom:1015.216050px;}
.y28d{bottom:1016.443050px;}
.y141{bottom:1016.977050px;}
.y129{bottom:1017.703050px;}
.y25b{bottom:1017.703200px;}
.y2bf{bottom:1018.648200px;}
.y1f7{bottom:1018.884450px;}
.yf9{bottom:1019.361300px;}
.y1bb{bottom:1019.438850px;}
.y22a{bottom:1019.613300px;}
.y3b{bottom:1020.785100px;}
.y70{bottom:1022.664300px;}
.yab{bottom:1024.475550px;}
.ye0{bottom:1025.656950px;}
.y140{bottom:1035.121050px;}
.y25a{bottom:1035.595200px;}
.y128{bottom:1036.445550px;}
.y1f6{bottom:1037.390700px;}
.y1ba{bottom:1037.834100px;}
.y28c{bottom:1038.839550px;}
.y2be{bottom:1040.603700px;}
.y6f{bottom:1041.265050px;}
.y229{bottom:1042.220100px;}
.yaa{bottom:1042.714050px;}
.y3a{bottom:1043.165850px;}
.ydf{bottom:1043.659200px;}
.y188{bottom:1048.753650px;}
.y13f{bottom:1053.265050px;}
.y127{bottom:1055.188050px;}
.y1f5{bottom:1055.896950px;}
.y1b9{bottom:1056.227550px;}
.y28b{bottom:1056.983550px;}
.y259{bottom:1057.739700px;}
.y2bd{bottom:1058.306700px;}
.y6e{bottom:1059.865800px;}
.y228{bottom:1060.584600px;}
.ya9{bottom:1060.952550px;}
.yf8{bottom:1060.999950px;}
.y39{bottom:1061.283450px;}
.yde{bottom:1061.661450px;}
.y187{bottom:1064.386650px;}
.y13e{bottom:1071.409050px;}
.y126{bottom:1073.930550px;}
.y1f4{bottom:1074.403200px;}
.y1b8{bottom:1074.623550px;}
.y28a{bottom:1075.127550px;}
.y6d{bottom:1078.466550px;}
.y227{bottom:1078.944150px;}
.ya8{bottom:1079.191050px;}
.yf7{bottom:1079.222700px;}
.y38{bottom:1079.411700px;}
.ydd{bottom:1079.663700px;}
.y258{bottom:1079.884200px;}
.y2bc{bottom:1080.262200px;}
.y7{bottom:1081.851000px;}
.y13d{bottom:1089.553050px;}
.y6{bottom:1094.979000px;}
.y125{bottom:1096.925550px;}
.y186{bottom:1097.035950px;}
.y6c{bottom:1097.067300px;}
.y1f3{bottom:1097.161950px;}
.y1b7{bottom:1097.272050px;}
.y226{bottom:1097.303550px;}
.ya7{bottom:1097.429550px;}
.yf6{bottom:1097.445450px;}
.y289{bottom:1097.524050px;}
.y37{bottom:1097.539950px;}
.ydc{bottom:1097.665950px;}
.y257{bottom:1097.776200px;}
.y2bb{bottom:1097.965200px;}
.y16d{bottom:1101.634800px;}
.y9f{bottom:1102.255950px;}
.y5{bottom:1108.107000px;}
.y13c{bottom:1114.081950px;}
.y6b{bottom:1115.668050px;}
.y36{bottom:1115.668200px;}
.y16c{bottom:1117.254300px;}
.y9e{bottom:1117.254450px;}
.y4{bottom:1136.589600px;}
.y3{bottom:1150.833600px;}
.y2{bottom:1150.839600px;}
.y34{bottom:1164.025950px;}
.y1{bottom:1165.083600px;}
.h5{height:29.340000px;}
.h3{height:34.176000px;}
.h4{height:34.230000px;}
.h10{height:38.448000px;}
.h2{height:39.120000px;}
.h1d{height:42.720000px;}
.h1a{height:44.010000px;}
.h20{height:50.436000px;}
.hc{height:51.345000px;}
.h9{height:51.617424px;}
.h8{height:51.619224px;}
.hf{height:53.790000px;}
.ha{height:55.198800px;}
.hb{height:55.536000px;}
.h1e{height:56.028600px;}
.h19{height:57.600000px;}
.h1b{height:60.900000px;}
.h13{height:63.315000px;}
.h15{height:63.315600px;}
.he{height:63.320400px;}
.h2c{height:63.324000px;}
.h18{height:63.325800px;}
.h14{height:63.329400px;}
.h17{height:63.334800px;}
.h16{height:63.335400px;}
.h11{height:63.345000px;}
.h26{height:63.347400px;}
.h2a{height:63.350400px;}
.h22{height:63.351600px;}
.h23{height:63.352200px;}
.hd{height:63.355200px;}
.h25{height:63.355800px;}
.h12{height:63.357600px;}
.h21{height:63.359400px;}
.h2b{height:63.361200px;}
.h2e{height:63.364800px;}
.h2d{height:63.365400px;}
.h24{height:63.380400px;}
.h2f{height:63.385800px;}
.h1f{height:68.472000px;}
.h7{height:72.000000px;}
.h29{height:72.846000px;}
.h1c{height:87.240000px;}
.h6{height:89.712000px;}
.h27{height:98.490000px;}
.h28{height:98.496000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:105.026550px;}
.x1{left:106.299150px;}
.x22{left:107.480550px;}
.x24{left:111.539400px;}
.x26{left:116.115900px;}
.x25{left:117.524400px;}
.xc{left:118.714950px;}
.xb{left:123.484950px;}
.x9{left:126.069750px;}
.x40{left:127.292400px;}
.x39{left:129.426300px;}
.x15{left:130.990200px;}
.x13{left:132.219600px;}
.x7{left:133.306650px;}
.xa{left:134.543250px;}
.x3a{left:138.835950px;}
.x47{left:139.925100px;}
.x48{left:142.004100px;}
.x41{left:145.179900px;}
.x8{left:146.733750px;}
.x2{left:161.786550px;}
.x2f{left:164.145600px;}
.x2e{left:165.347100px;}
.x3{left:166.532550px;}
.x1b{left:175.265250px;}
.x33{left:185.835900px;}
.x2c{left:190.285350px;}
.x20{left:193.895400px;}
.x36{left:199.322400px;}
.x31{left:201.123750px;}
.x38{left:214.055250px;}
.x30{left:215.366250px;}
.x2b{left:218.335650px;}
.x37{left:220.386750px;}
.x1e{left:224.036850px;}
.x29{left:225.763050px;}
.x18{left:229.639050px;}
.x3f{left:241.710450px;}
.x21{left:250.772850px;}
.x51{left:254.027100px;}
.x4{left:259.225200px;}
.x3e{left:260.497950px;}
.x5{left:263.971200px;}
.x4c{left:268.040100px;}
.xf{left:275.881950px;}
.x27{left:279.203400px;}
.x4b{left:281.985600px;}
.x6{left:286.396650px;}
.x23{left:290.179800px;}
.x2a{left:296.227500px;}
.x3b{left:309.907950px;}
.x42{left:311.364900px;}
.x1f{left:318.104850px;}
.x32{left:322.927050px;}
.x28{left:325.848150px;}
.x2d{left:339.700350px;}
.x11{left:345.022800px;}
.x34{left:349.334400px;}
.xe{left:351.490500px;}
.x10{left:353.829150px;}
.x1c{left:366.911250px;}
.xd{left:371.275650px;}
.x16{left:384.698250px;}
.x17{left:387.029100px;}
.x12{left:388.845450px;}
.x1d{left:399.077550px;}
.x43{left:442.868400px;}
.x44{left:455.706900px;}
.x52{left:461.211600px;}
.x4d{left:464.303100px;}
.x35{left:519.879900px;}
.x4f{left:533.301600px;}
.x4e{left:537.459600px;}
.x19{left:542.634150px;}
.x4a{left:544.520100px;}
.x54{left:546.734100px;}
.x55{left:548.057100px;}
.x46{left:553.700100px;}
.x49{left:560.625600px;}
.x53{left:562.677600px;}
.x3d{left:578.341950px;}
.x3c{left:619.854450px;}
.x45{left:698.926350px;}
.x50{left:725.960100px;}
.x1a{left:760.923750px;}
@media print{
.v3{vertical-align:-10.640000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.640000pt;}
.v7{vertical-align:16.000533pt;}
.v5{vertical-align:17.760000pt;}
.v4{vertical-align:18.657067pt;}
.v1{vertical-align:20.424533pt;}
.v8{vertical-align:26.688000pt;}
.v6{vertical-align:39.573333pt;}
.v9{vertical-align:53.370667pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.504000pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.326480pt;}
.lsb{letter-spacing:-0.280000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.195888pt;}
.lsf{letter-spacing:-0.163240pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.065296pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000221pt;}
.ls10{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.018133pt;}
.ls5{letter-spacing:6.328000pt;}
.ls12{letter-spacing:297.456000pt;}
.ls0{letter-spacing:1108.953600pt;}
.wsd0{word-spacing:-18.581333pt;}
.ws3{word-spacing:-14.504000pt;}
.ws20{word-spacing:-14.392000pt;}
.ws94{word-spacing:-14.293333pt;}
.wsb5{word-spacing:-14.224000pt;}
.ws1e{word-spacing:-14.168000pt;}
.wse0{word-spacing:-14.000000pt;}
.ws4d{word-spacing:-13.944000pt;}
.ws93{word-spacing:-13.813333pt;}
.wsaf{word-spacing:-12.864000pt;}
.wsad{word-spacing:-12.432000pt;}
.ws0{word-spacing:-11.050667pt;}
.ws1{word-spacing:-9.582965pt;}
.ws2{word-spacing:-9.261149pt;}
.ws4{word-spacing:-8.455832pt;}
.ws21{word-spacing:-8.390536pt;}
.ws95{word-spacing:-8.333013pt;}
.wsb6{word-spacing:-8.292592pt;}
.ws1f{word-spacing:-8.259944pt;}
.ws4e{word-spacing:-8.129352pt;}
.wsb1{word-spacing:-7.499712pt;}
.wsae{word-spacing:-7.247856pt;}
.wsd3{word-spacing:-5.432000pt;}
.ws100{word-spacing:-5.376000pt;}
.wsf1{word-spacing:-4.984000pt;}
.wsf5{word-spacing:-4.760000pt;}
.wsf6{word-spacing:-4.592000pt;}
.ws8b{word-spacing:-4.088000pt;}
.wse4{word-spacing:-3.920000pt;}
.ws53{word-spacing:-3.808000pt;}
.wse5{word-spacing:-3.752000pt;}
.wse8{word-spacing:-3.696000pt;}
.wse3{word-spacing:-3.528000pt;}
.ws8f{word-spacing:-3.472000pt;}
.wse7{word-spacing:-3.080000pt;}
.wsf{word-spacing:-2.912000pt;}
.ws2c{word-spacing:-2.800000pt;}
.ws54{word-spacing:-2.744000pt;}
.ws72{word-spacing:-2.688000pt;}
.ws55{word-spacing:-2.632000pt;}
.ws6f{word-spacing:-2.576000pt;}
.ws40{word-spacing:-2.520000pt;}
.ws9e{word-spacing:-2.464000pt;}
.ws82{word-spacing:-2.408000pt;}
.ws13{word-spacing:-2.352000pt;}
.ws48{word-spacing:-2.296000pt;}
.ws49{word-spacing:-2.240000pt;}
.ws47{word-spacing:-2.184000pt;}
.ws19{word-spacing:-2.133333pt;}
.ws25{word-spacing:-2.128000pt;}
.ws4b{word-spacing:-2.072000pt;}
.ws9d{word-spacing:-2.016000pt;}
.ws8e{word-spacing:-1.960000pt;}
.ws57{word-spacing:-1.904000pt;}
.ws41{word-spacing:-1.848000pt;}
.ws2d{word-spacing:-1.792000pt;}
.wsb7{word-spacing:-1.736000pt;}
.ws69{word-spacing:-1.680000pt;}
.ws6d{word-spacing:-1.624000pt;}
.wsc1{word-spacing:-1.568000pt;}
.ws7b{word-spacing:-1.512000pt;}
.wsc7{word-spacing:-1.456000pt;}
.ws70{word-spacing:-1.400000pt;}
.ws8c{word-spacing:-1.344000pt;}
.ws7c{word-spacing:-1.288000pt;}
.ws9c{word-spacing:-1.232000pt;}
.ws11{word-spacing:-1.176000pt;}
.ws4c{word-spacing:-1.120000pt;}
.ws68{word-spacing:-1.064000pt;}
.ws17{word-spacing:-1.008000pt;}
.ws43{word-spacing:-0.952000pt;}
.ws56{word-spacing:-0.896000pt;}
.ws9f{word-spacing:-0.840000pt;}
.ws1b{word-spacing:-0.810667pt;}
.ws80{word-spacing:-0.784000pt;}
.ws16{word-spacing:-0.728000pt;}
.ws91{word-spacing:-0.672000pt;}
.ws76{word-spacing:-0.616000pt;}
.ws1c{word-spacing:-0.597333pt;}
.ws7d{word-spacing:-0.560000pt;}
.ws81{word-spacing:-0.504000pt;}
.wsa0{word-spacing:-0.448000pt;}
.ws52{word-spacing:-0.392000pt;}
.ws4f{word-spacing:-0.336000pt;}
.ws3a{word-spacing:-0.280000pt;}
.ws6a{word-spacing:-0.256000pt;}
.ws7f{word-spacing:-0.224000pt;}
.wsca{word-spacing:-0.192000pt;}
.ws5f{word-spacing:-0.168000pt;}
.ws7a{word-spacing:-0.112000pt;}
.ws67{word-spacing:-0.056000pt;}
.ws5{word-spacing:0.000000pt;}
.ws83{word-spacing:0.056000pt;}
.ws28{word-spacing:0.112000pt;}
.ws1a{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.224000pt;}
.wsac{word-spacing:0.280000pt;}
.ws77{word-spacing:0.336000pt;}
.ws31{word-spacing:0.392000pt;}
.ws1d{word-spacing:0.426667pt;}
.wsa4{word-spacing:0.448000pt;}
.ws98{word-spacing:0.504000pt;}
.wscc{word-spacing:0.560000pt;}
.ws42{word-spacing:0.616000pt;}
.ws24{word-spacing:0.672000pt;}
.ws75{word-spacing:0.728000pt;}
.ws90{word-spacing:0.784000pt;}
.ws8{word-spacing:0.810667pt;}
.ws59{word-spacing:0.840000pt;}
.ws74{word-spacing:0.896000pt;}
.ws29{word-spacing:0.952000pt;}
.ws3d{word-spacing:1.008000pt;}
.ws32{word-spacing:1.064000pt;}
.ws6b{word-spacing:1.109333pt;}
.ws6e{word-spacing:1.120000pt;}
.ws66{word-spacing:1.176000pt;}
.ws39{word-spacing:1.232000pt;}
.ws30{word-spacing:1.288000pt;}
.ws60{word-spacing:1.344000pt;}
.ws65{word-spacing:1.400000pt;}
.ws38{word-spacing:1.456000pt;}
.ws2b{word-spacing:1.512000pt;}
.ws2a{word-spacing:1.568000pt;}
.ws37{word-spacing:1.624000pt;}
.ws7e{word-spacing:1.680000pt;}
.ws3f{word-spacing:1.736000pt;}
.ws3e{word-spacing:1.792000pt;}
.ws73{word-spacing:1.848000pt;}
.ws61{word-spacing:1.904000pt;}
.wsb8{word-spacing:1.960000pt;}
.ws5c{word-spacing:2.016000pt;}
.ws33{word-spacing:2.072000pt;}
.wse{word-spacing:2.128000pt;}
.ws9b{word-spacing:2.184000pt;}
.wsa5{word-spacing:2.218667pt;}
.wsaa{word-spacing:2.240000pt;}
.ws5b{word-spacing:2.296000pt;}
.ws71{word-spacing:2.352000pt;}
.ws26{word-spacing:2.408000pt;}
.wsab{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.520000pt;}
.ws4a{word-spacing:2.576000pt;}
.ws9a{word-spacing:2.632000pt;}
.ws84{word-spacing:2.688000pt;}
.ws3c{word-spacing:2.744000pt;}
.ws86{word-spacing:2.800000pt;}
.ws35{word-spacing:2.856000pt;}
.ws7{word-spacing:2.858667pt;}
.ws2e{word-spacing:2.912000pt;}
.ws6{word-spacing:2.944000pt;}
.ws2f{word-spacing:2.968000pt;}
.ws5a{word-spacing:3.024000pt;}
.ws64{word-spacing:3.080000pt;}
.wsc8{word-spacing:3.136000pt;}
.wsa2{word-spacing:3.192000pt;}
.ws10{word-spacing:3.248000pt;}
.ws18{word-spacing:3.304000pt;}
.wsa8{word-spacing:3.360000pt;}
.ws87{word-spacing:3.416000pt;}
.wsce{word-spacing:3.472000pt;}
.wsd1{word-spacing:3.528000pt;}
.wsd4{word-spacing:3.584000pt;}
.wsbe{word-spacing:3.696000pt;}
.wscd{word-spacing:3.752000pt;}
.ws46{word-spacing:3.808000pt;}
.ws92{word-spacing:3.864000pt;}
.wsa3{word-spacing:3.920000pt;}
.ws45{word-spacing:3.976000pt;}
.wscb{word-spacing:4.088000pt;}
.ws85{word-spacing:4.200000pt;}
.ws5e{word-spacing:4.256000pt;}
.wsb{word-spacing:4.312000pt;}
.ws99{word-spacing:4.368000pt;}
.ws14{word-spacing:4.480000pt;}
.ws22{word-spacing:4.536000pt;}
.wsea{word-spacing:4.592000pt;}
.ws79{word-spacing:4.648000pt;}
.ws27{word-spacing:4.760000pt;}
.wsfc{word-spacing:4.816000pt;}
.ws63{word-spacing:4.872000pt;}
.wscf{word-spacing:4.984000pt;}
.ws34{word-spacing:5.040000pt;}
.ws36{word-spacing:5.096000pt;}
.wsc9{word-spacing:5.152000pt;}
.wsbf{word-spacing:5.208000pt;}
.wsa9{word-spacing:5.264000pt;}
.wsa1{word-spacing:5.320000pt;}
.wsc0{word-spacing:5.376000pt;}
.ws103{word-spacing:5.488000pt;}
.ws97{word-spacing:5.544000pt;}
.ws62{word-spacing:5.600000pt;}
.ws51{word-spacing:5.656000pt;}
.wse6{word-spacing:5.712000pt;}
.wsf2{word-spacing:5.768000pt;}
.ws5d{word-spacing:5.880000pt;}
.wsc{word-spacing:6.104000pt;}
.ws58{word-spacing:6.160000pt;}
.wsc6{word-spacing:6.216000pt;}
.wsde{word-spacing:6.328000pt;}
.wsbd{word-spacing:6.384000pt;}
.wsdf{word-spacing:6.440000pt;}
.ws78{word-spacing:6.496000pt;}
.wsda{word-spacing:6.608000pt;}
.ws23{word-spacing:6.664000pt;}
.wse1{word-spacing:6.832000pt;}
.wsf8{word-spacing:6.888000pt;}
.ws44{word-spacing:7.000000pt;}
.wsbc{word-spacing:7.056000pt;}
.wsf9{word-spacing:7.112000pt;}
.ws88{word-spacing:7.168000pt;}
.ws101{word-spacing:7.224000pt;}
.wsd2{word-spacing:7.280000pt;}
.ws50{word-spacing:7.392000pt;}
.ws12{word-spacing:7.448000pt;}
.wsd5{word-spacing:7.504000pt;}
.wse9{word-spacing:7.728000pt;}
.wsdd{word-spacing:7.952000pt;}
.wsd9{word-spacing:8.120000pt;}
.ws15{word-spacing:8.176000pt;}
.wsdc{word-spacing:8.232000pt;}
.ws89{word-spacing:8.400000pt;}
.ws8a{word-spacing:8.456000pt;}
.wsf0{word-spacing:8.960000pt;}
.wsfe{word-spacing:9.240000pt;}
.wsdb{word-spacing:9.296000pt;}
.wsfd{word-spacing:9.408000pt;}
.wsff{word-spacing:9.576000pt;}
.ws8d{word-spacing:9.632000pt;}
.wsd{word-spacing:9.744000pt;}
.wsef{word-spacing:9.968000pt;}
.wsee{word-spacing:10.304000pt;}
.wsf4{word-spacing:11.368000pt;}
.wsf3{word-spacing:11.816000pt;}
.ws102{word-spacing:12.264000pt;}
.wse2{word-spacing:12.992000pt;}
.wsd7{word-spacing:13.608000pt;}
.wsd6{word-spacing:14.056000pt;}
.wsd8{word-spacing:14.504000pt;}
.wseb{word-spacing:14.560000pt;}
.wsed{word-spacing:17.192000pt;}
.wsf7{word-spacing:17.248000pt;}
.wsec{word-spacing:17.808000pt;}
.wsfb{word-spacing:17.976000pt;}
.wsfa{word-spacing:18.592000pt;}
.wsbb{word-spacing:147.984000pt;}
.wsba{word-spacing:148.368000pt;}
.wsc4{word-spacing:152.544000pt;}
.wsb9{word-spacing:163.536000pt;}
.wsb2{word-spacing:164.208000pt;}
.wsb3{word-spacing:175.968000pt;}
.wsb4{word-spacing:177.312000pt;}
.wsa6{word-spacing:188.352000pt;}
.wsa7{word-spacing:195.504000pt;}
.wsb0{word-spacing:227.472000pt;}
.wsc2{word-spacing:232.896000pt;}
.wsc5{word-spacing:269.616000pt;}
.wsc3{word-spacing:314.832000pt;}
.wsa{word-spacing:438.554667pt;}
.ws9{word-spacing:445.312000pt;}
.ws96{word-spacing:1108.368000pt;}
._5{margin-left:-445.312000pt;}
._6{margin-left:-438.592000pt;}
._13{margin-left:-33.152000pt;}
._1c{margin-left:-18.984000pt;}
._15{margin-left:-17.304000pt;}
._1d{margin-left:-16.016000pt;}
._56{margin-left:-12.885600pt;}
._11{margin-left:-11.784267pt;}
._12{margin-left:-10.517112pt;}
._57{margin-left:-9.333333pt;}
._8{margin-left:-8.149333pt;}
._f{margin-left:-6.720000pt;}
._e{margin-left:-5.422933pt;}
._2{margin-left:-4.288000pt;}
._4{margin-left:-2.986667pt;}
._7{margin-left:-1.866667pt;}
._3{margin-left:-0.904533pt;}
._a{width:0.920000pt;}
._55{width:2.072000pt;}
._58{width:5.730667pt;}
._10{width:7.018667pt;}
._d{width:12.160000pt;}
._c{width:14.592000pt;}
._b{width:16.682667pt;}
._14{width:19.992000pt;}
._9{width:49.120445pt;}
._49{width:111.696000pt;}
._53{width:119.664000pt;}
._42{width:136.464000pt;}
._45{width:137.424000pt;}
._48{width:144.384000pt;}
._47{width:146.496000pt;}
._4a{width:153.216000pt;}
._4c{width:158.928000pt;}
._4f{width:161.280000pt;}
._3e{width:166.080000pt;}
._3c{width:169.453216pt;}
._50{width:171.072000pt;}
._2b{width:174.384000pt;}
._22{width:183.626667pt;}
._4d{width:185.470933pt;}
._2a{width:188.592000pt;}
._2d{width:189.696000pt;}
._2e{width:190.992000pt;}
._28{width:192.192000pt;}
._34{width:195.504000pt;}
._32{width:197.873483pt;}
._27{width:200.544000pt;}
._37{width:201.600000pt;}
._3a{width:203.376000pt;}
._38{width:205.536000pt;}
._46{width:207.120000pt;}
._30{width:209.952000pt;}
._54{width:211.824000pt;}
._24{width:213.360000pt;}
._21{width:214.986667pt;}
._26{width:216.912000pt;}
._20{width:221.653333pt;}
._33{width:223.728000pt;}
._41{width:233.376000pt;}
._31{width:243.987200pt;}
._39{width:246.864000pt;}
._51{width:252.096000pt;}
._4b{width:262.848000pt;}
._44{width:264.960000pt;}
._3b{width:267.120000pt;}
._2c{width:272.352000pt;}
._35{width:274.128000pt;}
._36{width:275.328000pt;}
._43{width:283.042784pt;}
._25{width:284.688000pt;}
._40{width:290.160000pt;}
._29{width:294.672000pt;}
._3f{width:297.072000pt;}
._52{width:303.160533pt;}
._4e{width:304.936533pt;}
._1e{width:307.306667pt;}
._17{width:315.498667pt;}
._3d{width:336.624000pt;}
._1f{width:383.893333pt;}
._19{width:428.928000pt;}
._16{width:441.013333pt;}
._18{width:451.248000pt;}
._23{width:484.800000pt;}
._2f{width:519.886933pt;}
._1b{width:556.840533pt;}
._1a{width:634.272000pt;}
._0{width:1035.477333pt;}
._1{width:1453.226667pt;}
.fsf{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fs2{font-size:32.000000pt;}
.fs9{font-size:32.648000pt;}
.fs6{font-size:35.757333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fsc{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:72.809867pt;}
.ya{bottom:73.699867pt;}
.y35{bottom:75.629733pt;}
.y9{bottom:84.923867pt;}
.y8{bottom:97.224133pt;}
.y256{bottom:120.758933pt;}
.y9d{bottom:120.858800pt;}
.y288{bottom:120.905067pt;}
.y185{bottom:120.943200pt;}
.y1f2{bottom:120.943600pt;}
.y32{bottom:120.944933pt;}
.y13b{bottom:120.947600pt;}
.y225{bottom:120.949600pt;}
.y124{bottom:120.951600pt;}
.yf5{bottom:120.952933pt;}
.y1b6{bottom:120.972933pt;}
.y6a{bottom:120.976400pt;}
.ydb{bottom:121.007333pt;}
.y16b{bottom:121.007867pt;}
.y2ba{bottom:121.044933pt;}
.ya6{bottom:121.406800pt;}
.ye9{bottom:122.010667pt;}
.y31{bottom:132.944933pt;}
.y287{bottom:136.809067pt;}
.y255{bottom:136.816933pt;}
.y69{bottom:136.950400pt;}
.y16a{bottom:137.135867pt;}
.y123{bottom:137.149600pt;}
.yf4{bottom:137.164933pt;}
.y2b9{bottom:137.172933pt;}
.yda{bottom:137.219333pt;}
.y1f1{bottom:137.295600pt;}
.y224{bottom:137.446800pt;}
.y184{bottom:137.483333pt;}
.y9c{bottom:137.532800pt;}
.y1b5{bottom:137.534933pt;}
.ye8{bottom:138.012667pt;}
.ya5{bottom:138.516133pt;}
.y13a{bottom:138.718267pt;}
.y30{bottom:144.944933pt;}
.ya4{bottom:149.182800pt;}
.y139{bottom:151.379600pt;}
.y254{bottom:152.874933pt;}
.y68{bottom:152.924400pt;}
.y169{bottom:153.263867pt;}
.y2b8{bottom:153.300933pt;}
.yf3{bottom:153.376933pt;}
.yd9{bottom:153.431333pt;}
.y1f0{bottom:153.647067pt;}
.y223{bottom:153.896800pt;}
.ye7{bottom:154.014667pt;}
.y183{bottom:154.031333pt;}
.y1b4{bottom:154.096933pt;}
.y9b{bottom:154.206800pt;}
.y286{bottom:156.493067pt;}
.y2f{bottom:156.944933pt;}
.ya3{bottom:159.849467pt;}
.y122{bottom:166.582667pt;}
.y67{bottom:168.898400pt;}
.y2e{bottom:168.944933pt;}
.y168{bottom:169.391867pt;}
.y2b7{bottom:169.428933pt;}
.yf2{bottom:169.588933pt;}
.yd8{bottom:169.643333pt;}
.y1ef{bottom:169.995467pt;}
.y222{bottom:170.346800pt;}
.y182{bottom:170.579333pt;}
.y1b3{bottom:170.658933pt;}
.y9a{bottom:170.880800pt;}
.y285{bottom:172.397067pt;}
.y253{bottom:172.712933pt;}
.ye6{bottom:175.684133pt;}
.y2d{bottom:180.944933pt;}
.y66{bottom:184.872400pt;}
.y167{bottom:185.519867pt;}
.yf1{bottom:185.800933pt;}
.yd7{bottom:185.855333pt;}
.y1ee{bottom:186.347467pt;}
.y221{bottom:186.796800pt;}
.y181{bottom:187.127333pt;}
.y1b2{bottom:187.220933pt;}
.y99{bottom:187.554800pt;}
.y284{bottom:188.301067pt;}
.y252{bottom:188.770933pt;}
.y2b6{bottom:189.336933pt;}
.y2c{bottom:192.944933pt;}
.y121{bottom:196.477067pt;}
.y65{bottom:200.846400pt;}
.y166{bottom:201.647867pt;}
.yf0{bottom:202.012933pt;}
.yd6{bottom:202.067333pt;}
.y1ed{bottom:202.699467pt;}
.y220{bottom:203.246800pt;}
.y180{bottom:203.675333pt;}
.y1b1{bottom:203.782933pt;}
.y98{bottom:204.228800pt;}
.y2b{bottom:204.944933pt;}
.y2b5{bottom:205.464933pt;}
.y283{bottom:207.985067pt;}
.y251{bottom:208.608933pt;}
.ye5{bottom:212.471467pt;}
.y120{bottom:216.277067pt;}
.y64{bottom:216.820400pt;}
.y2a{bottom:216.944933pt;}
.y165{bottom:217.775867pt;}
.yef{bottom:218.224933pt;}
.y1ec{bottom:219.051467pt;}
.y21f{bottom:219.696800pt;}
.y17f{bottom:220.221733pt;}
.y1b0{bottom:220.344933pt;}
.y97{bottom:220.902800pt;}
.yd5{bottom:222.059333pt;}
.y282{bottom:223.889067pt;}
.y250{bottom:224.666933pt;}
.y2b4{bottom:225.372933pt;}
.y63{bottom:232.808267pt;}
.y164{bottom:233.903867pt;}
.yee{bottom:234.436933pt;}
.y1eb{bottom:235.403467pt;}
.y11f{bottom:236.077067pt;}
.y21e{bottom:236.146800pt;}
.y17e{bottom:236.768267pt;}
.y1af{bottom:236.911067pt;}
.y96{bottom:237.576800pt;}
.yd4{bottom:238.271333pt;}
.y281{bottom:239.793067pt;}
.y24f{bottom:240.724933pt;}
.y2b3{bottom:241.500933pt;}
.y62{bottom:248.782267pt;}
.y163{bottom:250.031867pt;}
.y1ea{bottom:251.755467pt;}
.y21d{bottom:252.596800pt;}
.y17d{bottom:253.313067pt;}
.y1ae{bottom:253.582267pt;}
.y95{bottom:254.250800pt;}
.yd3{bottom:254.483333pt;}
.y29{bottom:255.400000pt;}
.y280{bottom:255.697067pt;}
.y11e{bottom:255.877067pt;}
.y2b2{bottom:257.628933pt;}
.y24e{bottom:260.562933pt;}
.yed{bottom:263.878400pt;}
.y61{bottom:264.756267pt;}
.y162{bottom:266.159867pt;}
.y1e9{bottom:268.106267pt;}
.y21c{bottom:269.046800pt;}
.y17c{bottom:269.861067pt;}
.y1ad{bottom:270.144267pt;}
.yd2{bottom:270.695333pt;}
.y94{bottom:270.924800pt;}
.y28{bottom:271.416000pt;}
.y2b1{bottom:273.756933pt;}
.y27f{bottom:275.381067pt;}
.y11d{bottom:275.677067pt;}
.y24d{bottom:276.620933pt;}
.y60{bottom:280.730267pt;}
.y161{bottom:282.312000pt;}
.y1e8{bottom:284.458267pt;}
.y21b{bottom:285.496800pt;}
.y17b{bottom:286.409067pt;}
.y1ac{bottom:286.706267pt;}
.yd1{bottom:286.907333pt;}
.y27{bottom:287.432000pt;}
.y2b0{bottom:289.884933pt;}
.y27e{bottom:291.285067pt;}
.y93{bottom:291.378800pt;}
.y11c{bottom:295.477067pt;}
.y24c{bottom:296.458933pt;}
.y5f{bottom:296.704267pt;}
.y160{bottom:298.440000pt;}
.y1e7{bottom:300.810267pt;}
.y21a{bottom:301.946800pt;}
.yd0{bottom:303.119333pt;}
.y1ab{bottom:303.268267pt;}
.y26{bottom:303.448000pt;}
.y92{bottom:308.052800pt;}
.y2af{bottom:309.792933pt;}
.y27d{bottom:310.969067pt;}
.y11b{bottom:315.275467pt;}
.y17a{bottom:316.183867pt;}
.y24b{bottom:316.296933pt;}
.y5e{bottom:316.458267pt;}
.y15f{bottom:317.410000pt;}
.ycf{bottom:319.331333pt;}
.y25{bottom:319.464000pt;}
.y1aa{bottom:319.830267pt;}
.y219{bottom:324.070800pt;}
.y91{bottom:324.726800pt;}
.y27c{bottom:326.873067pt;}
.y2ae{bottom:329.700933pt;}
.y1e6{bottom:330.390000pt;}
.y24a{bottom:332.354933pt;}
.y5d{bottom:332.439467pt;}
.y15e{bottom:333.538000pt;}
.yce{bottom:335.543333pt;}
.y1a9{bottom:336.392267pt;}
.y179{bottom:339.255467pt;}
.y24{bottom:341.148933pt;}
.y90{bottom:341.400800pt;}
.y11a{bottom:345.664800pt;}
.y2ad{bottom:345.828933pt;}
.y27b{bottom:346.557067pt;}
.y249{bottom:348.412933pt;}
.y5c{bottom:348.413467pt;}
.y15d{bottom:349.666000pt;}
.ycd{bottom:351.755333pt;}
.y1a8{bottom:352.954267pt;}
.y1e4{bottom:353.942400pt;}
.y1e5{bottom:353.954400pt;}
.y178{bottom:357.159467pt;}
.y8f{bottom:358.074800pt;}
.y2ac{bottom:361.956933pt;}
.y27a{bottom:362.461067pt;}
.y218{bottom:362.750000pt;}
.y2df{bottom:364.113067pt;}
.y5b{bottom:364.397600pt;}
.y15c{bottom:365.800267pt;}
.y1e3{bottom:367.274400pt;}
.ycc{bottom:367.967333pt;}
.y248{bottom:368.250933pt;}
.y1a7{bottom:369.516267pt;}
.y119{bottom:374.360933pt;}
.y8e{bottom:374.748800pt;}
.y177{bottom:375.063467pt;}
.y2ab{bottom:378.084933pt;}
.y217{bottom:379.200000pt;}
.y23{bottom:379.284000pt;}
.y2de{bottom:379.849067pt;}
.y5a{bottom:380.368400pt;}
.y15b{bottom:381.940800pt;}
.y279{bottom:382.145067pt;}
.ycb{bottom:384.179333pt;}
.y247{bottom:384.308933pt;}
.y1a6{bottom:386.078267pt;}
.y1e2{bottom:386.402400pt;}
.y118{bottom:390.558933pt;}
.y8d{bottom:391.422800pt;}
.y176{bottom:392.967467pt;}
.y1df{bottom:393.062400pt;}
.y2dd{bottom:395.585067pt;}
.y216{bottom:395.650000pt;}
.y59{bottom:396.353067pt;}
.y2aa{bottom:397.992933pt;}
.y278{bottom:398.049067pt;}
.y15a{bottom:398.068800pt;}
.y22{bottom:399.080000pt;}
.y1e1{bottom:399.734400pt;}
.y246{bottom:400.366933pt;}
.yca{bottom:400.391333pt;}
.y1a5{bottom:402.640267pt;}
.y1de{bottom:406.394400pt;}
.y117{bottom:406.756933pt;}
.y8c{bottom:408.096800pt;}
.y175{bottom:410.882800pt;}
.y215{bottom:412.100000pt;}
.y58{bottom:412.327067pt;}
.y1e0{bottom:413.066400pt;}
.y2a9{bottom:414.120933pt;}
.y159{bottom:414.196800pt;}
.y21{bottom:415.094800pt;}
.y2dc{bottom:415.101067pt;}
.y245{bottom:416.424933pt;}
.yc9{bottom:416.724933pt;}
.y277{bottom:417.733067pt;}
.y116{bottom:422.954933pt;}
.y1a4{bottom:422.982267pt;}
.y8b{bottom:424.770800pt;}
.y57{bottom:428.301067pt;}
.y214{bottom:428.550000pt;}
.y173{bottom:428.786800pt;}
.y2db{bottom:430.837067pt;}
.y20{bottom:431.110800pt;}
.y1dd{bottom:432.194400pt;}
.yc8{bottom:432.936933pt;}
.y276{bottom:433.637067pt;}
.y2a8{bottom:434.028933pt;}
.y172{bottom:435.446800pt;}
.y158{bottom:436.000400pt;}
.y244{bottom:436.262933pt;}
.y1da{bottom:438.854400pt;}
.y115{bottom:439.152933pt;}
.y1a3{bottom:439.544267pt;}
.y8a{bottom:441.444800pt;}
.y174{bottom:442.118800pt;}
.y56{bottom:444.285600pt;}
.y213{bottom:445.000000pt;}
.y1dc{bottom:445.526400pt;}
.y1f{bottom:447.126800pt;}
.y2a7{bottom:450.156933pt;}
.y2da{bottom:450.353067pt;}
.y1d9{bottom:452.186400pt;}
.y243{bottom:452.320933pt;}
.yc7{bottom:452.928933pt;}
.y275{bottom:453.321067pt;}
.y114{bottom:455.350933pt;}
.y1a2{bottom:456.106267pt;}
.y1db{bottom:458.858400pt;}
.y55{bottom:460.259600pt;}
.y212{bottom:461.450000pt;}
.y1e{bottom:463.140533pt;}
.y89{bottom:463.783600pt;}
.y2d9{bottom:466.089067pt;}
.y2a6{bottom:466.284933pt;}
.y171{bottom:469.065600pt;}
.yc6{bottom:469.140933pt;}
.y274{bottom:469.225067pt;}
.y113{bottom:471.635200pt;}
.y242{bottom:472.158933pt;}
.y1a1{bottom:472.668267pt;}
.y54{bottom:476.233600pt;}
.y211{bottom:477.900000pt;}
.y1d7{bottom:477.962400pt;}
.y1d8{bottom:477.974400pt;}
.y1d{bottom:479.156533pt;}
.y170{bottom:482.949600pt;}
.y157{bottom:484.260667pt;}
.y273{bottom:485.129067pt;}
.yc5{bottom:485.352933pt;}
.y2d8{bottom:485.605067pt;}
.y88{bottom:486.122400pt;}
.y2a5{bottom:486.192933pt;}
.y112{bottom:487.833200pt;}
.y241{bottom:488.216933pt;}
.y1a0{bottom:489.230267pt;}
.y1d6{bottom:491.294400pt;}
.y53{bottom:492.284800pt;}
.y210{bottom:494.350000pt;}
.y1c{bottom:495.172533pt;}
.y2d7{bottom:501.341067pt;}
.yc4{bottom:501.564933pt;}
.y2a4{bottom:502.320933pt;}
.y111{bottom:504.031200pt;}
.y240{bottom:504.274933pt;}
.y272{bottom:504.813067pt;}
.y19f{bottom:505.792267pt;}
.y16f{bottom:508.163333pt;}
.y52{bottom:508.258800pt;}
.y1d4{bottom:510.398400pt;}
.y1d5{bottom:510.410400pt;}
.y156{bottom:510.697867pt;}
.y20f{bottom:510.800000pt;}
.y1b{bottom:511.188533pt;}
.y2d6{bottom:517.077067pt;}
.yc3{bottom:517.776933pt;}
.y2a3{bottom:518.448933pt;}
.y110{bottom:520.229200pt;}
.y271{bottom:520.717067pt;}
.y1d3{bottom:523.730400pt;}
.y23f{bottom:524.112933pt;}
.y51{bottom:524.232800pt;}
.y87{bottom:524.938267pt;}
.y16e{bottom:525.827333pt;}
.y19e{bottom:526.134267pt;}
.y1a{bottom:527.204533pt;}
.y20e{bottom:527.250000pt;}
.y155{bottom:532.381867pt;}
.yc2{bottom:533.988933pt;}
.y10f{bottom:536.427200pt;}
.y2d5{bottom:536.593067pt;}
.y270{bottom:536.621067pt;}
.y2a2{bottom:538.356933pt;}
.y23e{bottom:540.170933pt;}
.y50{bottom:540.206800pt;}
.y86{bottom:541.472267pt;}
.y19d{bottom:542.696267pt;}
.y1d2{bottom:542.846400pt;}
.y19{bottom:543.220533pt;}
.y20d{bottom:543.700000pt;}
.yc1{bottom:550.200933pt;}
.y2d4{bottom:552.329067pt;}
.y10e{bottom:552.625200pt;}
.y154{bottom:554.065867pt;}
.y2a1{bottom:554.484933pt;}
.y1d1{bottom:556.178400pt;}
.y4f{bottom:556.180800pt;}
.y23d{bottom:556.228933pt;}
.y26f{bottom:556.305067pt;}
.y85{bottom:558.006267pt;}
.y18{bottom:559.236533pt;}
.y19c{bottom:559.258267pt;}
.y20c{bottom:560.150000pt;}
.yc0{bottom:566.412933pt;}
.y2d3{bottom:568.065067pt;}
.y2a0{bottom:570.612933pt;}
.y4e{bottom:572.154800pt;}
.y26e{bottom:572.209067pt;}
.y10d{bottom:572.603200pt;}
.y84{bottom:574.540267pt;}
.y1cf{bottom:575.282400pt;}
.y1d0{bottom:575.294400pt;}
.y153{bottom:575.749867pt;}
.y19b{bottom:575.820267pt;}
.y23c{bottom:576.066933pt;}
.y20b{bottom:576.600000pt;}
.y17{bottom:580.921333pt;}
.ybf{bottom:582.624933pt;}
.y2d2{bottom:587.581067pt;}
.y26d{bottom:588.113067pt;}
.y4d{bottom:588.128800pt;}
.y1ce{bottom:588.614400pt;}
.y10c{bottom:588.801200pt;}
.y29f{bottom:590.520933pt;}
.y83{bottom:591.074267pt;}
.y23b{bottom:592.124933pt;}
.y19a{bottom:592.382267pt;}
.y20a{bottom:593.050000pt;}
.y152{bottom:597.433867pt;}
.ybe{bottom:598.836933pt;}
.y2d1{bottom:603.317067pt;}
.y4c{bottom:604.102800pt;}
.y10b{bottom:604.999200pt;}
.y29e{bottom:606.648933pt;}
.y138{bottom:606.906267pt;}
.y82{bottom:607.608267pt;}
.y1cc{bottom:607.743733pt;}
.y1cd{bottom:607.754400pt;}
.y26c{bottom:607.797067pt;}
.y199{bottom:608.944267pt;}
.y209{bottom:609.500000pt;}
.ya2{bottom:611.552133pt;}
.y23a{bottom:611.962933pt;}
.ybd{bottom:615.048933pt;}
.y2d0{bottom:619.053067pt;}
.y151{bottom:619.112133pt;}
.y4b{bottom:620.076800pt;}
.y1cb{bottom:621.075733pt;}
.y10a{bottom:621.197200pt;}
.y29d{bottom:622.776933pt;}
.y26b{bottom:623.701067pt;}
.y81{bottom:624.142267pt;}
.ya1{bottom:624.884133pt;}
.y198{bottom:625.506267pt;}
.y208{bottom:625.950000pt;}
.y16{bottom:626.617067pt;}
.y239{bottom:628.020933pt;}
.y150{bottom:629.018800pt;}
.ybc{bottom:631.260933pt;}
.y137{bottom:636.021333pt;}
.y4a{bottom:636.050800pt;}
.y109{bottom:637.395200pt;}
.y2cf{bottom:638.569067pt;}
.y29c{bottom:638.904933pt;}
.y26a{bottom:639.605067pt;}
.y80{bottom:640.676267pt;}
.y197{bottom:642.068267pt;}
.y207{bottom:642.400000pt;}
.y15{bottom:645.032667pt;}
.ybb{bottom:647.472933pt;}
.y238{bottom:647.858933pt;}
.y1ca{bottom:648.446000pt;}
.ya0{bottom:649.556000pt;}
.y49{bottom:652.024800pt;}
.y136{bottom:652.681333pt;}
.y108{bottom:653.593200pt;}
.y2ce{bottom:654.305067pt;}
.y7f{bottom:657.210267pt;}
.y196{bottom:658.630267pt;}
.y29b{bottom:658.812933pt;}
.y206{bottom:658.850000pt;}
.y269{bottom:659.289067pt;}
.y14{bottom:663.448267pt;}
.yba{bottom:663.684933pt;}
.y237{bottom:663.916933pt;}
.y48{bottom:667.998800pt;}
.y14f{bottom:668.293067pt;}
.y135{bottom:669.341333pt;}
.y107{bottom:669.791200pt;}
.y2cd{bottom:670.041067pt;}
.y7e{bottom:673.744267pt;}
.y29a{bottom:674.940933pt;}
.y195{bottom:675.192267pt;}
.y268{bottom:675.193067pt;}
.y205{bottom:675.300000pt;}
.y1c9{bottom:677.242800pt;}
.yb9{bottom:679.896933pt;}
.y236{bottom:679.974933pt;}
.y14e{bottom:681.757067pt;}
.y13{bottom:681.863867pt;}
.y47{bottom:683.972800pt;}
.y2cc{bottom:685.777067pt;}
.y134{bottom:686.001333pt;}
.y106{bottom:686.022267pt;}
.y7d{bottom:690.278267pt;}
.y299{bottom:691.068933pt;}
.y204{bottom:691.750000pt;}
.y194{bottom:691.754267pt;}
.y1c8{bottom:693.594800pt;}
.y267{bottom:694.877067pt;}
.yb8{bottom:696.108933pt;}
.y235{bottom:699.812933pt;}
.y46{bottom:699.946800pt;}
.y12{bottom:700.279467pt;}
.y105{bottom:702.220267pt;}
.y2cb{bottom:705.293067pt;}
.y203{bottom:708.200000pt;}
.y193{bottom:708.316267pt;}
.y133{bottom:708.331600pt;}
.y1c7{bottom:709.946800pt;}
.y14d{bottom:710.443600pt;}
.y7c{bottom:710.592267pt;}
.y266{bottom:710.781067pt;}
.y298{bottom:710.976933pt;}
.yb7{bottom:712.320933pt;}
.y234{bottom:715.870933pt;}
.y45{bottom:715.920800pt;}
.y11{bottom:718.695067pt;}
.yec{bottom:719.842800pt;}
.y2ca{bottom:721.029067pt;}
.y104{bottom:722.198267pt;}
.y202{bottom:724.659467pt;}
.y1c6{bottom:726.298800pt;}
.y14c{bottom:726.571600pt;}
.y297{bottom:727.104933pt;}
.y7b{bottom:727.130533pt;}
.yb6{bottom:728.532933pt;}
.y265{bottom:730.465067pt;}
.y192{bottom:730.551733pt;}
.y233{bottom:731.928933pt;}
.y44{bottom:735.674800pt;}
.y2c9{bottom:736.765067pt;}
.y10{bottom:737.110400pt;}
.y103{bottom:738.396267pt;}
.y201{bottom:741.109467pt;}
.y1c5{bottom:742.650800pt;}
.y14b{bottom:742.699600pt;}
.y7a{bottom:743.664533pt;}
.yb5{bottom:744.744933pt;}
.y264{bottom:746.369067pt;}
.y296{bottom:747.012933pt;}
.y132{bottom:747.124933pt;}
.yeb{bottom:748.524933pt;}
.y43{bottom:751.648800pt;}
.y2c8{bottom:752.501067pt;}
.y232{bottom:753.650933pt;}
.y102{bottom:754.594267pt;}
.y200{bottom:757.568933pt;}
.y14a{bottom:758.827600pt;}
.y1c4{bottom:759.002800pt;}
.y79{bottom:760.207200pt;}
.yb4{bottom:760.956933pt;}
.y295{bottom:763.140933pt;}
.y131{bottom:763.784933pt;}
.yea{bottom:764.736933pt;}
.y191{bottom:765.458933pt;}
.y263{bottom:766.053067pt;}
.y42{bottom:767.622800pt;}
.y101{bottom:770.838933pt;}
.y2c7{bottom:772.017067pt;}
.y1ff{bottom:774.018933pt;}
.y149{bottom:774.955600pt;}
.y1c3{bottom:775.354800pt;}
.y78{bottom:776.741200pt;}
.y130{bottom:780.444933pt;}
.yb3{bottom:780.948933pt;}
.y262{bottom:781.957067pt;}
.y294{bottom:783.048933pt;}
.y41{bottom:783.596800pt;}
.yf{bottom:785.757867pt;}
.y100{bottom:787.036933pt;}
.y2c6{bottom:787.753067pt;}
.y190{bottom:790.421200pt;}
.y1fe{bottom:790.473600pt;}
.y148{bottom:791.083600pt;}
.y1c2{bottom:791.706800pt;}
.y231{bottom:792.054933pt;}
.y77{bottom:793.275200pt;}
.yb2{bottom:797.160933pt;}
.y261{bottom:797.861067pt;}
.y293{bottom:799.176933pt;}
.y40{bottom:799.570800pt;}
.y12f{bottom:800.884933pt;}
.yff{bottom:803.234933pt;}
.y2c5{bottom:803.489067pt;}
.ye{bottom:805.777867pt;}
.y1fd{bottom:806.975067pt;}
.y147{bottom:807.211600pt;}
.y1c1{bottom:808.058800pt;}
.y230{bottom:808.378933pt;}
.y76{bottom:809.809200pt;}
.y18f{bottom:810.221200pt;}
.yb1{bottom:813.372933pt;}
.y260{bottom:813.765067pt;}
.y3f{bottom:815.544800pt;}
.y12e{bottom:817.544933pt;}
.y292{bottom:819.084933pt;}
.yfe{bottom:819.432933pt;}
.y2c4{bottom:823.005067pt;}
.y146{bottom:823.339600pt;}
.y1fc{bottom:823.425067pt;}
.y1c0{bottom:824.410800pt;}
.y22f{bottom:824.702933pt;}
.y75{bottom:826.345467pt;}
.yb0{bottom:829.584933pt;}
.y18e{bottom:830.021200pt;}
.y3e{bottom:831.518800pt;}
.y25f{bottom:833.449067pt;}
.y12d{bottom:834.204933pt;}
.y291{bottom:835.212933pt;}
.yfd{bottom:835.630933pt;}
.ye4{bottom:837.921600pt;}
.y2c3{bottom:838.741067pt;}
.y145{bottom:839.467600pt;}
.y1fb{bottom:839.875067pt;}
.y1bf{bottom:840.762267pt;}
.yd{bottom:840.908267pt;}
.y22e{bottom:841.026933pt;}
.y74{bottom:842.881600pt;}
.yaf{bottom:845.796933pt;}
.y3d{bottom:847.492800pt;}
.y25e{bottom:849.353067pt;}
.y18d{bottom:849.821200pt;}
.y12c{bottom:850.864933pt;}
.ye3{bottom:851.253600pt;}
.y290{bottom:851.340933pt;}
.yfc{bottom:851.828933pt;}
.y2c2{bottom:854.477067pt;}
.y144{bottom:855.595600pt;}
.y1fa{bottom:856.325067pt;}
.y1be{bottom:857.111867pt;}
.y22d{bottom:857.350933pt;}
.y73{bottom:859.422133pt;}
.yae{bottom:862.008933pt;}
.yc{bottom:867.592267pt;}
.yfb{bottom:868.026933pt;}
.y25d{bottom:869.037067pt;}
.y3c{bottom:869.139600pt;}
.y28f{bottom:871.248933pt;}
.y12b{bottom:871.304933pt;}
.y18c{bottom:871.514267pt;}
.y143{bottom:871.723600pt;}
.y1f9{bottom:872.775067pt;}
.y1bd{bottom:873.463867pt;}
.y22c{bottom:873.674933pt;}
.y2c1{bottom:873.993067pt;}
.y72{bottom:875.956133pt;}
.yad{bottom:878.220933pt;}
.ye2{bottom:879.691067pt;}
.yfa{bottom:884.224933pt;}
.y25c{bottom:884.941067pt;}
.y189{bottom:886.958267pt;}
.y28e{bottom:887.376933pt;}
.y142{bottom:887.851600pt;}
.y12a{bottom:887.964933pt;}
.y18b{bottom:889.082267pt;}
.y1f8{bottom:889.225067pt;}
.y2c0{bottom:889.729067pt;}
.y1bc{bottom:889.815867pt;}
.y22b{bottom:889.998933pt;}
.y71{bottom:892.490133pt;}
.yb{bottom:894.276267pt;}
.yac{bottom:894.432933pt;}
.ye1{bottom:895.693067pt;}
.y18a{bottom:902.414267pt;}
.y28d{bottom:903.504933pt;}
.y141{bottom:903.979600pt;}
.y129{bottom:904.624933pt;}
.y25b{bottom:904.625067pt;}
.y2bf{bottom:905.465067pt;}
.y1f7{bottom:905.675067pt;}
.yf9{bottom:906.098933pt;}
.y1bb{bottom:906.167867pt;}
.y22a{bottom:906.322933pt;}
.y3b{bottom:907.364533pt;}
.y70{bottom:909.034933pt;}
.yab{bottom:910.644933pt;}
.ye0{bottom:911.695067pt;}
.y140{bottom:920.107600pt;}
.y25a{bottom:920.529067pt;}
.y128{bottom:921.284933pt;}
.y1f6{bottom:922.125067pt;}
.y1ba{bottom:922.519200pt;}
.y28c{bottom:923.412933pt;}
.y2be{bottom:924.981067pt;}
.y6f{bottom:925.568933pt;}
.y229{bottom:926.417867pt;}
.yaa{bottom:926.856933pt;}
.y3a{bottom:927.258533pt;}
.ydf{bottom:927.697067pt;}
.y188{bottom:932.225467pt;}
.y13f{bottom:936.235600pt;}
.y127{bottom:937.944933pt;}
.y1f5{bottom:938.575067pt;}
.y1b9{bottom:938.868933pt;}
.y28b{bottom:939.540933pt;}
.y259{bottom:940.213067pt;}
.y2bd{bottom:940.717067pt;}
.y6e{bottom:942.102933pt;}
.y228{bottom:942.741867pt;}
.ya9{bottom:943.068933pt;}
.yf8{bottom:943.111067pt;}
.y39{bottom:943.363067pt;}
.yde{bottom:943.699067pt;}
.y187{bottom:946.121467pt;}
.y13e{bottom:952.363600pt;}
.y126{bottom:954.604933pt;}
.y1f4{bottom:955.025067pt;}
.y1b8{bottom:955.220933pt;}
.y28a{bottom:955.668933pt;}
.y6d{bottom:958.636933pt;}
.y227{bottom:959.061467pt;}
.ya8{bottom:959.280933pt;}
.yf7{bottom:959.309067pt;}
.y38{bottom:959.477067pt;}
.ydd{bottom:959.701067pt;}
.y258{bottom:959.897067pt;}
.y2bc{bottom:960.233067pt;}
.y7{bottom:961.645333pt;}
.y13d{bottom:968.491600pt;}
.y6{bottom:973.314667pt;}
.y125{bottom:975.044933pt;}
.y186{bottom:975.143067pt;}
.y6c{bottom:975.170933pt;}
.y1f3{bottom:975.255067pt;}
.y1b7{bottom:975.352933pt;}
.y226{bottom:975.380933pt;}
.ya7{bottom:975.492933pt;}
.yf6{bottom:975.507067pt;}
.y289{bottom:975.576933pt;}
.y37{bottom:975.591067pt;}
.ydc{bottom:975.703067pt;}
.y257{bottom:975.801067pt;}
.y2bb{bottom:975.969067pt;}
.y16d{bottom:979.230933pt;}
.y9f{bottom:979.783067pt;}
.y5{bottom:984.984000pt;}
.y13c{bottom:990.295067pt;}
.y6b{bottom:991.704933pt;}
.y36{bottom:991.705067pt;}
.y16c{bottom:993.114933pt;}
.y9e{bottom:993.115067pt;}
.y4{bottom:1010.301867pt;}
.y3{bottom:1022.963200pt;}
.y2{bottom:1022.968533pt;}
.y34{bottom:1034.689733pt;}
.y1{bottom:1035.629867pt;}
.h5{height:26.080000pt;}
.h3{height:30.378667pt;}
.h4{height:30.426667pt;}
.h10{height:34.176000pt;}
.h2{height:34.773333pt;}
.h1d{height:37.973333pt;}
.h1a{height:39.120000pt;}
.h20{height:44.832000pt;}
.hc{height:45.640000pt;}
.h9{height:45.882155pt;}
.h8{height:45.883755pt;}
.hf{height:47.813333pt;}
.ha{height:49.065600pt;}
.hb{height:49.365333pt;}
.h1e{height:49.803200pt;}
.h19{height:51.200000pt;}
.h1b{height:54.133333pt;}
.h13{height:56.280000pt;}
.h15{height:56.280533pt;}
.he{height:56.284800pt;}
.h2c{height:56.288000pt;}
.h18{height:56.289600pt;}
.h14{height:56.292800pt;}
.h17{height:56.297600pt;}
.h16{height:56.298133pt;}
.h11{height:56.306667pt;}
.h26{height:56.308800pt;}
.h2a{height:56.311467pt;}
.h22{height:56.312533pt;}
.h23{height:56.313067pt;}
.hd{height:56.315733pt;}
.h25{height:56.316267pt;}
.h12{height:56.317867pt;}
.h21{height:56.319467pt;}
.h2b{height:56.321067pt;}
.h2e{height:56.324267pt;}
.h2d{height:56.324800pt;}
.h24{height:56.338133pt;}
.h2f{height:56.342933pt;}
.h1f{height:60.864000pt;}
.h7{height:64.000000pt;}
.h29{height:64.752000pt;}
.h1c{height:77.546667pt;}
.h6{height:79.744000pt;}
.h27{height:87.546667pt;}
.h28{height:87.552000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:93.356933pt;}
.x1{left:94.488133pt;}
.x22{left:95.538267pt;}
.x24{left:99.146133pt;}
.x26{left:103.214133pt;}
.x25{left:104.466133pt;}
.xc{left:105.524400pt;}
.xb{left:109.764400pt;}
.x9{left:112.062000pt;}
.x40{left:113.148800pt;}
.x39{left:115.045600pt;}
.x15{left:116.435733pt;}
.x13{left:117.528533pt;}
.x7{left:118.494800pt;}
.xa{left:119.594000pt;}
.x3a{left:123.409733pt;}
.x47{left:124.377867pt;}
.x48{left:126.225867pt;}
.x41{left:129.048800pt;}
.x8{left:130.430000pt;}
.x2{left:143.810267pt;}
.x2f{left:145.907200pt;}
.x2e{left:146.975200pt;}
.x3{left:148.028933pt;}
.x1b{left:155.791333pt;}
.x33{left:165.187467pt;}
.x2c{left:169.142533pt;}
.x20{left:172.351467pt;}
.x36{left:177.175467pt;}
.x31{left:178.776667pt;}
.x38{left:190.271333pt;}
.x30{left:191.436667pt;}
.x2b{left:194.076133pt;}
.x37{left:195.899333pt;}
.x1e{left:199.143867pt;}
.x29{left:200.678267pt;}
.x18{left:204.123600pt;}
.x3f{left:214.853733pt;}
.x21{left:222.909200pt;}
.x51{left:225.801867pt;}
.x4{left:230.422400pt;}
.x3e{left:231.553733pt;}
.x5{left:234.641067pt;}
.x4c{left:238.257867pt;}
.xf{left:245.228400pt;}
.x27{left:248.180800pt;}
.x4b{left:250.653867pt;}
.x6{left:254.574800pt;}
.x23{left:257.937600pt;}
.x2a{left:263.313333pt;}
.x3b{left:275.473733pt;}
.x42{left:276.768800pt;}
.x1f{left:282.759867pt;}
.x32{left:287.046267pt;}
.x28{left:289.642800pt;}
.x2d{left:301.955867pt;}
.x11{left:306.686933pt;}
.x34{left:310.519467pt;}
.xe{left:312.436000pt;}
.x10{left:314.514800pt;}
.x1c{left:326.143333pt;}
.xd{left:330.022800pt;}
.x16{left:341.954000pt;}
.x17{left:344.025867pt;}
.x12{left:345.640400pt;}
.x1d{left:354.735600pt;}
.x43{left:393.660800pt;}
.x44{left:405.072800pt;}
.x52{left:409.965867pt;}
.x4d{left:412.713867pt;}
.x35{left:462.115467pt;}
.x4f{left:474.045867pt;}
.x4e{left:477.741867pt;}
.x19{left:482.341467pt;}
.x4a{left:484.017867pt;}
.x54{left:485.985867pt;}
.x55{left:487.161867pt;}
.x46{left:492.177867pt;}
.x49{left:498.333867pt;}
.x53{left:500.157867pt;}
.x3d{left:514.081733pt;}
.x3c{left:550.981733pt;}
.x45{left:621.267867pt;}
.x50{left:645.297867pt;}
.x1a{left:676.376667pt;}
}




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