
    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_06e2f807e31d9a57e7d7e183.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_618871b4acd12101f0209c67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_fad60b64586440da237f3d97.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_13e08acb897c2337a7346796.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168000;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_a4a38e8bd727b5e66fbab98b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.196000;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_95316a026a4031e22f01304e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_95316a026a4031e22f01304e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_4dae5e1b82d296b3f597167d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.023000;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_a6669d7431ffad9b0a335713.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.023000;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_50b2147081817b9772f21a36.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.169000;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_0d598d16f07e06f83943ad43.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls34{letter-spacing:-3.132000px;}
.ls4a{letter-spacing:-1.620000px;}
.ls3f{letter-spacing:-1.500000px;}
.ls22{letter-spacing:-0.900000px;}
.ls31{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.561000px;}
.ls46{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.420000px;}
.ls37{letter-spacing:-0.414000px;}
.ls51{letter-spacing:-0.378000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.349800px;}
.ls10{letter-spacing:-0.300000px;}
.ls25{letter-spacing:-0.279000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.223200px;}
.lsc{letter-spacing:-0.204000px;}
.ls11{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.174900px;}
.ls56{letter-spacing:-0.153000px;}
.lsf{letter-spacing:-0.120000px;}
.ls39{letter-spacing:-0.111600px;}
.ls55{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.055800px;}
.lse{letter-spacing:-0.051000px;}
.ls43{letter-spacing:-0.034980px;}
.lsb{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.022200px;}
.ls40{letter-spacing:0.030000px;}
.ls42{letter-spacing:0.034980px;}
.ls0{letter-spacing:0.051000px;}
.ls20{letter-spacing:0.055800px;}
.ls14{letter-spacing:0.060000px;}
.ls50{letter-spacing:0.069960px;}
.ls1{letter-spacing:0.102000px;}
.ls2a{letter-spacing:0.111600px;}
.ls2{letter-spacing:0.120000px;}
.ls4e{letter-spacing:0.139500px;}
.ls53{letter-spacing:0.153000px;}
.ls3d{letter-spacing:0.167400px;}
.ls4b{letter-spacing:0.174900px;}
.ls8{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.195300px;}
.ls47{letter-spacing:0.209880px;}
.ls21{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.223200px;}
.ls3{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.244860px;}
.ls57{letter-spacing:0.255000px;}
.ls28{letter-spacing:0.279000px;}
.ls4{letter-spacing:0.300000px;}
.ls52{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.306900px;}
.ls4c{letter-spacing:0.314820px;}
.ls5{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.334800px;}
.ls35{letter-spacing:0.349800px;}
.ls13{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.390000px;}
.ls7{letter-spacing:0.420000px;}
.ls4f{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.446400px;}
.ls3b{letter-spacing:0.450000px;}
.ls6{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.558000px;}
.ls33{letter-spacing:0.600000px;}
.ls4d{letter-spacing:0.669600px;}
.ls48{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.732600px;}
.ls1d{letter-spacing:0.780000px;}
.ls54{letter-spacing:1.020000px;}
.ls18{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.512000px;}
.ls44{letter-spacing:1.566000px;}
.ls45{letter-spacing:1.674000px;}
.ls3e{letter-spacing:1.728000px;}
.ls2c{letter-spacing:1.785600px;}
.ls2d{letter-spacing:1.836000px;}
.ls24{letter-spacing:1.860000px;}
.ls41{letter-spacing:2.106000px;}
.ls1f{letter-spacing:3.348000px;}
.ls2b{letter-spacing:3.459600px;}
.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;}
}
.ws89{word-spacing:-55.800000px;}
.ws62{word-spacing:-15.456600px;}
.ws44{word-spacing:-15.345000px;}
.wsa0{word-spacing:-14.904000px;}
.ws60{word-spacing:-14.634000px;}
.wscd{word-spacing:-14.526000px;}
.wsb0{word-spacing:-14.472000px;}
.ws26{word-spacing:-14.310000px;}
.wsbf{word-spacing:-12.840000px;}
.wsbc{word-spacing:-12.666600px;}
.ws8e{word-spacing:-12.540000px;}
.wsde{word-spacing:-12.420000px;}
.ws86{word-spacing:-12.366000px;}
.wse1{word-spacing:-12.291000px;}
.ws63{word-spacing:-11.997000px;}
.ws42{word-spacing:-11.640000px;}
.ws1{word-spacing:-11.610000px;}
.ws3{word-spacing:-11.160000px;}
.ws2{word-spacing:-8.901000px;}
.ws77{word-spacing:-8.487000px;}
.ws75{word-spacing:-7.660620px;}
.wsbb{word-spacing:-7.625640px;}
.ws43{word-spacing:-7.555680px;}
.wsb1{word-spacing:-7.520700px;}
.wsba{word-spacing:-7.485720px;}
.wsd6{word-spacing:-7.380780px;}
.wsa1{word-spacing:-7.345800px;}
.ws0{word-spacing:-7.310820px;}
.wsa2{word-spacing:-7.275840px;}
.ws61{word-spacing:-7.135920px;}
.ws76{word-spacing:-6.961020px;}
.ws6b{word-spacing:-3.000000px;}
.ws8c{word-spacing:-2.760000px;}
.ws6d{word-spacing:-2.700000px;}
.ws66{word-spacing:-2.400000px;}
.ws8d{word-spacing:-2.280000px;}
.ws48{word-spacing:-2.100000px;}
.wsc3{word-spacing:-2.064600px;}
.ws14{word-spacing:-2.040000px;}
.ws9a{word-spacing:-1.980000px;}
.ws5b{word-spacing:-1.953000px;}
.ws34{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.860000px;}
.ws5c{word-spacing:-1.841400px;}
.wsac{word-spacing:-1.800000px;}
.ws36{word-spacing:-1.785600px;}
.ws2a{word-spacing:-1.680000px;}
.wsd4{word-spacing:-1.674000px;}
.wsc{word-spacing:-1.632000px;}
.ws1f{word-spacing:-1.620000px;}
.wse9{word-spacing:-1.581000px;}
.ws41{word-spacing:-1.562400px;}
.wsa7{word-spacing:-1.560000px;}
.wsc1{word-spacing:-1.506600px;}
.ws7d{word-spacing:-1.500000px;}
.ws4d{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.395000px;}
.ws7e{word-spacing:-1.380000px;}
.wscc{word-spacing:-1.339200px;}
.ws30{word-spacing:-1.320000px;}
.wsc4{word-spacing:-1.283400px;}
.ws6f{word-spacing:-1.260000px;}
.ws5a{word-spacing:-1.227600px;}
.ws2f{word-spacing:-1.200000px;}
.wsca{word-spacing:-1.171800px;}
.wsd0{word-spacing:-1.140000px;}
.wse5{word-spacing:-1.122000px;}
.ws59{word-spacing:-1.116000px;}
.ws45{word-spacing:-1.080000px;}
.ws50{word-spacing:-1.020000px;}
.ws8b{word-spacing:-1.004400px;}
.ws10{word-spacing:-0.960000px;}
.ws85{word-spacing:-0.948600px;}
.ws2d{word-spacing:-0.900000px;}
.ws55{word-spacing:-0.840000px;}
.wse6{word-spacing:-0.816000px;}
.ws2c{word-spacing:-0.780000px;}
.ws4{word-spacing:-0.754800px;}
.ws6a{word-spacing:-0.720000px;}
.ws51{word-spacing:-0.660000px;}
.ws38{word-spacing:-0.613800px;}
.ws33{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.502200px;}
.ws28{word-spacing:-0.480000px;}
.ws68{word-spacing:-0.420000px;}
.ws39{word-spacing:-0.390600px;}
.ws32{word-spacing:-0.360000px;}
.ws40{word-spacing:-0.334800px;}
.ws15{word-spacing:-0.300000px;}
.wse3{word-spacing:-0.255000px;}
.ws1b{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.223200px;}
.wsa{word-spacing:-0.204000px;}
.ws2b{word-spacing:-0.180000px;}
.ws3b{word-spacing:-0.111600px;}
.ws49{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.044400px;}
.ws6{word-spacing:0.000000px;}
.wscb{word-spacing:0.055800px;}
.ws91{word-spacing:0.060000px;}
.wsdf{word-spacing:0.120000px;}
.ws72{word-spacing:0.167400px;}
.ws79{word-spacing:0.180000px;}
.ws7{word-spacing:0.204000px;}
.ws99{word-spacing:0.240000px;}
.ws4b{word-spacing:0.300000px;}
.ws3f{word-spacing:0.334800px;}
.ws35{word-spacing:0.360000px;}
.wsdc{word-spacing:0.390600px;}
.ws20{word-spacing:0.420000px;}
.ws3c{word-spacing:0.446400px;}
.ws7f{word-spacing:0.480000px;}
.wsbe{word-spacing:0.540000px;}
.wsb{word-spacing:0.561000px;}
.ws19{word-spacing:0.600000px;}
.wsb9{word-spacing:0.613800px;}
.ws9b{word-spacing:0.660000px;}
.wse8{word-spacing:0.663000px;}
.wsb8{word-spacing:0.669600px;}
.ws16{word-spacing:0.720000px;}
.ws3d{word-spacing:0.725400px;}
.wsa9{word-spacing:0.781200px;}
.wsa8{word-spacing:0.837000px;}
.wsa5{word-spacing:0.840000px;}
.wsae{word-spacing:0.900000px;}
.ws24{word-spacing:0.948600px;}
.ws54{word-spacing:0.960000px;}
.ws25{word-spacing:1.004400px;}
.ws7c{word-spacing:1.020000px;}
.ws82{word-spacing:1.060200px;}
.ws92{word-spacing:1.080000px;}
.wsdb{word-spacing:1.116000px;}
.wse4{word-spacing:1.122000px;}
.wsda{word-spacing:1.140000px;}
.ws81{word-spacing:1.171800px;}
.ws6e{word-spacing:1.200000px;}
.wsea{word-spacing:1.224000px;}
.ws98{word-spacing:1.260000px;}
.wsc5{word-spacing:1.283400px;}
.ws47{word-spacing:1.320000px;}
.ws3e{word-spacing:1.339200px;}
.ws69{word-spacing:1.380000px;}
.wsc6{word-spacing:1.395000px;}
.ws11{word-spacing:1.440000px;}
.wsc9{word-spacing:1.450800px;}
.wse{word-spacing:1.500000px;}
.ws23{word-spacing:1.506600px;}
.ws18{word-spacing:1.560000px;}
.ws57{word-spacing:1.562400px;}
.ws9{word-spacing:1.581000px;}
.ws80{word-spacing:1.620000px;}
.ws8{word-spacing:1.632000px;}
.ws5e{word-spacing:1.674000px;}
.wsf{word-spacing:1.680000px;}
.wseb{word-spacing:1.683000px;}
.wsd2{word-spacing:1.729800px;}
.wsa4{word-spacing:1.740000px;}
.ws73{word-spacing:1.785600px;}
.wsd9{word-spacing:1.800000px;}
.ws5d{word-spacing:1.841400px;}
.ws12{word-spacing:1.860000px;}
.wsd3{word-spacing:1.897200px;}
.ws13{word-spacing:1.920000px;}
.ws84{word-spacing:1.953000px;}
.ws17{word-spacing:1.980000px;}
.wsa6{word-spacing:2.040000px;}
.ws71{word-spacing:2.064600px;}
.ws1a{word-spacing:2.100000px;}
.ws83{word-spacing:2.120400px;}
.ws93{word-spacing:2.160000px;}
.wse7{word-spacing:2.193000px;}
.ws95{word-spacing:2.220000px;}
.ws70{word-spacing:2.232000px;}
.ws9c{word-spacing:2.340000px;}
.ws21{word-spacing:2.343600px;}
.ws90{word-spacing:2.400000px;}
.ws29{word-spacing:2.460000px;}
.ws1c{word-spacing:2.520000px;}
.wsaf{word-spacing:2.566800px;}
.ws7b{word-spacing:2.580000px;}
.wsb4{word-spacing:2.640000px;}
.ws4a{word-spacing:2.700000px;}
.ws3a{word-spacing:2.734200px;}
.ws9d{word-spacing:2.760000px;}
.wsad{word-spacing:2.820000px;}
.ws31{word-spacing:2.880000px;}
.ws56{word-spacing:3.000000px;}
.ws1e{word-spacing:3.060000px;}
.ws52{word-spacing:3.180000px;}
.ws2e{word-spacing:3.240000px;}
.wscf{word-spacing:3.300000px;}
.ws9e{word-spacing:3.360000px;}
.ws53{word-spacing:3.420000px;}
.wsc7{word-spacing:3.459600px;}
.ws6c{word-spacing:3.480000px;}
.wsb6{word-spacing:3.540000px;}
.ws97{word-spacing:3.600000px;}
.wsd5{word-spacing:3.627000px;}
.ws65{word-spacing:3.660000px;}
.ws9f{word-spacing:3.720000px;}
.wsdd{word-spacing:3.738600px;}
.ws4c{word-spacing:3.780000px;}
.wsb3{word-spacing:3.900000px;}
.wsb5{word-spacing:3.960000px;}
.ws1d{word-spacing:4.020000px;}
.ws96{word-spacing:4.080000px;}
.wsb7{word-spacing:4.140000px;}
.ws4f{word-spacing:4.260000px;}
.wsd8{word-spacing:4.320000px;}
.wsc0{word-spacing:4.440000px;}
.ws37{word-spacing:4.464000px;}
.ws94{word-spacing:4.680000px;}
.ws7a{word-spacing:4.800000px;}
.wsab{word-spacing:4.980000px;}
.ws67{word-spacing:5.640000px;}
.ws4e{word-spacing:6.600000px;}
.wse0{word-spacing:17.460000px;}
.wsc8{word-spacing:30.132000px;}
.ws74{word-spacing:35.823600px;}
.wsd1{word-spacing:36.158400px;}
.ws58{word-spacing:54.851400px;}
.ws87{word-spacing:130.683600px;}
.ws88{word-spacing:225.208800px;}
.wsa3{word-spacing:1042.632000px;}
.ws64{word-spacing:1042.902000px;}
.wsce{word-spacing:1043.010000px;}
.wsb2{word-spacing:1043.064000px;}
.ws27{word-spacing:1043.226000px;}
.ws8a{word-spacing:1045.116000px;}
.ws8f{word-spacing:1622.160000px;}
.wsaa{word-spacing:1622.538000px;}
.wsd7{word-spacing:1624.752000px;}
.ws46{word-spacing:1625.184000px;}
.wse2{word-spacing:1625.670000px;}
.wsbd{word-spacing:1628.856000px;}
.ws78{word-spacing:1631.880000px;}
._19{margin-left:-1045.790400px;}
._1a{margin-left:-1044.765600px;}
._9{margin-left:-1042.838400px;}
._11{margin-left:-54.553200px;}
._23{margin-left:-35.098800px;}
._17{margin-left:-32.420400px;}
._21{margin-left:-26.253660px;}
._14{margin-left:-14.460000px;}
._f{margin-left:-10.977000px;}
._22{margin-left:-7.740000px;}
._5{margin-left:-6.732900px;}
._a{margin-left:-5.613600px;}
._1f{margin-left:-4.571940px;}
._7{margin-left:-3.571200px;}
._0{margin-left:-2.400000px;}
._1{margin-left:-1.080000px;}
._3{width:1.530000px;}
._2{width:2.700900px;}
._4{width:4.437900px;}
._10{width:6.612000px;}
._20{width:12.600000px;}
._1d{width:24.774000px;}
._1e{width:27.600000px;}
._25{width:28.735800px;}
._12{width:30.410400px;}
._15{width:33.646200px;}
._1c{width:35.041800px;}
._16{width:36.213600px;}
._18{width:37.631400px;}
._13{width:42.240000px;}
._c{width:46.983600px;}
._d{width:48.099600px;}
._6{width:50.414700px;}
._e{width:51.894000px;}
._b{width:53.567400px;}
._8{width:55.911000px;}
._24{width:71.926200px;}
._1b{width:230.454000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:22.200000px;}
.fs4{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:90.554850px;}
.y27{bottom:90.561000px;}
.yc3{bottom:90.567000px;}
.y58{bottom:90.567150px;}
.ye9{bottom:91.318050px;}
.yc6{bottom:107.804850px;}
.y57{bottom:107.811000px;}
.y26{bottom:107.817150px;}
.ye8{bottom:109.768050px;}
.y47{bottom:125.061000px;}
.y55{bottom:125.061150px;}
.y25{bottom:125.067150px;}
.y4f{bottom:125.067300px;}
.yc2{bottom:128.218050px;}
.y24{bottom:142.311000px;}
.y56{bottom:142.311150px;}
.y46{bottom:142.317150px;}
.y4e{bottom:142.317300px;}
.yc1{bottom:146.668050px;}
.y54{bottom:159.561300px;}
.y23{bottom:159.567150px;}
.y45{bottom:159.567300px;}
.y4d{bottom:159.567450px;}
.yc0{bottom:165.118050px;}
.yc8{bottom:165.118200px;}
.y44{bottom:176.811150px;}
.ye6{bottom:176.817150px;}
.yc5{bottom:176.817300px;}
.y53{bottom:176.817450px;}
.y4c{bottom:176.817600px;}
.yc4{bottom:183.568050px;}
.yc7{bottom:183.568200px;}
.y52{bottom:194.055300px;}
.ye5{bottom:194.067150px;}
.y43{bottom:194.067300px;}
.y4b{bottom:194.067600px;}
.y22{bottom:202.018050px;}
.yde{bottom:211.305150px;}
.y51{bottom:211.311450px;}
.ye4{bottom:211.317150px;}
.y42{bottom:211.317300px;}
.y4a{bottom:211.317600px;}
.ybf{bottom:219.758550px;}
.y21{bottom:220.468050px;}
.y41{bottom:228.561150px;}
.ydd{bottom:228.561300px;}
.ye3{bottom:228.567150px;}
.y50{bottom:228.567600px;}
.y49{bottom:228.567900px;}
.y20{bottom:238.918050px;}
.yb9{bottom:241.368600px;}
.ye2{bottom:245.811000px;}
.y40{bottom:245.817300px;}
.ydc{bottom:245.817450px;}
.y48{bottom:245.817900px;}
.y1f{bottom:257.368050px;}
.yb8{bottom:257.871450px;}
.ye1{bottom:263.067150px;}
.y3f{bottom:263.067300px;}
.ydb{bottom:263.067450px;}
.ybe{bottom:274.360350px;}
.yb7{bottom:274.374300px;}
.yb2{bottom:274.388250px;}
.y1e{bottom:275.818050px;}
.yda{bottom:280.305300px;}
.y3e{bottom:280.317450px;}
.ybd{bottom:290.863200px;}
.yb6{bottom:290.877150px;}
.yb1{bottom:290.891100px;}
.y1d{bottom:294.268050px;}
.y3d{bottom:297.555150px;}
.yd9{bottom:297.561450px;}
.ye0{bottom:297.567450px;}
.ybc{bottom:307.366050px;}
.yb5{bottom:307.380000px;}
.yb0{bottom:307.393950px;}
.y1c{bottom:312.718050px;}
.y3c{bottom:314.811300px;}
.yd8{bottom:314.817600px;}
.ybb{bottom:323.868900px;}
.yb4{bottom:323.882850px;}
.yaf{bottom:323.896800px;}
.y1b{bottom:331.168050px;}
.y3b{bottom:332.067450px;}
.yd7{bottom:332.067600px;}
.yba{bottom:340.371750px;}
.yb3{bottom:340.385700px;}
.yae{bottom:340.399650px;}
.y3a{bottom:349.317600px;}
.y1a{bottom:349.618050px;}
.ya4{bottom:359.385600px;}
.yd6{bottom:366.555300px;}
.y39{bottom:366.567600px;}
.y19{bottom:368.068050px;}
.ya3{bottom:375.888450px;}
.yff{bottom:382.000050px;}
.yd5{bottom:383.811450px;}
.y18{bottom:386.518050px;}
.yad{bottom:392.363400px;}
.ya2{bottom:392.391300px;}
.yfe{bottom:399.250800px;}
.yd4{bottom:401.067600px;}
.y17{bottom:404.968050px;}
.yac{bottom:408.866250px;}
.ya8{bottom:408.880200px;}
.ya1{bottom:408.894150px;}
.yfd{bottom:416.501550px;}
.y16{bottom:423.418050px;}
.yab{bottom:425.369100px;}
.ya7{bottom:425.383050px;}
.ya0{bottom:425.397000px;}
.yfc{bottom:433.752300px;}
.y15{bottom:441.868050px;}
.yaa{bottom:441.871950px;}
.ya6{bottom:441.885900px;}
.y9f{bottom:441.899850px;}
.yfb{bottom:451.003050px;}
.ya9{bottom:458.374800px;}
.ya5{bottom:458.388750px;}
.y9e{bottom:458.402700px;}
.y14{bottom:460.318050px;}
.y9d{bottom:477.374700px;}
.y13{bottom:478.768050px;}
.y9c{bottom:493.877550px;}
.y12{bottom:497.218050px;}
.yfa{bottom:502.755300px;}
.y9b{bottom:510.380400px;}
.y8f{bottom:510.408300px;}
.y11{bottom:515.668050px;}
.yf9{bottom:520.006050px;}
.y9a{bottom:526.883250px;}
.y8e{bottom:526.911150px;}
.y10{bottom:534.118050px;}
.yf8{bottom:537.256800px;}
.y99{bottom:543.386100px;}
.y94{bottom:543.400050px;}
.y8d{bottom:543.414000px;}
.y88{bottom:543.427950px;}
.yf{bottom:552.568050px;}
.yf7{bottom:554.507550px;}
.y98{bottom:559.888950px;}
.y93{bottom:559.902900px;}
.y8c{bottom:559.916850px;}
.y87{bottom:559.930800px;}
.ye{bottom:571.018050px;}
.yf6{bottom:571.758300px;}
.y97{bottom:576.391800px;}
.y92{bottom:576.405750px;}
.y8b{bottom:576.419700px;}
.y86{bottom:576.433650px;}
.yf5{bottom:589.009050px;}
.yd{bottom:589.468050px;}
.y96{bottom:592.894650px;}
.y91{bottom:592.908600px;}
.y8a{bottom:592.922550px;}
.y85{bottom:592.936500px;}
.yf4{bottom:606.259800px;}
.yc{bottom:607.918050px;}
.yd3{bottom:607.918200px;}
.y95{bottom:609.397500px;}
.y90{bottom:609.411450px;}
.y89{bottom:609.425400px;}
.y84{bottom:609.439350px;}
.yf3{bottom:623.510550px;}
.yb{bottom:626.368050px;}
.yd2{bottom:626.368200px;}
.y83{bottom:628.411350px;}
.y7e{bottom:628.425300px;}
.yf2{bottom:640.761300px;}
.ya{bottom:644.818050px;}
.yd1{bottom:644.818200px;}
.y82{bottom:644.914200px;}
.y7d{bottom:644.928150px;}
.y79{bottom:644.942100px;}
.yf1{bottom:658.012050px;}
.y81{bottom:661.417050px;}
.y7c{bottom:661.431000px;}
.y78{bottom:661.444950px;}
.y38{bottom:663.268050px;}
.yd0{bottom:663.268200px;}
.yf0{bottom:675.262800px;}
.y80{bottom:677.919900px;}
.y7b{bottom:677.933850px;}
.y77{bottom:677.947800px;}
.ye7{bottom:678.718050px;}
.y37{bottom:681.718050px;}
.ycf{bottom:681.718200px;}
.yef{bottom:692.513550px;}
.y7f{bottom:694.422750px;}
.y7a{bottom:694.436700px;}
.y76{bottom:694.450650px;}
.y9{bottom:699.048450px;}
.y36{bottom:700.168050px;}
.yce{bottom:700.168200px;}
.yee{bottom:709.764300px;}
.y71{bottom:713.422650px;}
.y8{bottom:716.299200px;}
.y35{bottom:718.618050px;}
.ycd{bottom:718.618200px;}
.yed{bottom:727.015050px;}
.y70{bottom:729.925500px;}
.y7{bottom:733.549950px;}
.y34{bottom:737.068050px;}
.ycc{bottom:737.068200px;}
.yec{bottom:744.265800px;}
.y75{bottom:746.414400px;}
.y6f{bottom:746.428350px;}
.y6b{bottom:746.442300px;}
.y33{bottom:755.518050px;}
.ycb{bottom:755.518200px;}
.yeb{bottom:761.516550px;}
.y74{bottom:762.917250px;}
.y6e{bottom:762.931200px;}
.y6a{bottom:762.945150px;}
.y6{bottom:768.051450px;}
.y32{bottom:773.968050px;}
.y73{bottom:779.420100px;}
.y6d{bottom:779.434050px;}
.y69{bottom:779.448000px;}
.y5{bottom:785.302200px;}
.y31{bottom:792.418050px;}
.y72{bottom:795.922950px;}
.y6c{bottom:795.936900px;}
.y68{bottom:795.950850px;}
.yea{bottom:796.018050px;}
.y4{bottom:802.552950px;}
.y30{bottom:810.868050px;}
.y67{bottom:814.922850px;}
.y5e{bottom:814.950750px;}
.y3{bottom:819.803700px;}
.y2f{bottom:829.318050px;}
.y66{bottom:831.425700px;}
.y62{bottom:831.439650px;}
.y5d{bottom:831.453600px;}
.y2e{bottom:847.768050px;}
.yca{bottom:847.768200px;}
.y65{bottom:847.928550px;}
.y61{bottom:847.942500px;}
.y5c{bottom:847.956450px;}
.y2{bottom:854.303700px;}
.y29{bottom:857.391000px;}
.y64{bottom:864.431400px;}
.y60{bottom:864.445350px;}
.y5b{bottom:864.459300px;}
.y28{bottom:864.889050px;}
.y2d{bottom:866.218050px;}
.yc9{bottom:866.218200px;}
.y63{bottom:880.934250px;}
.y5f{bottom:880.948200px;}
.y5a{bottom:880.962150px;}
.y2c{bottom:884.668050px;}
.y1{bottom:896.303700px;}
.y59{bottom:899.934150px;}
.y2b{bottom:903.118050px;}
.y2a{bottom:955.942350px;}
.h8{height:15.295800px;}
.he{height:42.742800px;}
.h5{height:45.900000px;}
.h12{height:47.073000px;}
.h4{height:48.195000px;}
.hf{height:49.829400px;}
.h7{height:50.443200px;}
.hc{height:50.467800px;}
.hb{height:50.492400px;}
.h9{height:50.868000px;}
.h10{height:51.462000px;}
.h6{height:54.000000px;}
.h11{height:54.000600px;}
.hd{height:56.520000px;}
.ha{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.546350px;}
.x7{left:28.615500px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.x6{left:93.543300px;}
.x2{left:102.039000px;}
.xd{left:114.798300px;}
.x9{left:153.070950px;}
.xa{left:265.745100px;}
.xe{left:328.408500px;}
.xb{left:387.249600px;}
.xc{left:499.923750px;}
.x4{left:651.223500px;}
.x3{left:654.292650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls34{letter-spacing:-2.784000pt;}
.ls4a{letter-spacing:-1.440000pt;}
.ls3f{letter-spacing:-1.333333pt;}
.ls22{letter-spacing:-0.800000pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.498667pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls37{letter-spacing:-0.368000pt;}
.ls51{letter-spacing:-0.336000pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.310933pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls25{letter-spacing:-0.248000pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.198400pt;}
.lsc{letter-spacing:-0.181333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.155467pt;}
.ls56{letter-spacing:-0.136000pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls39{letter-spacing:-0.099200pt;}
.ls55{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.049600pt;}
.lse{letter-spacing:-0.045333pt;}
.ls43{letter-spacing:-0.031093pt;}
.lsb{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019733pt;}
.ls40{letter-spacing:0.026667pt;}
.ls42{letter-spacing:0.031093pt;}
.ls0{letter-spacing:0.045333pt;}
.ls20{letter-spacing:0.049600pt;}
.ls14{letter-spacing:0.053333pt;}
.ls50{letter-spacing:0.062187pt;}
.ls1{letter-spacing:0.090667pt;}
.ls2a{letter-spacing:0.099200pt;}
.ls2{letter-spacing:0.106667pt;}
.ls4e{letter-spacing:0.124000pt;}
.ls53{letter-spacing:0.136000pt;}
.ls3d{letter-spacing:0.148800pt;}
.ls4b{letter-spacing:0.155467pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.173600pt;}
.ls47{letter-spacing:0.186560pt;}
.ls21{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.198400pt;}
.ls3{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.217653pt;}
.ls57{letter-spacing:0.226667pt;}
.ls28{letter-spacing:0.248000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls52{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.272800pt;}
.ls4c{letter-spacing:0.279840pt;}
.ls5{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.297600pt;}
.ls35{letter-spacing:0.310933pt;}
.ls13{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.346667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls4f{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.396800pt;}
.ls3b{letter-spacing:0.400000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.496000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls4d{letter-spacing:0.595200pt;}
.ls48{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.651200pt;}
.ls1d{letter-spacing:0.693333pt;}
.ls54{letter-spacing:0.906667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.344000pt;}
.ls44{letter-spacing:1.392000pt;}
.ls45{letter-spacing:1.488000pt;}
.ls3e{letter-spacing:1.536000pt;}
.ls2c{letter-spacing:1.587200pt;}
.ls2d{letter-spacing:1.632000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls41{letter-spacing:1.872000pt;}
.ls1f{letter-spacing:2.976000pt;}
.ls2b{letter-spacing:3.075200pt;}
.ws89{word-spacing:-49.600000pt;}
.ws62{word-spacing:-13.739200pt;}
.ws44{word-spacing:-13.640000pt;}
.wsa0{word-spacing:-13.248000pt;}
.ws60{word-spacing:-13.008000pt;}
.wscd{word-spacing:-12.912000pt;}
.wsb0{word-spacing:-12.864000pt;}
.ws26{word-spacing:-12.720000pt;}
.wsbf{word-spacing:-11.413333pt;}
.wsbc{word-spacing:-11.259200pt;}
.ws8e{word-spacing:-11.146667pt;}
.wsde{word-spacing:-11.040000pt;}
.ws86{word-spacing:-10.992000pt;}
.wse1{word-spacing:-10.925333pt;}
.ws63{word-spacing:-10.664000pt;}
.ws42{word-spacing:-10.346667pt;}
.ws1{word-spacing:-10.320000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws2{word-spacing:-7.912000pt;}
.ws77{word-spacing:-7.544000pt;}
.ws75{word-spacing:-6.809440pt;}
.wsbb{word-spacing:-6.778347pt;}
.ws43{word-spacing:-6.716160pt;}
.wsb1{word-spacing:-6.685067pt;}
.wsba{word-spacing:-6.653973pt;}
.wsd6{word-spacing:-6.560693pt;}
.wsa1{word-spacing:-6.529600pt;}
.ws0{word-spacing:-6.498507pt;}
.wsa2{word-spacing:-6.467413pt;}
.ws61{word-spacing:-6.343040pt;}
.ws76{word-spacing:-6.187573pt;}
.ws6b{word-spacing:-2.666667pt;}
.ws8c{word-spacing:-2.453333pt;}
.ws6d{word-spacing:-2.400000pt;}
.ws66{word-spacing:-2.133333pt;}
.ws8d{word-spacing:-2.026667pt;}
.ws48{word-spacing:-1.866667pt;}
.wsc3{word-spacing:-1.835200pt;}
.ws14{word-spacing:-1.813333pt;}
.ws9a{word-spacing:-1.760000pt;}
.ws5b{word-spacing:-1.736000pt;}
.ws34{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.653333pt;}
.ws5c{word-spacing:-1.636800pt;}
.wsac{word-spacing:-1.600000pt;}
.ws36{word-spacing:-1.587200pt;}
.ws2a{word-spacing:-1.493333pt;}
.wsd4{word-spacing:-1.488000pt;}
.wsc{word-spacing:-1.450667pt;}
.ws1f{word-spacing:-1.440000pt;}
.wse9{word-spacing:-1.405333pt;}
.ws41{word-spacing:-1.388800pt;}
.wsa7{word-spacing:-1.386667pt;}
.wsc1{word-spacing:-1.339200pt;}
.ws7d{word-spacing:-1.333333pt;}
.ws4d{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.240000pt;}
.ws7e{word-spacing:-1.226667pt;}
.wscc{word-spacing:-1.190400pt;}
.ws30{word-spacing:-1.173333pt;}
.wsc4{word-spacing:-1.140800pt;}
.ws6f{word-spacing:-1.120000pt;}
.ws5a{word-spacing:-1.091200pt;}
.ws2f{word-spacing:-1.066667pt;}
.wsca{word-spacing:-1.041600pt;}
.wsd0{word-spacing:-1.013333pt;}
.wse5{word-spacing:-0.997333pt;}
.ws59{word-spacing:-0.992000pt;}
.ws45{word-spacing:-0.960000pt;}
.ws50{word-spacing:-0.906667pt;}
.ws8b{word-spacing:-0.892800pt;}
.ws10{word-spacing:-0.853333pt;}
.ws85{word-spacing:-0.843200pt;}
.ws2d{word-spacing:-0.800000pt;}
.ws55{word-spacing:-0.746667pt;}
.wse6{word-spacing:-0.725333pt;}
.ws2c{word-spacing:-0.693333pt;}
.ws4{word-spacing:-0.670933pt;}
.ws6a{word-spacing:-0.640000pt;}
.ws51{word-spacing:-0.586667pt;}
.ws38{word-spacing:-0.545600pt;}
.ws33{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.446400pt;}
.ws28{word-spacing:-0.426667pt;}
.ws68{word-spacing:-0.373333pt;}
.ws39{word-spacing:-0.347200pt;}
.ws32{word-spacing:-0.320000pt;}
.ws40{word-spacing:-0.297600pt;}
.ws15{word-spacing:-0.266667pt;}
.wse3{word-spacing:-0.226667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.198400pt;}
.wsa{word-spacing:-0.181333pt;}
.ws2b{word-spacing:-0.160000pt;}
.ws3b{word-spacing:-0.099200pt;}
.ws49{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.039467pt;}
.ws6{word-spacing:0.000000pt;}
.wscb{word-spacing:0.049600pt;}
.ws91{word-spacing:0.053333pt;}
.wsdf{word-spacing:0.106667pt;}
.ws72{word-spacing:0.148800pt;}
.ws79{word-spacing:0.160000pt;}
.ws7{word-spacing:0.181333pt;}
.ws99{word-spacing:0.213333pt;}
.ws4b{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.297600pt;}
.ws35{word-spacing:0.320000pt;}
.wsdc{word-spacing:0.347200pt;}
.ws20{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.396800pt;}
.ws7f{word-spacing:0.426667pt;}
.wsbe{word-spacing:0.480000pt;}
.wsb{word-spacing:0.498667pt;}
.ws19{word-spacing:0.533333pt;}
.wsb9{word-spacing:0.545600pt;}
.ws9b{word-spacing:0.586667pt;}
.wse8{word-spacing:0.589333pt;}
.wsb8{word-spacing:0.595200pt;}
.ws16{word-spacing:0.640000pt;}
.ws3d{word-spacing:0.644800pt;}
.wsa9{word-spacing:0.694400pt;}
.wsa8{word-spacing:0.744000pt;}
.wsa5{word-spacing:0.746667pt;}
.wsae{word-spacing:0.800000pt;}
.ws24{word-spacing:0.843200pt;}
.ws54{word-spacing:0.853333pt;}
.ws25{word-spacing:0.892800pt;}
.ws7c{word-spacing:0.906667pt;}
.ws82{word-spacing:0.942400pt;}
.ws92{word-spacing:0.960000pt;}
.wsdb{word-spacing:0.992000pt;}
.wse4{word-spacing:0.997333pt;}
.wsda{word-spacing:1.013333pt;}
.ws81{word-spacing:1.041600pt;}
.ws6e{word-spacing:1.066667pt;}
.wsea{word-spacing:1.088000pt;}
.ws98{word-spacing:1.120000pt;}
.wsc5{word-spacing:1.140800pt;}
.ws47{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.190400pt;}
.ws69{word-spacing:1.226667pt;}
.wsc6{word-spacing:1.240000pt;}
.ws11{word-spacing:1.280000pt;}
.wsc9{word-spacing:1.289600pt;}
.wse{word-spacing:1.333333pt;}
.ws23{word-spacing:1.339200pt;}
.ws18{word-spacing:1.386667pt;}
.ws57{word-spacing:1.388800pt;}
.ws9{word-spacing:1.405333pt;}
.ws80{word-spacing:1.440000pt;}
.ws8{word-spacing:1.450667pt;}
.ws5e{word-spacing:1.488000pt;}
.wsf{word-spacing:1.493333pt;}
.wseb{word-spacing:1.496000pt;}
.wsd2{word-spacing:1.537600pt;}
.wsa4{word-spacing:1.546667pt;}
.ws73{word-spacing:1.587200pt;}
.wsd9{word-spacing:1.600000pt;}
.ws5d{word-spacing:1.636800pt;}
.ws12{word-spacing:1.653333pt;}
.wsd3{word-spacing:1.686400pt;}
.ws13{word-spacing:1.706667pt;}
.ws84{word-spacing:1.736000pt;}
.ws17{word-spacing:1.760000pt;}
.wsa6{word-spacing:1.813333pt;}
.ws71{word-spacing:1.835200pt;}
.ws1a{word-spacing:1.866667pt;}
.ws83{word-spacing:1.884800pt;}
.ws93{word-spacing:1.920000pt;}
.wse7{word-spacing:1.949333pt;}
.ws95{word-spacing:1.973333pt;}
.ws70{word-spacing:1.984000pt;}
.ws9c{word-spacing:2.080000pt;}
.ws21{word-spacing:2.083200pt;}
.ws90{word-spacing:2.133333pt;}
.ws29{word-spacing:2.186667pt;}
.ws1c{word-spacing:2.240000pt;}
.wsaf{word-spacing:2.281600pt;}
.ws7b{word-spacing:2.293333pt;}
.wsb4{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.400000pt;}
.ws3a{word-spacing:2.430400pt;}
.ws9d{word-spacing:2.453333pt;}
.wsad{word-spacing:2.506667pt;}
.ws31{word-spacing:2.560000pt;}
.ws56{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.720000pt;}
.ws52{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.880000pt;}
.wscf{word-spacing:2.933333pt;}
.ws9e{word-spacing:2.986667pt;}
.ws53{word-spacing:3.040000pt;}
.wsc7{word-spacing:3.075200pt;}
.ws6c{word-spacing:3.093333pt;}
.wsb6{word-spacing:3.146667pt;}
.ws97{word-spacing:3.200000pt;}
.wsd5{word-spacing:3.224000pt;}
.ws65{word-spacing:3.253333pt;}
.ws9f{word-spacing:3.306667pt;}
.wsdd{word-spacing:3.323200pt;}
.ws4c{word-spacing:3.360000pt;}
.wsb3{word-spacing:3.466667pt;}
.wsb5{word-spacing:3.520000pt;}
.ws1d{word-spacing:3.573333pt;}
.ws96{word-spacing:3.626667pt;}
.wsb7{word-spacing:3.680000pt;}
.ws4f{word-spacing:3.786667pt;}
.wsd8{word-spacing:3.840000pt;}
.wsc0{word-spacing:3.946667pt;}
.ws37{word-spacing:3.968000pt;}
.ws94{word-spacing:4.160000pt;}
.ws7a{word-spacing:4.266667pt;}
.wsab{word-spacing:4.426667pt;}
.ws67{word-spacing:5.013333pt;}
.ws4e{word-spacing:5.866667pt;}
.wse0{word-spacing:15.520000pt;}
.wsc8{word-spacing:26.784000pt;}
.ws74{word-spacing:31.843200pt;}
.wsd1{word-spacing:32.140800pt;}
.ws58{word-spacing:48.756800pt;}
.ws87{word-spacing:116.163200pt;}
.ws88{word-spacing:200.185600pt;}
.wsa3{word-spacing:926.784000pt;}
.ws64{word-spacing:927.024000pt;}
.wsce{word-spacing:927.120000pt;}
.wsb2{word-spacing:927.168000pt;}
.ws27{word-spacing:927.312000pt;}
.ws8a{word-spacing:928.992000pt;}
.ws8f{word-spacing:1441.920000pt;}
.wsaa{word-spacing:1442.256000pt;}
.wsd7{word-spacing:1444.224000pt;}
.ws46{word-spacing:1444.608000pt;}
.wse2{word-spacing:1445.040000pt;}
.wsbd{word-spacing:1447.872000pt;}
.ws78{word-spacing:1450.560000pt;}
._19{margin-left:-929.591467pt;}
._1a{margin-left:-928.680533pt;}
._9{margin-left:-926.967467pt;}
._11{margin-left:-48.491733pt;}
._23{margin-left:-31.198933pt;}
._17{margin-left:-28.818133pt;}
._21{margin-left:-23.336587pt;}
._14{margin-left:-12.853333pt;}
._f{margin-left:-9.757333pt;}
._22{margin-left:-6.880000pt;}
._5{margin-left:-5.984800pt;}
._a{margin-left:-4.989867pt;}
._1f{margin-left:-4.063947pt;}
._7{margin-left:-3.174400pt;}
._0{margin-left:-2.133333pt;}
._1{margin-left:-0.960000pt;}
._3{width:1.360000pt;}
._2{width:2.400800pt;}
._4{width:3.944800pt;}
._10{width:5.877333pt;}
._20{width:11.200000pt;}
._1d{width:22.021333pt;}
._1e{width:24.533333pt;}
._25{width:25.542933pt;}
._12{width:27.031467pt;}
._15{width:29.907733pt;}
._1c{width:31.148267pt;}
._16{width:32.189867pt;}
._18{width:33.450133pt;}
._13{width:37.546667pt;}
._c{width:41.763200pt;}
._d{width:42.755200pt;}
._6{width:44.813067pt;}
._e{width:46.128000pt;}
._b{width:47.615467pt;}
._8{width:49.698667pt;}
._24{width:63.934400pt;}
._1b{width:204.848000pt;}
.fs8{font-size:19.733333pt;}
.fs4{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:80.493200pt;}
.y27{bottom:80.498667pt;}
.yc3{bottom:80.504000pt;}
.y58{bottom:80.504133pt;}
.ye9{bottom:81.171600pt;}
.yc6{bottom:95.826533pt;}
.y57{bottom:95.832000pt;}
.y26{bottom:95.837467pt;}
.ye8{bottom:97.571600pt;}
.y47{bottom:111.165333pt;}
.y55{bottom:111.165467pt;}
.y25{bottom:111.170800pt;}
.y4f{bottom:111.170933pt;}
.yc2{bottom:113.971600pt;}
.y24{bottom:126.498667pt;}
.y56{bottom:126.498800pt;}
.y46{bottom:126.504133pt;}
.y4e{bottom:126.504267pt;}
.yc1{bottom:130.371600pt;}
.y54{bottom:141.832267pt;}
.y23{bottom:141.837467pt;}
.y45{bottom:141.837600pt;}
.y4d{bottom:141.837733pt;}
.yc0{bottom:146.771600pt;}
.yc8{bottom:146.771733pt;}
.y44{bottom:157.165467pt;}
.ye6{bottom:157.170800pt;}
.yc5{bottom:157.170933pt;}
.y53{bottom:157.171067pt;}
.y4c{bottom:157.171200pt;}
.yc4{bottom:163.171600pt;}
.yc7{bottom:163.171733pt;}
.y52{bottom:172.493600pt;}
.ye5{bottom:172.504133pt;}
.y43{bottom:172.504267pt;}
.y4b{bottom:172.504533pt;}
.y22{bottom:179.571600pt;}
.yde{bottom:187.826800pt;}
.y51{bottom:187.832400pt;}
.ye4{bottom:187.837467pt;}
.y42{bottom:187.837600pt;}
.y4a{bottom:187.837867pt;}
.ybf{bottom:195.340933pt;}
.y21{bottom:195.971600pt;}
.y41{bottom:203.165467pt;}
.ydd{bottom:203.165600pt;}
.ye3{bottom:203.170800pt;}
.y50{bottom:203.171200pt;}
.y49{bottom:203.171467pt;}
.y20{bottom:212.371600pt;}
.yb9{bottom:214.549867pt;}
.ye2{bottom:218.498667pt;}
.y40{bottom:218.504267pt;}
.ydc{bottom:218.504400pt;}
.y48{bottom:218.504800pt;}
.y1f{bottom:228.771600pt;}
.yb8{bottom:229.219067pt;}
.ye1{bottom:233.837467pt;}
.y3f{bottom:233.837600pt;}
.ydb{bottom:233.837733pt;}
.ybe{bottom:243.875867pt;}
.yb7{bottom:243.888267pt;}
.yb2{bottom:243.900667pt;}
.y1e{bottom:245.171600pt;}
.yda{bottom:249.160267pt;}
.y3e{bottom:249.171067pt;}
.ybd{bottom:258.545067pt;}
.yb6{bottom:258.557467pt;}
.yb1{bottom:258.569867pt;}
.y1d{bottom:261.571600pt;}
.y3d{bottom:264.493467pt;}
.yd9{bottom:264.499067pt;}
.ye0{bottom:264.504400pt;}
.ybc{bottom:273.214267pt;}
.yb5{bottom:273.226667pt;}
.yb0{bottom:273.239067pt;}
.y1c{bottom:277.971600pt;}
.y3c{bottom:279.832267pt;}
.yd8{bottom:279.837867pt;}
.ybb{bottom:287.883467pt;}
.yb4{bottom:287.895867pt;}
.yaf{bottom:287.908267pt;}
.y1b{bottom:294.371600pt;}
.y3b{bottom:295.171067pt;}
.yd7{bottom:295.171200pt;}
.yba{bottom:302.552667pt;}
.yb3{bottom:302.565067pt;}
.yae{bottom:302.577467pt;}
.y3a{bottom:310.504533pt;}
.y1a{bottom:310.771600pt;}
.ya4{bottom:319.453867pt;}
.yd6{bottom:325.826933pt;}
.y39{bottom:325.837867pt;}
.y19{bottom:327.171600pt;}
.ya3{bottom:334.123067pt;}
.yff{bottom:339.555600pt;}
.yd5{bottom:341.165733pt;}
.y18{bottom:343.571600pt;}
.yad{bottom:348.767467pt;}
.ya2{bottom:348.792267pt;}
.yfe{bottom:354.889600pt;}
.yd4{bottom:356.504533pt;}
.y17{bottom:359.971600pt;}
.yac{bottom:363.436667pt;}
.ya8{bottom:363.449067pt;}
.ya1{bottom:363.461467pt;}
.yfd{bottom:370.223600pt;}
.y16{bottom:376.371600pt;}
.yab{bottom:378.105867pt;}
.ya7{bottom:378.118267pt;}
.ya0{bottom:378.130667pt;}
.yfc{bottom:385.557600pt;}
.y15{bottom:392.771600pt;}
.yaa{bottom:392.775067pt;}
.ya6{bottom:392.787467pt;}
.y9f{bottom:392.799867pt;}
.yfb{bottom:400.891600pt;}
.ya9{bottom:407.444267pt;}
.ya5{bottom:407.456667pt;}
.y9e{bottom:407.469067pt;}
.y14{bottom:409.171600pt;}
.y9d{bottom:424.333067pt;}
.y13{bottom:425.571600pt;}
.y9c{bottom:439.002267pt;}
.y12{bottom:441.971600pt;}
.yfa{bottom:446.893600pt;}
.y9b{bottom:453.671467pt;}
.y8f{bottom:453.696267pt;}
.y11{bottom:458.371600pt;}
.yf9{bottom:462.227600pt;}
.y9a{bottom:468.340667pt;}
.y8e{bottom:468.365467pt;}
.y10{bottom:474.771600pt;}
.yf8{bottom:477.561600pt;}
.y99{bottom:483.009867pt;}
.y94{bottom:483.022267pt;}
.y8d{bottom:483.034667pt;}
.y88{bottom:483.047067pt;}
.yf{bottom:491.171600pt;}
.yf7{bottom:492.895600pt;}
.y98{bottom:497.679067pt;}
.y93{bottom:497.691467pt;}
.y8c{bottom:497.703867pt;}
.y87{bottom:497.716267pt;}
.ye{bottom:507.571600pt;}
.yf6{bottom:508.229600pt;}
.y97{bottom:512.348267pt;}
.y92{bottom:512.360667pt;}
.y8b{bottom:512.373067pt;}
.y86{bottom:512.385467pt;}
.yf5{bottom:523.563600pt;}
.yd{bottom:523.971600pt;}
.y96{bottom:527.017467pt;}
.y91{bottom:527.029867pt;}
.y8a{bottom:527.042267pt;}
.y85{bottom:527.054667pt;}
.yf4{bottom:538.897600pt;}
.yc{bottom:540.371600pt;}
.yd3{bottom:540.371733pt;}
.y95{bottom:541.686667pt;}
.y90{bottom:541.699067pt;}
.y89{bottom:541.711467pt;}
.y84{bottom:541.723867pt;}
.yf3{bottom:554.231600pt;}
.yb{bottom:556.771600pt;}
.yd2{bottom:556.771733pt;}
.y83{bottom:558.587867pt;}
.y7e{bottom:558.600267pt;}
.yf2{bottom:569.565600pt;}
.ya{bottom:573.171600pt;}
.yd1{bottom:573.171733pt;}
.y82{bottom:573.257067pt;}
.y7d{bottom:573.269467pt;}
.y79{bottom:573.281867pt;}
.yf1{bottom:584.899600pt;}
.y81{bottom:587.926267pt;}
.y7c{bottom:587.938667pt;}
.y78{bottom:587.951067pt;}
.y38{bottom:589.571600pt;}
.yd0{bottom:589.571733pt;}
.yf0{bottom:600.233600pt;}
.y80{bottom:602.595467pt;}
.y7b{bottom:602.607867pt;}
.y77{bottom:602.620267pt;}
.ye7{bottom:603.304933pt;}
.y37{bottom:605.971600pt;}
.ycf{bottom:605.971733pt;}
.yef{bottom:615.567600pt;}
.y7f{bottom:617.264667pt;}
.y7a{bottom:617.277067pt;}
.y76{bottom:617.289467pt;}
.y9{bottom:621.376400pt;}
.y36{bottom:622.371600pt;}
.yce{bottom:622.371733pt;}
.yee{bottom:630.901600pt;}
.y71{bottom:634.153467pt;}
.y8{bottom:636.710400pt;}
.y35{bottom:638.771600pt;}
.ycd{bottom:638.771733pt;}
.yed{bottom:646.235600pt;}
.y70{bottom:648.822667pt;}
.y7{bottom:652.044400pt;}
.y34{bottom:655.171600pt;}
.ycc{bottom:655.171733pt;}
.yec{bottom:661.569600pt;}
.y75{bottom:663.479467pt;}
.y6f{bottom:663.491867pt;}
.y6b{bottom:663.504267pt;}
.y33{bottom:671.571600pt;}
.ycb{bottom:671.571733pt;}
.yeb{bottom:676.903600pt;}
.y74{bottom:678.148667pt;}
.y6e{bottom:678.161067pt;}
.y6a{bottom:678.173467pt;}
.y6{bottom:682.712400pt;}
.y32{bottom:687.971600pt;}
.y73{bottom:692.817867pt;}
.y6d{bottom:692.830267pt;}
.y69{bottom:692.842667pt;}
.y5{bottom:698.046400pt;}
.y31{bottom:704.371600pt;}
.y72{bottom:707.487067pt;}
.y6c{bottom:707.499467pt;}
.y68{bottom:707.511867pt;}
.yea{bottom:707.571600pt;}
.y4{bottom:713.380400pt;}
.y30{bottom:720.771600pt;}
.y67{bottom:724.375867pt;}
.y5e{bottom:724.400667pt;}
.y3{bottom:728.714400pt;}
.y2f{bottom:737.171600pt;}
.y66{bottom:739.045067pt;}
.y62{bottom:739.057467pt;}
.y5d{bottom:739.069867pt;}
.y2e{bottom:753.571600pt;}
.yca{bottom:753.571733pt;}
.y65{bottom:753.714267pt;}
.y61{bottom:753.726667pt;}
.y5c{bottom:753.739067pt;}
.y2{bottom:759.381067pt;}
.y29{bottom:762.125333pt;}
.y64{bottom:768.383467pt;}
.y60{bottom:768.395867pt;}
.y5b{bottom:768.408267pt;}
.y28{bottom:768.790267pt;}
.y2d{bottom:769.971600pt;}
.yc9{bottom:769.971733pt;}
.y63{bottom:783.052667pt;}
.y5f{bottom:783.065067pt;}
.y5a{bottom:783.077467pt;}
.y2c{bottom:786.371600pt;}
.y1{bottom:796.714400pt;}
.y59{bottom:799.941467pt;}
.y2b{bottom:802.771600pt;}
.y2a{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.he{height:37.993600pt;}
.h5{height:40.800000pt;}
.h12{height:41.842667pt;}
.h4{height:42.840000pt;}
.hf{height:44.292800pt;}
.h7{height:44.838400pt;}
.hc{height:44.860267pt;}
.hb{height:44.882133pt;}
.h9{height:45.216000pt;}
.h10{height:45.744000pt;}
.h6{height:48.000000pt;}
.h11{height:48.000533pt;}
.hd{height:50.240000pt;}
.ha{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.707867pt;}
.x7{left:25.436000pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.x6{left:83.149600pt;}
.x2{left:90.701333pt;}
.xd{left:102.042933pt;}
.x9{left:136.063067pt;}
.xa{left:236.217867pt;}
.xe{left:291.918667pt;}
.xb{left:344.221867pt;}
.xc{left:444.376667pt;}
.x4{left:578.865333pt;}
.x3{left:581.593467pt;}
}




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