
    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_efd359182166040014fffab2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_9570c04291c860ccdd2ec77d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964865;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_ce5e9f4992916ff18533202f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_d01fd1d107a4b32c6589a309.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_295b6c7571a105dd3a9b960c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_5074c23e3c8701a373302a8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_d2434adb9408f4714657a607.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_47218ec461e3816adbe59fc7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_325b7919a96b2776092439af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_1135415b600181413f03d7ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.953125;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_44829fbe45185e5d1955bf9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.043945;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_21726b985f876a902420cce4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.031385;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_470e4b3c3d8af222e616d196.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_66263213144d5dd94f6d501c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.771121;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:fff;src:url('chunks/assets/font_49ef293e20bd2549831a0a54.woff2')format("woff");}.fff{font-family:fff;line-height:0.771546;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:ff10;src:url('chunks/assets/font_bfcaac8a40f3c93d2e479f1b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.lsf{letter-spacing:-7.236000px;}
.lse{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.691200px;}
.ls5{letter-spacing:-0.510000px;}
.ls1b{letter-spacing:-0.283338px;}
.ls1c{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.204000px;}
.ls8{letter-spacing:-0.162000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011400px;}
.ls3{letter-spacing:0.025800px;}
.ls19{letter-spacing:0.349800px;}
.ls12{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.888000px;}
.ls14{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.140000px;}
.ls17{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.497000px;}
.ls13{letter-spacing:7.089000px;}
.lsa{letter-spacing:14.483400px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.wse7{word-spacing:-16.434000px;}
.wsd7{word-spacing:-16.302000px;}
.ws9d{word-spacing:-15.900000px;}
.ws99{word-spacing:-15.600000px;}
.wsbf{word-spacing:-15.360000px;}
.ws7c{word-spacing:-15.300000px;}
.ws7d{word-spacing:-15.180000px;}
.ws3{word-spacing:-14.940000px;}
.ws2f{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.700000px;}
.ws30{word-spacing:-14.100000px;}
.ws6{word-spacing:-13.740000px;}
.ws2e{word-spacing:-13.560000px;}
.ws74{word-spacing:-13.446000px;}
.wse8{word-spacing:-13.392000px;}
.wseb{word-spacing:-13.230000px;}
.wsea{word-spacing:-13.176000px;}
.ws4{word-spacing:-13.068000px;}
.ws9{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.772000px;}
.ws1{word-spacing:-10.896000px;}
.wsdd{word-spacing:-10.860000px;}
.ws2d{word-spacing:-10.800000px;}
.wse2{word-spacing:-10.620000px;}
.wsa{word-spacing:-10.464000px;}
.wsd3{word-spacing:-10.416000px;}
.wsde{word-spacing:-10.380000px;}
.ws75{word-spacing:-10.206000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.wse3{word-spacing:-9.180000px;}
.wsc0{word-spacing:-9.024840px;}
.wse5{word-spacing:-8.820000px;}
.wse1{word-spacing:-8.520000px;}
.wse9{word-spacing:-7.524198px;}
.wse6{word-spacing:-7.200000px;}
.ws76{word-spacing:-6.210000px;}
.wsdf{word-spacing:-5.700000px;}
.ws5a{word-spacing:-5.520000px;}
.wse0{word-spacing:-5.340000px;}
.wse4{word-spacing:-4.260000px;}
.ws22{word-spacing:-4.080000px;}
.wsdc{word-spacing:-4.020000px;}
.ws71{word-spacing:-3.960000px;}
.ws72{word-spacing:-3.900000px;}
.ws37{word-spacing:-3.660000px;}
.ws47{word-spacing:-3.480000px;}
.ws9e{word-spacing:-3.420000px;}
.ws48{word-spacing:-3.300000px;}
.ws53{word-spacing:-3.120000px;}
.ws52{word-spacing:-3.060000px;}
.ws4a{word-spacing:-3.000000px;}
.ws9c{word-spacing:-2.880000px;}
.ws13{word-spacing:-2.646000px;}
.ws102{word-spacing:-2.592000px;}
.wsa3{word-spacing:-2.580000px;}
.ws103{word-spacing:-2.538000px;}
.wsdb{word-spacing:-2.520000px;}
.ws1e{word-spacing:-2.430000px;}
.ws40{word-spacing:-2.340000px;}
.ws24{word-spacing:-2.280000px;}
.ws108{word-spacing:-2.268000px;}
.ws3c{word-spacing:-2.220000px;}
.wsf5{word-spacing:-2.106000px;}
.ws96{word-spacing:-2.100000px;}
.ws38{word-spacing:-1.980000px;}
.wsa9{word-spacing:-1.860000px;}
.ws31{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.782000px;}
.wsd8{word-spacing:-1.728000px;}
.wsf4{word-spacing:-1.620000px;}
.ws109{word-spacing:-1.566000px;}
.ws25{word-spacing:-1.560000px;}
.ws2b{word-spacing:-1.500000px;}
.wsfa{word-spacing:-1.404000px;}
.ws49{word-spacing:-1.320000px;}
.wsca{word-spacing:-1.260000px;}
.wse{word-spacing:-1.254000px;}
.wsaf{word-spacing:-1.200000px;}
.ws23{word-spacing:-1.140000px;}
.ws100{word-spacing:-1.134000px;}
.ws60{word-spacing:-1.080000px;}
.wsf0{word-spacing:-1.026000px;}
.ws91{word-spacing:-1.020000px;}
.wsa8{word-spacing:-0.960000px;}
.ws107{word-spacing:-0.918000px;}
.ws36{word-spacing:-0.900000px;}
.ws90{word-spacing:-0.840000px;}
.ws78{word-spacing:-0.756000px;}
.ws55{word-spacing:-0.720000px;}
.wsa7{word-spacing:-0.660000px;}
.wsda{word-spacing:-0.630000px;}
.ws3b{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.594000px;}
.ws5b{word-spacing:-0.540000px;}
.ws42{word-spacing:-0.480000px;}
.ws10c{word-spacing:-0.432000px;}
.ws10a{word-spacing:-0.324000px;}
.ws54{word-spacing:-0.300000px;}
.ws1c{word-spacing:-0.270000px;}
.ws34{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.wsb5{word-spacing:-0.180000px;}
.wsd9{word-spacing:-0.168000px;}
.ws57{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws26{word-spacing:0.060000px;}
.ws89{word-spacing:0.120000px;}
.ws17{word-spacing:0.162000px;}
.ws45{word-spacing:0.180000px;}
.wsd{word-spacing:0.204000px;}
.ws81{word-spacing:0.240000px;}
.wsf1{word-spacing:0.324000px;}
.ws64{word-spacing:0.360000px;}
.wsc4{word-spacing:0.420000px;}
.wsc{word-spacing:0.510000px;}
.wsec{word-spacing:0.540000px;}
.wsf2{word-spacing:0.594000px;}
.wsef{word-spacing:0.600000px;}
.ws10{word-spacing:0.691200px;}
.ws1d{word-spacing:0.756000px;}
.ws33{word-spacing:0.780000px;}
.ws41{word-spacing:1.020000px;}
.ws35{word-spacing:1.140000px;}
.ws105{word-spacing:1.296000px;}
.ws79{word-spacing:1.350000px;}
.ws4c{word-spacing:1.380000px;}
.ws5f{word-spacing:1.440000px;}
.ws77{word-spacing:1.512000px;}
.wsc1{word-spacing:1.560000px;}
.wsae{word-spacing:1.620000px;}
.ws87{word-spacing:1.680000px;}
.wsff{word-spacing:1.782000px;}
.ws6a{word-spacing:1.800000px;}
.wsf6{word-spacing:1.836000px;}
.wsb2{word-spacing:1.860000px;}
.wsfd{word-spacing:1.890000px;}
.ws8f{word-spacing:1.920000px;}
.ws5d{word-spacing:2.040000px;}
.ws10b{word-spacing:2.052000px;}
.ws69{word-spacing:2.100000px;}
.ws2c{word-spacing:2.160000px;}
.ws1b{word-spacing:2.214000px;}
.ws70{word-spacing:2.220000px;}
.wsf7{word-spacing:2.268000px;}
.wsb6{word-spacing:2.280000px;}
.ws101{word-spacing:2.322000px;}
.ws80{word-spacing:2.460000px;}
.wsf9{word-spacing:2.538000px;}
.wsc9{word-spacing:2.580000px;}
.wsf8{word-spacing:2.592000px;}
.wscc{word-spacing:2.640000px;}
.wsc8{word-spacing:2.700000px;}
.wsc2{word-spacing:2.760000px;}
.ws32{word-spacing:2.820000px;}
.ws6d{word-spacing:2.880000px;}
.ws29{word-spacing:2.940000px;}
.wsb9{word-spacing:3.000000px;}
.ws1a{word-spacing:3.024000px;}
.wsee{word-spacing:3.060000px;}
.ws27{word-spacing:3.120000px;}
.wsd0{word-spacing:3.180000px;}
.ws98{word-spacing:3.240000px;}
.ws59{word-spacing:3.300000px;}
.ws28{word-spacing:3.360000px;}
.ws9f{word-spacing:3.420000px;}
.wsf3{word-spacing:3.456000px;}
.ws97{word-spacing:3.480000px;}
.wsa4{word-spacing:3.540000px;}
.ws106{word-spacing:3.564000px;}
.ws6b{word-spacing:3.660000px;}
.ws58{word-spacing:3.720000px;}
.wsc5{word-spacing:3.840000px;}
.ws3f{word-spacing:3.960000px;}
.wsc7{word-spacing:4.020000px;}
.wsba{word-spacing:4.080000px;}
.ws6e{word-spacing:4.140000px;}
.ws61{word-spacing:4.200000px;}
.ws82{word-spacing:4.260000px;}
.ws12{word-spacing:4.320000px;}
.ws11{word-spacing:4.374000px;}
.wsb7{word-spacing:4.380000px;}
.ws67{word-spacing:4.500000px;}
.ws73{word-spacing:4.560000px;}
.wsa6{word-spacing:4.620000px;}
.ws18{word-spacing:4.752000px;}
.ws6c{word-spacing:4.800000px;}
.ws19{word-spacing:4.806000px;}
.ws68{word-spacing:4.860000px;}
.ws39{word-spacing:4.920000px;}
.ws3a{word-spacing:4.980000px;}
.wsfc{word-spacing:5.022000px;}
.wsa5{word-spacing:5.100000px;}
.ws46{word-spacing:5.160000px;}
.ws3e{word-spacing:5.220000px;}
.wsab{word-spacing:5.400000px;}
.wsaa{word-spacing:5.460000px;}
.wsbb{word-spacing:5.580000px;}
.wscd{word-spacing:5.700000px;}
.wsc3{word-spacing:5.760000px;}
.ws3d{word-spacing:5.820000px;}
.ws10d{word-spacing:5.832000px;}
.ws95{word-spacing:5.940000px;}
.ws63{word-spacing:6.060000px;}
.ws94{word-spacing:6.120000px;}
.ws7f{word-spacing:6.180000px;}
.ws7e{word-spacing:6.240000px;}
.ws16{word-spacing:6.318000px;}
.ws15{word-spacing:6.372000px;}
.ws4b{word-spacing:6.420000px;}
.ws21{word-spacing:6.534000px;}
.ws2a{word-spacing:6.540000px;}
.ws20{word-spacing:6.588000px;}
.ws93{word-spacing:6.600000px;}
.ws92{word-spacing:6.660000px;}
.ws6f{word-spacing:6.780000px;}
.ws104{word-spacing:6.804000px;}
.wsbe{word-spacing:6.840000px;}
.ws5e{word-spacing:6.900000px;}
.wscb{word-spacing:6.960000px;}
.ws8e{word-spacing:7.080000px;}
.ws44{word-spacing:7.140000px;}
.wsfb{word-spacing:7.182000px;}
.wsfe{word-spacing:7.290000px;}
.ws9b{word-spacing:7.380000px;}
.ws9a{word-spacing:7.440000px;}
.ws5c{word-spacing:7.560000px;}
.wsc6{word-spacing:7.740000px;}
.ws8c{word-spacing:7.800000px;}
.wsa0{word-spacing:7.860000px;}
.ws66{word-spacing:8.100000px;}
.wsed{word-spacing:8.280000px;}
.ws8d{word-spacing:8.400000px;}
.ws84{word-spacing:8.460000px;}
.ws83{word-spacing:8.520000px;}
.ws43{word-spacing:8.640000px;}
.ws56{word-spacing:8.700000px;}
.ws65{word-spacing:8.820000px;}
.wsd1{word-spacing:8.880000px;}
.ws88{word-spacing:8.940000px;}
.ws8b{word-spacing:9.060000px;}
.ws8a{word-spacing:9.120000px;}
.wscf{word-spacing:9.180000px;}
.wsb4{word-spacing:9.240000px;}
.wsb3{word-spacing:9.360000px;}
.ws62{word-spacing:9.600000px;}
.wsb8{word-spacing:9.840000px;}
.wsb1{word-spacing:10.020000px;}
.wsb0{word-spacing:10.140000px;}
.wsad{word-spacing:10.320000px;}
.ws85{word-spacing:10.380000px;}
.wsac{word-spacing:10.440000px;}
.ws86{word-spacing:10.500000px;}
.ws4f{word-spacing:10.740000px;}
.ws4e{word-spacing:10.800000px;}
.wsa1{word-spacing:11.160000px;}
.wsa2{word-spacing:11.280000px;}
.ws7b{word-spacing:11.340000px;}
.ws50{word-spacing:11.580000px;}
.ws51{word-spacing:11.700000px;}
.wsce{word-spacing:12.360000px;}
.ws7a{word-spacing:12.600000px;}
.ws4d{word-spacing:14.520000px;}
.wsbc{word-spacing:15.240000px;}
.wsbd{word-spacing:15.420000px;}
.ws10e{word-spacing:15.930000px;}
.ws10f{word-spacing:24.462000px;}
.wsd6{word-spacing:187.213800px;}
.wsd2{word-spacing:190.476000px;}
.wsd4{word-spacing:293.765400px;}
.wsd5{word-spacing:336.739200px;}
._8{margin-left:-10.504200px;}
._d{margin-left:-9.462000px;}
._b{margin-left:-8.329800px;}
._9{margin-left:-6.727200px;}
._3{margin-left:-4.794000px;}
._1{margin-left:-3.521400px;}
._4{margin-left:-2.435400px;}
._2{margin-left:-1.244400px;}
._0{width:1.234200px;}
._a{width:2.286000px;}
._7{width:3.535800px;}
._6{width:4.537800px;}
._c{width:5.553000px;}
._e{width:6.973200px;}
._f{width:8.866200px;}
._10{width:10.403400px;}
._48{width:12.839400px;}
._4a{width:14.014800px;}
._5{width:36.624000px;}
._4b{width:42.828000px;}
._4c{width:43.975800px;}
._3e{width:47.660400px;}
._37{width:57.390600px;}
._3d{width:82.664400px;}
._47{width:87.480000px;}
._49{width:89.160000px;}
._38{width:92.362200px;}
._44{width:109.477800px;}
._3f{width:120.232200px;}
._32{width:124.137600px;}
._43{width:127.186800px;}
._36{width:130.019400px;}
._20{width:138.223800px;}
._46{width:139.564200px;}
._45{width:142.644600px;}
._28{width:143.866200px;}
._11{width:151.398600px;}
._40{width:156.498600px;}
._1d{width:157.670400px;}
._29{width:159.993000px;}
._41{width:167.388600px;}
._16{width:170.175600px;}
._1c{width:173.624400px;}
._2e{width:186.646800px;}
._1b{width:211.954200px;}
._2c{width:213.178800px;}
._42{width:220.315800px;}
._2b{width:224.234400px;}
._12{width:225.480600px;}
._2a{width:227.928000px;}
._1a{width:232.869000px;}
._31{width:236.715600px;}
._2f{width:242.905800px;}
._33{width:245.279400px;}
._24{width:247.748400px;}
._2d{width:250.154400px;}
._30{width:253.298400px;}
._17{width:255.528600px;}
._39{width:263.644800px;}
._14{width:267.499200px;}
._35{width:275.739600px;}
._34{width:279.230400px;}
._19{width:281.564400px;}
._3c{width:282.949200px;}
._21{width:288.881400px;}
._1f{width:292.676400px;}
._13{width:298.662600px;}
._18{width:303.121200px;}
._22{width:307.489200px;}
._15{width:320.574000px;}
._23{width:339.031200px;}
._3a{width:355.994400px;}
._1e{width:357.661800px;}
._25{width:367.858200px;}
._27{width:395.173200px;}
._26{width:399.217800px;}
._3b{width:426.315000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.ya4{bottom:113.078700px;}
.y67{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.ye{bottom:117.875550px;}
.yd{bottom:132.275550px;}
.y75{bottom:134.078700px;}
.y66{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yc{bottom:146.675550px;}
.y74{bottom:155.078700px;}
.y6e{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.yb{bottom:161.075550px;}
.y73{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.ya2{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y36{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.ya3{bottom:207.028350px;}
.y35{bottom:217.392600px;}
.ya1{bottom:218.078700px;}
.y63{bottom:218.078850px;}
.y72{bottom:218.524950px;}
.y26{bottom:222.212700px;}
.y34{bottom:235.392600px;}
.y71{bottom:238.324950px;}
.ya0{bottom:239.078700px;}
.y6d{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y62{bottom:251.314950px;}
.y33{bottom:253.392600px;}
.y70{bottom:258.124950px;}
.y9f{bottom:260.078700px;}
.y6c{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y32{bottom:271.392600px;}
.y6f{bottom:277.924950px;}
.y9e{bottom:281.078700px;}
.y6b{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y31{bottom:289.392600px;}
.y9d{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y30{bottom:307.392600px;}
.ycc{bottom:316.440900px;}
.y9c{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y21{bottom:327.212700px;}
.y2f{bottom:342.400500px;}
.y9b{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y20{bottom:348.212700px;}
.y2e{bottom:360.400500px;}
.y9a{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.y2d{bottom:378.400500px;}
.y1f{bottom:383.100450px;}
.y99{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.ycb{bottom:391.529250px;}
.y2c{bottom:396.400500px;}
.y98{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y97{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y96{bottom:449.078700px;}
.y5a{bottom:449.078850px;}
.y1e{bottom:463.627950px;}
.y95{bottom:470.078700px;}
.y59{bottom:470.078850px;}
.y1d{bottom:483.427950px;}
.y94{bottom:491.078700px;}
.y6a{bottom:491.078850px;}
.y58{bottom:505.441050px;}
.y93{bottom:512.078700px;}
.y69{bottom:512.078850px;}
.y1c{bottom:524.487900px;}
.y92{bottom:533.078700px;}
.y68{bottom:533.078850px;}
.y1b{bottom:544.287900px;}
.y91{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.yca{bottom:559.529250px;}
.y1a{bottom:564.087900px;}
.yc2{bottom:566.955750px;}
.y90{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y19{bottom:583.887750px;}
.y8f{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y18{bottom:603.687900px;}
.yc1{bottom:613.012800px;}
.y8e{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.yc9{bottom:622.529250px;}
.y17{bottom:623.487900px;}
.yc0{bottom:626.512800px;}
.y8d{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y16{bottom:643.287900px;}
.ybf{bottom:647.143650px;}
.y8c{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.ybe{bottom:660.643650px;}
.y15{bottom:663.087900px;}
.ybd{bottom:674.143650px;}
.y8b{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.y14{bottom:682.887750px;}
.yc8{bottom:685.529250px;}
.ybc{bottom:694.774650px;}
.y8a{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.y13{bottom:702.687900px;}
.ybb{bottom:715.405500px;}
.y89{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.y12{bottom:722.487900px;}
.yba{bottom:728.905500px;}
.y11{bottom:742.287900px;}
.y88{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.yc7{bottom:748.529250px;}
.yb9{bottom:749.536350px;}
.y87{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.yb8{bottom:770.167350px;}
.y10{bottom:773.385300px;}
.y86{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.yb7{bottom:790.798350px;}
.yb6{bottom:804.298350px;}
.y85{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.yc6{bottom:811.529250px;}
.yb5{bottom:824.929200px;}
.y84{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.yb4{bottom:845.560050px;}
.y83{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.yb3{bottom:866.190900px;}
.y82{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.yc5{bottom:874.936950px;}
.yb2{bottom:879.690900px;}
.y8{bottom:888.666900px;}
.y81{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.yb1{bottom:900.321900px;}
.yc4{bottom:904.440900px;}
.y7{bottom:906.666900px;}
.y80{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.yb0{bottom:913.821900px;}
.y6{bottom:924.666900px;}
.y7f{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.yaf{bottom:934.452750px;}
.yae{bottom:947.952750px;}
.y7e{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.y5{bottom:959.674650px;}
.yad{bottom:968.583750px;}
.y7d{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yac{bottom:982.083750px;}
.y7c{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.yab{bottom:1002.714600px;}
.y7b{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.yaa{bottom:1016.214600px;}
.y3{bottom:1016.282550px;}
.ya9{bottom:1029.714600px;}
.y7a{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ya8{bottom:1050.345450px;}
.y79{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.ya7{bottom:1070.126100px;}
.y78{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.ya6{bottom:1099.482900px;}
.y77{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.yc3{bottom:1111.570800px;}
.ya5{bottom:1119.282900px;}
.y76{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h12{height:33.448242px;}
.h13{height:34.125000px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h9{height:43.875000px;}
.h11{height:43.980469px;}
.h8{height:45.615234px;}
.hb{height:48.750000px;}
.hf{height:48.867188px;}
.h10{height:49.365234px;}
.h14{height:50.176758px;}
.h4{height:53.625000px;}
.ha{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.xe{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.xd{left:128.634450px;}
.xf{left:203.244750px;}
.x2a{left:204.311250px;}
.x19{left:209.051100px;}
.x29{left:217.115700px;}
.x23{left:225.357300px;}
.x26{left:233.970600px;}
.x4{left:300.189000px;}
.x11{left:310.129350px;}
.x2c{left:312.738900px;}
.x2b{left:314.400150px;}
.x10{left:315.433200px;}
.x5{left:317.196900px;}
.x1a{left:319.242450px;}
.x1b{left:326.135700px;}
.x27{left:333.093000px;}
.x32{left:334.204650px;}
.x24{left:337.681500px;}
.x3{left:396.050700px;}
.x1d{left:416.267700px;}
.x2d{left:421.578600px;}
.x12{left:426.600450px;}
.x1c{left:447.800400px;}
.x13{left:449.828100px;}
.x28{left:462.566100px;}
.x1e{left:561.081000px;}
.x2e{left:568.709850px;}
.x2f{left:572.106450px;}
.x14{left:577.077000px;}
.x1f{left:578.230650px;}
.x15{left:602.004300px;}
.xa{left:648.686550px;}
.x9{left:668.362350px;}
.x20{left:685.337850px;}
.x30{left:697.224750px;}
.x17{left:700.262400px;}
.x16{left:703.210500px;}
.x31{left:716.450850px;}
.x21{left:722.990250px;}
.x25{left:724.994850px;}
.x18{left:729.073350px;}
.x22{left:731.626650px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.lsf{letter-spacing:-6.432000pt;}
.lse{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls5{letter-spacing:-0.453333pt;}
.ls1b{letter-spacing:-0.251856pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.181333pt;}
.ls8{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010133pt;}
.ls3{letter-spacing:0.022933pt;}
.ls19{letter-spacing:0.310933pt;}
.ls12{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.789333pt;}
.ls14{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.013333pt;}
.ls17{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.330667pt;}
.ls13{letter-spacing:6.301333pt;}
.lsa{letter-spacing:12.874133pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws5{word-spacing:-15.936000pt;}
.wse7{word-spacing:-14.608000pt;}
.wsd7{word-spacing:-14.490667pt;}
.ws9d{word-spacing:-14.133333pt;}
.ws99{word-spacing:-13.866667pt;}
.wsbf{word-spacing:-13.653333pt;}
.ws7c{word-spacing:-13.600000pt;}
.ws7d{word-spacing:-13.493333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2f{word-spacing:-13.226667pt;}
.ws7{word-spacing:-13.066667pt;}
.ws30{word-spacing:-12.533333pt;}
.ws6{word-spacing:-12.213333pt;}
.ws2e{word-spacing:-12.053333pt;}
.ws74{word-spacing:-11.952000pt;}
.wse8{word-spacing:-11.904000pt;}
.wseb{word-spacing:-11.760000pt;}
.wsea{word-spacing:-11.712000pt;}
.ws4{word-spacing:-11.616000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.464000pt;}
.ws1{word-spacing:-9.685333pt;}
.wsdd{word-spacing:-9.653333pt;}
.ws2d{word-spacing:-9.600000pt;}
.wse2{word-spacing:-9.440000pt;}
.wsa{word-spacing:-9.301333pt;}
.wsd3{word-spacing:-9.258667pt;}
.wsde{word-spacing:-9.226667pt;}
.ws75{word-spacing:-9.072000pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.wse3{word-spacing:-8.160000pt;}
.wsc0{word-spacing:-8.022080pt;}
.wse5{word-spacing:-7.840000pt;}
.wse1{word-spacing:-7.573333pt;}
.wse9{word-spacing:-6.688176pt;}
.wse6{word-spacing:-6.400000pt;}
.ws76{word-spacing:-5.520000pt;}
.wsdf{word-spacing:-5.066667pt;}
.ws5a{word-spacing:-4.906667pt;}
.wse0{word-spacing:-4.746667pt;}
.wse4{word-spacing:-3.786667pt;}
.ws22{word-spacing:-3.626667pt;}
.wsdc{word-spacing:-3.573333pt;}
.ws71{word-spacing:-3.520000pt;}
.ws72{word-spacing:-3.466667pt;}
.ws37{word-spacing:-3.253333pt;}
.ws47{word-spacing:-3.093333pt;}
.ws9e{word-spacing:-3.040000pt;}
.ws48{word-spacing:-2.933333pt;}
.ws53{word-spacing:-2.773333pt;}
.ws52{word-spacing:-2.720000pt;}
.ws4a{word-spacing:-2.666667pt;}
.ws9c{word-spacing:-2.560000pt;}
.ws13{word-spacing:-2.352000pt;}
.ws102{word-spacing:-2.304000pt;}
.wsa3{word-spacing:-2.293333pt;}
.ws103{word-spacing:-2.256000pt;}
.wsdb{word-spacing:-2.240000pt;}
.ws1e{word-spacing:-2.160000pt;}
.ws40{word-spacing:-2.080000pt;}
.ws24{word-spacing:-2.026667pt;}
.ws108{word-spacing:-2.016000pt;}
.ws3c{word-spacing:-1.973333pt;}
.wsf5{word-spacing:-1.872000pt;}
.ws96{word-spacing:-1.866667pt;}
.ws38{word-spacing:-1.760000pt;}
.wsa9{word-spacing:-1.653333pt;}
.ws31{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-1.584000pt;}
.wsd8{word-spacing:-1.536000pt;}
.wsf4{word-spacing:-1.440000pt;}
.ws109{word-spacing:-1.392000pt;}
.ws25{word-spacing:-1.386667pt;}
.ws2b{word-spacing:-1.333333pt;}
.wsfa{word-spacing:-1.248000pt;}
.ws49{word-spacing:-1.173333pt;}
.wsca{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.114667pt;}
.wsaf{word-spacing:-1.066667pt;}
.ws23{word-spacing:-1.013333pt;}
.ws100{word-spacing:-1.008000pt;}
.ws60{word-spacing:-0.960000pt;}
.wsf0{word-spacing:-0.912000pt;}
.ws91{word-spacing:-0.906667pt;}
.wsa8{word-spacing:-0.853333pt;}
.ws107{word-spacing:-0.816000pt;}
.ws36{word-spacing:-0.800000pt;}
.ws90{word-spacing:-0.746667pt;}
.ws78{word-spacing:-0.672000pt;}
.ws55{word-spacing:-0.640000pt;}
.wsa7{word-spacing:-0.586667pt;}
.wsda{word-spacing:-0.560000pt;}
.ws3b{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.528000pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws42{word-spacing:-0.426667pt;}
.ws10c{word-spacing:-0.384000pt;}
.ws10a{word-spacing:-0.288000pt;}
.ws54{word-spacing:-0.266667pt;}
.ws1c{word-spacing:-0.240000pt;}
.ws34{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.wsb5{word-spacing:-0.160000pt;}
.wsd9{word-spacing:-0.149333pt;}
.ws57{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053333pt;}
.ws89{word-spacing:0.106667pt;}
.ws17{word-spacing:0.144000pt;}
.ws45{word-spacing:0.160000pt;}
.wsd{word-spacing:0.181333pt;}
.ws81{word-spacing:0.213333pt;}
.wsf1{word-spacing:0.288000pt;}
.ws64{word-spacing:0.320000pt;}
.wsc4{word-spacing:0.373333pt;}
.wsc{word-spacing:0.453333pt;}
.wsec{word-spacing:0.480000pt;}
.wsf2{word-spacing:0.528000pt;}
.wsef{word-spacing:0.533333pt;}
.ws10{word-spacing:0.614400pt;}
.ws1d{word-spacing:0.672000pt;}
.ws33{word-spacing:0.693333pt;}
.ws41{word-spacing:0.906667pt;}
.ws35{word-spacing:1.013333pt;}
.ws105{word-spacing:1.152000pt;}
.ws79{word-spacing:1.200000pt;}
.ws4c{word-spacing:1.226667pt;}
.ws5f{word-spacing:1.280000pt;}
.ws77{word-spacing:1.344000pt;}
.wsc1{word-spacing:1.386667pt;}
.wsae{word-spacing:1.440000pt;}
.ws87{word-spacing:1.493333pt;}
.wsff{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.600000pt;}
.wsf6{word-spacing:1.632000pt;}
.wsb2{word-spacing:1.653333pt;}
.wsfd{word-spacing:1.680000pt;}
.ws8f{word-spacing:1.706667pt;}
.ws5d{word-spacing:1.813333pt;}
.ws10b{word-spacing:1.824000pt;}
.ws69{word-spacing:1.866667pt;}
.ws2c{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.968000pt;}
.ws70{word-spacing:1.973333pt;}
.wsf7{word-spacing:2.016000pt;}
.wsb6{word-spacing:2.026667pt;}
.ws101{word-spacing:2.064000pt;}
.ws80{word-spacing:2.186667pt;}
.wsf9{word-spacing:2.256000pt;}
.wsc9{word-spacing:2.293333pt;}
.wsf8{word-spacing:2.304000pt;}
.wscc{word-spacing:2.346667pt;}
.wsc8{word-spacing:2.400000pt;}
.wsc2{word-spacing:2.453333pt;}
.ws32{word-spacing:2.506667pt;}
.ws6d{word-spacing:2.560000pt;}
.ws29{word-spacing:2.613333pt;}
.wsb9{word-spacing:2.666667pt;}
.ws1a{word-spacing:2.688000pt;}
.wsee{word-spacing:2.720000pt;}
.ws27{word-spacing:2.773333pt;}
.wsd0{word-spacing:2.826667pt;}
.ws98{word-spacing:2.880000pt;}
.ws59{word-spacing:2.933333pt;}
.ws28{word-spacing:2.986667pt;}
.ws9f{word-spacing:3.040000pt;}
.wsf3{word-spacing:3.072000pt;}
.ws97{word-spacing:3.093333pt;}
.wsa4{word-spacing:3.146667pt;}
.ws106{word-spacing:3.168000pt;}
.ws6b{word-spacing:3.253333pt;}
.ws58{word-spacing:3.306667pt;}
.wsc5{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.520000pt;}
.wsc7{word-spacing:3.573333pt;}
.wsba{word-spacing:3.626667pt;}
.ws6e{word-spacing:3.680000pt;}
.ws61{word-spacing:3.733333pt;}
.ws82{word-spacing:3.786667pt;}
.ws12{word-spacing:3.840000pt;}
.ws11{word-spacing:3.888000pt;}
.wsb7{word-spacing:3.893333pt;}
.ws67{word-spacing:4.000000pt;}
.ws73{word-spacing:4.053333pt;}
.wsa6{word-spacing:4.106667pt;}
.ws18{word-spacing:4.224000pt;}
.ws6c{word-spacing:4.266667pt;}
.ws19{word-spacing:4.272000pt;}
.ws68{word-spacing:4.320000pt;}
.ws39{word-spacing:4.373333pt;}
.ws3a{word-spacing:4.426667pt;}
.wsfc{word-spacing:4.464000pt;}
.wsa5{word-spacing:4.533333pt;}
.ws46{word-spacing:4.586667pt;}
.ws3e{word-spacing:4.640000pt;}
.wsab{word-spacing:4.800000pt;}
.wsaa{word-spacing:4.853333pt;}
.wsbb{word-spacing:4.960000pt;}
.wscd{word-spacing:5.066667pt;}
.wsc3{word-spacing:5.120000pt;}
.ws3d{word-spacing:5.173333pt;}
.ws10d{word-spacing:5.184000pt;}
.ws95{word-spacing:5.280000pt;}
.ws63{word-spacing:5.386667pt;}
.ws94{word-spacing:5.440000pt;}
.ws7f{word-spacing:5.493333pt;}
.ws7e{word-spacing:5.546667pt;}
.ws16{word-spacing:5.616000pt;}
.ws15{word-spacing:5.664000pt;}
.ws4b{word-spacing:5.706667pt;}
.ws21{word-spacing:5.808000pt;}
.ws2a{word-spacing:5.813333pt;}
.ws20{word-spacing:5.856000pt;}
.ws93{word-spacing:5.866667pt;}
.ws92{word-spacing:5.920000pt;}
.ws6f{word-spacing:6.026667pt;}
.ws104{word-spacing:6.048000pt;}
.wsbe{word-spacing:6.080000pt;}
.ws5e{word-spacing:6.133333pt;}
.wscb{word-spacing:6.186667pt;}
.ws8e{word-spacing:6.293333pt;}
.ws44{word-spacing:6.346667pt;}
.wsfb{word-spacing:6.384000pt;}
.wsfe{word-spacing:6.480000pt;}
.ws9b{word-spacing:6.560000pt;}
.ws9a{word-spacing:6.613333pt;}
.ws5c{word-spacing:6.720000pt;}
.wsc6{word-spacing:6.880000pt;}
.ws8c{word-spacing:6.933333pt;}
.wsa0{word-spacing:6.986667pt;}
.ws66{word-spacing:7.200000pt;}
.wsed{word-spacing:7.360000pt;}
.ws8d{word-spacing:7.466667pt;}
.ws84{word-spacing:7.520000pt;}
.ws83{word-spacing:7.573333pt;}
.ws43{word-spacing:7.680000pt;}
.ws56{word-spacing:7.733333pt;}
.ws65{word-spacing:7.840000pt;}
.wsd1{word-spacing:7.893333pt;}
.ws88{word-spacing:7.946667pt;}
.ws8b{word-spacing:8.053333pt;}
.ws8a{word-spacing:8.106667pt;}
.wscf{word-spacing:8.160000pt;}
.wsb4{word-spacing:8.213333pt;}
.wsb3{word-spacing:8.320000pt;}
.ws62{word-spacing:8.533333pt;}
.wsb8{word-spacing:8.746667pt;}
.wsb1{word-spacing:8.906667pt;}
.wsb0{word-spacing:9.013333pt;}
.wsad{word-spacing:9.173333pt;}
.ws85{word-spacing:9.226667pt;}
.wsac{word-spacing:9.280000pt;}
.ws86{word-spacing:9.333333pt;}
.ws4f{word-spacing:9.546667pt;}
.ws4e{word-spacing:9.600000pt;}
.wsa1{word-spacing:9.920000pt;}
.wsa2{word-spacing:10.026667pt;}
.ws7b{word-spacing:10.080000pt;}
.ws50{word-spacing:10.293333pt;}
.ws51{word-spacing:10.400000pt;}
.wsce{word-spacing:10.986667pt;}
.ws7a{word-spacing:11.200000pt;}
.ws4d{word-spacing:12.906667pt;}
.wsbc{word-spacing:13.546667pt;}
.wsbd{word-spacing:13.706667pt;}
.ws10e{word-spacing:14.160000pt;}
.ws10f{word-spacing:21.744000pt;}
.wsd6{word-spacing:166.412267pt;}
.wsd2{word-spacing:169.312000pt;}
.wsd4{word-spacing:261.124800pt;}
.wsd5{word-spacing:299.323733pt;}
._8{margin-left:-9.337067pt;}
._d{margin-left:-8.410667pt;}
._b{margin-left:-7.404267pt;}
._9{margin-left:-5.979733pt;}
._3{margin-left:-4.261333pt;}
._1{margin-left:-3.130133pt;}
._4{margin-left:-2.164800pt;}
._2{margin-left:-1.106133pt;}
._0{width:1.097067pt;}
._a{width:2.032000pt;}
._7{width:3.142933pt;}
._6{width:4.033600pt;}
._c{width:4.936000pt;}
._e{width:6.198400pt;}
._f{width:7.881067pt;}
._10{width:9.247467pt;}
._48{width:11.412800pt;}
._4a{width:12.457600pt;}
._5{width:32.554667pt;}
._4b{width:38.069333pt;}
._4c{width:39.089600pt;}
._3e{width:42.364800pt;}
._37{width:51.013867pt;}
._3d{width:73.479467pt;}
._47{width:77.760000pt;}
._49{width:79.253333pt;}
._38{width:82.099733pt;}
._44{width:97.313600pt;}
._3f{width:106.873067pt;}
._32{width:110.344533pt;}
._43{width:113.054933pt;}
._36{width:115.572800pt;}
._20{width:122.865600pt;}
._46{width:124.057067pt;}
._45{width:126.795200pt;}
._28{width:127.881067pt;}
._11{width:134.576533pt;}
._40{width:139.109867pt;}
._1d{width:140.151467pt;}
._29{width:142.216000pt;}
._41{width:148.789867pt;}
._16{width:151.267200pt;}
._1c{width:154.332800pt;}
._2e{width:165.908267pt;}
._1b{width:188.403733pt;}
._2c{width:189.492267pt;}
._42{width:195.836267pt;}
._2b{width:199.319467pt;}
._12{width:200.427200pt;}
._2a{width:202.602667pt;}
._1a{width:206.994667pt;}
._31{width:210.413867pt;}
._2f{width:215.916267pt;}
._33{width:218.026133pt;}
._24{width:220.220800pt;}
._2d{width:222.359467pt;}
._30{width:225.154133pt;}
._17{width:227.136533pt;}
._39{width:234.350933pt;}
._14{width:237.777067pt;}
._35{width:245.101867pt;}
._34{width:248.204800pt;}
._19{width:250.279467pt;}
._3c{width:251.510400pt;}
._21{width:256.783467pt;}
._1f{width:260.156800pt;}
._13{width:265.477867pt;}
._18{width:269.441067pt;}
._22{width:273.323733pt;}
._15{width:284.954667pt;}
._23{width:301.361067pt;}
._3a{width:316.439467pt;}
._1e{width:317.921600pt;}
._25{width:326.985067pt;}
._27{width:351.265067pt;}
._26{width:354.860267pt;}
._3b{width:378.946667pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.ya4{bottom:100.514400pt;}
.y67{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.ye{bottom:104.778267pt;}
.yd{bottom:117.578267pt;}
.y75{bottom:119.181067pt;}
.y66{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yc{bottom:130.378267pt;}
.y74{bottom:137.847733pt;}
.y6e{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.yb{bottom:143.178267pt;}
.y73{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.ya2{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y36{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.ya3{bottom:184.025200pt;}
.y35{bottom:193.237867pt;}
.ya1{bottom:193.847733pt;}
.y63{bottom:193.847867pt;}
.y72{bottom:194.244400pt;}
.y26{bottom:197.522400pt;}
.y34{bottom:209.237867pt;}
.y71{bottom:211.844400pt;}
.ya0{bottom:212.514400pt;}
.y6d{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y62{bottom:223.391067pt;}
.y33{bottom:225.237867pt;}
.y70{bottom:229.444400pt;}
.y9f{bottom:231.181067pt;}
.y6c{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y32{bottom:241.237867pt;}
.y6f{bottom:247.044400pt;}
.y9e{bottom:249.847733pt;}
.y6b{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y31{bottom:257.237867pt;}
.y9d{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y30{bottom:273.237867pt;}
.ycc{bottom:281.280800pt;}
.y9c{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y21{bottom:290.855733pt;}
.y2f{bottom:304.356000pt;}
.y9b{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y20{bottom:309.522400pt;}
.y2e{bottom:320.356000pt;}
.y9a{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.y2d{bottom:336.356000pt;}
.y1f{bottom:340.533733pt;}
.y99{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.ycb{bottom:348.026000pt;}
.y2c{bottom:352.356000pt;}
.y98{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y97{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y96{bottom:399.181067pt;}
.y5a{bottom:399.181200pt;}
.y1e{bottom:412.113733pt;}
.y95{bottom:417.847733pt;}
.y59{bottom:417.847867pt;}
.y1d{bottom:429.713733pt;}
.y94{bottom:436.514400pt;}
.y6a{bottom:436.514533pt;}
.y58{bottom:449.280933pt;}
.y93{bottom:455.181067pt;}
.y69{bottom:455.181200pt;}
.y1c{bottom:466.211467pt;}
.y92{bottom:473.847733pt;}
.y68{bottom:473.847867pt;}
.y1b{bottom:483.811467pt;}
.y91{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.yca{bottom:497.359333pt;}
.y1a{bottom:501.411467pt;}
.yc2{bottom:503.960667pt;}
.y90{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y19{bottom:519.011333pt;}
.y8f{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y18{bottom:536.611467pt;}
.yc1{bottom:544.900267pt;}
.y8e{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.yc9{bottom:553.359333pt;}
.y17{bottom:554.211467pt;}
.yc0{bottom:556.900267pt;}
.y8d{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y16{bottom:571.811467pt;}
.ybf{bottom:575.238800pt;}
.y8c{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.ybe{bottom:587.238800pt;}
.y15{bottom:589.411467pt;}
.ybd{bottom:599.238800pt;}
.y8b{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.y14{bottom:607.011333pt;}
.yc8{bottom:609.359333pt;}
.ybc{bottom:617.577467pt;}
.y8a{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.y13{bottom:624.611467pt;}
.ybb{bottom:635.916000pt;}
.y89{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.y12{bottom:642.211467pt;}
.yba{bottom:647.916000pt;}
.y11{bottom:659.811467pt;}
.y88{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.yc7{bottom:665.359333pt;}
.yb9{bottom:666.254533pt;}
.y87{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.yb8{bottom:684.593200pt;}
.y10{bottom:687.453600pt;}
.y86{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.yb7{bottom:702.931867pt;}
.yb6{bottom:714.931867pt;}
.y85{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.yc6{bottom:721.359333pt;}
.yb5{bottom:733.270400pt;}
.y84{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.yb4{bottom:751.608933pt;}
.y83{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.yb3{bottom:769.947467pt;}
.y82{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.yc5{bottom:777.721733pt;}
.yb2{bottom:781.947467pt;}
.y8{bottom:789.926133pt;}
.y81{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.yb1{bottom:800.286133pt;}
.yc4{bottom:803.947467pt;}
.y7{bottom:805.926133pt;}
.y80{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.yb0{bottom:812.286133pt;}
.y6{bottom:821.926133pt;}
.y7f{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.yaf{bottom:830.624667pt;}
.yae{bottom:842.624667pt;}
.y7e{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.y5{bottom:853.044133pt;}
.yad{bottom:860.963333pt;}
.y7d{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yac{bottom:872.963333pt;}
.y7c{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.yab{bottom:891.301867pt;}
.y7b{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.yaa{bottom:903.301867pt;}
.y3{bottom:903.362267pt;}
.ya9{bottom:915.301867pt;}
.y7a{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ya8{bottom:933.640400pt;}
.y79{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.ya7{bottom:951.223200pt;}
.y78{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.ya6{bottom:977.318133pt;}
.y77{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.yc3{bottom:988.062933pt;}
.ya5{bottom:994.918133pt;}
.y76{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h12{height:29.731771pt;}
.h13{height:30.333333pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h9{height:39.000000pt;}
.h11{height:39.093750pt;}
.h8{height:40.546875pt;}
.hb{height:43.333333pt;}
.hf{height:43.437500pt;}
.h10{height:43.880208pt;}
.h14{height:44.601562pt;}
.h4{height:47.666667pt;}
.ha{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.xe{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.xd{left:114.341733pt;}
.xf{left:180.662000pt;}
.x2a{left:181.610000pt;}
.x19{left:185.823200pt;}
.x29{left:192.991733pt;}
.x23{left:200.317600pt;}
.x26{left:207.973867pt;}
.x4{left:266.834667pt;}
.x11{left:275.670533pt;}
.x2c{left:277.990133pt;}
.x2b{left:279.466800pt;}
.x10{left:280.385067pt;}
.x5{left:281.952800pt;}
.x1a{left:283.771067pt;}
.x1b{left:289.898400pt;}
.x27{left:296.082667pt;}
.x32{left:297.070800pt;}
.x24{left:300.161333pt;}
.x3{left:352.045067pt;}
.x1d{left:370.015733pt;}
.x2d{left:374.736533pt;}
.x12{left:379.200400pt;}
.x1c{left:398.044800pt;}
.x13{left:399.847200pt;}
.x28{left:411.169867pt;}
.x1e{left:498.738667pt;}
.x2e{left:505.519867pt;}
.x2f{left:508.539067pt;}
.x14{left:512.957333pt;}
.x1f{left:513.982800pt;}
.x15{left:535.114933pt;}
.xa{left:576.610267pt;}
.x9{left:594.099867pt;}
.x20{left:609.189200pt;}
.x30{left:619.755333pt;}
.x17{left:622.455467pt;}
.x16{left:625.076000pt;}
.x31{left:636.845200pt;}
.x21{left:642.658000pt;}
.x25{left:644.439867pt;}
.x18{left:648.065200pt;}
.x22{left:650.334800pt;}
.x1{left:712.311867pt;}
}




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