
    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_d5a9f4ec8f1ab36874db1ec8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.176270;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_8729a9532d54c41b1e442580.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954500;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_f200aa4ea504e63bcd51a334.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877000;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_49a2bdec07fbf3df8660f8d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_b19ce3965b5ddcb75feafffb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088867;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_cbb909cabb4252c558cb4d1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.057129;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_fed9a5d6e0281784db144b0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_c8b4398582e8497afb2031cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734863;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_bf4cc6505d6a1918f42f26d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_c8b4398582e8497afb2031cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734863;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_1b3c1ad7ccb80e53c1fb327c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.945801;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_f1fb27a426170014eed7ad55.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.034000;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_0e03976e29b65fd3ebf37714.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;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;}
.m3{transform:matrix(0.222306,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.222306,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.222306,0.000000,-0.051978,0.244537,0,0);}
.m2{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,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);}
.m1{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.959000px;}
.ls22{letter-spacing:-4.140000px;}
.ls26{letter-spacing:-3.540000px;}
.ls21{letter-spacing:-3.360000px;}
.ls1e{letter-spacing:-3.000000px;}
.ls16{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.120000px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.225000px;}
.ls0{letter-spacing:0.231000px;}
.ls30{letter-spacing:0.258600px;}
.ls2e{letter-spacing:0.259200px;}
.ls6{letter-spacing:0.261000px;}
.ls3{letter-spacing:0.264600px;}
.ls2b{letter-spacing:0.265200px;}
.ls27{letter-spacing:0.265800px;}
.ls2{letter-spacing:0.268200px;}
.lsc{letter-spacing:0.268380px;}
.ls31{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.270600px;}
.lsb{letter-spacing:0.273600px;}
.ls29{letter-spacing:0.277800px;}
.ls1d{letter-spacing:0.289800px;}
.ls25{letter-spacing:0.290400px;}
.ls24{letter-spacing:0.292800px;}
.ls23{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.299400px;}
.lse{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.307800px;}
.ls17{letter-spacing:0.310800px;}
.ls1{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.349800px;}
.ls2d{letter-spacing:0.511200px;}
.ls1f{letter-spacing:0.600000px;}
.ls2a{letter-spacing:0.680400px;}
.ls1a{letter-spacing:1.260000px;}
.ls9{letter-spacing:1.350000px;}
.ls12{letter-spacing:2.310000px;}
.ls15{letter-spacing:2.361608px;}
.ls5{letter-spacing:3.178800px;}
.ls8{letter-spacing:3.240000px;}
.ls2f{letter-spacing:4.087800px;}
.ls28{letter-spacing:4.534200px;}
.ls10{letter-spacing:6.060000px;}
.ls11{letter-spacing:6.090000px;}
.ls19{letter-spacing:6.198000px;}
.ls18{letter-spacing:9.444000px;}
.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;}
}
.ws11{word-spacing:-15.000000px;}
.wsda{word-spacing:-13.500000px;}
.ws6f{word-spacing:-12.000000px;}
.wsc6{word-spacing:-11.640000px;}
.ws0{word-spacing:-11.550000px;}
.wsd7{word-spacing:-11.460000px;}
.wsb6{word-spacing:-11.250000px;}
.wsd2{word-spacing:-10.860000px;}
.ws10{word-spacing:-10.500000px;}
.wsf{word-spacing:-9.718380px;}
.ws1{word-spacing:-9.714600px;}
.ws2{word-spacing:-9.450000px;}
.wsa7{word-spacing:-8.745000px;}
.wsdd{word-spacing:-3.294000px;}
.wscf{word-spacing:-3.000000px;}
.ws80{word-spacing:-2.880000px;}
.wscd{word-spacing:-2.820000px;}
.ws29{word-spacing:-2.760000px;}
.ws25{word-spacing:-2.700000px;}
.ws9c{word-spacing:-2.640000px;}
.wse6{word-spacing:-2.592000px;}
.ws4d{word-spacing:-2.580000px;}
.ws9f{word-spacing:-2.460000px;}
.wsb8{word-spacing:-2.400000px;}
.ws76{word-spacing:-2.340000px;}
.ws33{word-spacing:-2.280000px;}
.ws98{word-spacing:-2.268000px;}
.ws28{word-spacing:-2.220000px;}
.ws97{word-spacing:-2.214000px;}
.ws84{word-spacing:-2.100000px;}
.ws64{word-spacing:-2.040000px;}
.wsd{word-spacing:-1.998000px;}
.ws3d{word-spacing:-1.980000px;}
.ws8{word-spacing:-1.944000px;}
.ws7f{word-spacing:-1.920000px;}
.wsbb{word-spacing:-1.860000px;}
.ws32{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.782000px;}
.ws3e{word-spacing:-1.740000px;}
.ws6b{word-spacing:-1.680000px;}
.ws96{word-spacing:-1.674000px;}
.ws34{word-spacing:-1.620000px;}
.ws77{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.500000px;}
.ws65{word-spacing:-1.440000px;}
.ws2c{word-spacing:-1.380000px;}
.wsab{word-spacing:-1.320000px;}
.ws6a{word-spacing:-1.260000px;}
.ws17{word-spacing:-1.242000px;}
.ws49{word-spacing:-1.200000px;}
.wsa0{word-spacing:-1.140000px;}
.ws79{word-spacing:-1.080000px;}
.ws14{word-spacing:-1.026000px;}
.ws4e{word-spacing:-1.020000px;}
.ws8d{word-spacing:-0.960000px;}
.ws36{word-spacing:-0.900000px;}
.ws69{word-spacing:-0.840000px;}
.ws87{word-spacing:-0.780000px;}
.ws63{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.660000px;}
.wse4{word-spacing:-0.648000px;}
.ws3f{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.486000px;}
.ws55{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.420000px;}
.ws58{word-spacing:-0.360000px;}
.ws5f{word-spacing:-0.300000px;}
.ws4f{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.225000px;}
.wse1{word-spacing:-0.216000px;}
.ws21{word-spacing:-0.180000px;}
.wsc1{word-spacing:-0.120000px;}
.wsdf{word-spacing:-0.108000px;}
.ws1d{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsbd{word-spacing:0.045000px;}
.ws6e{word-spacing:0.060000px;}
.ws5b{word-spacing:0.120000px;}
.wsac{word-spacing:0.135000px;}
.ws3a{word-spacing:0.180000px;}
.wsae{word-spacing:0.225000px;}
.ws5e{word-spacing:0.240000px;}
.wse0{word-spacing:0.270000px;}
.ws27{word-spacing:0.300000px;}
.ws89{word-spacing:0.360000px;}
.ws7a{word-spacing:0.420000px;}
.ws3c{word-spacing:0.480000px;}
.wsbc{word-spacing:0.495000px;}
.ws78{word-spacing:0.540000px;}
.ws1a{word-spacing:0.600000px;}
.ws3{word-spacing:0.660000px;}
.ws2b{word-spacing:0.720000px;}
.wsdc{word-spacing:0.756000px;}
.wsc5{word-spacing:0.780000px;}
.ws5a{word-spacing:0.840000px;}
.ws60{word-spacing:0.900000px;}
.ws83{word-spacing:0.960000px;}
.wsbe{word-spacing:0.990000px;}
.ws45{word-spacing:1.020000px;}
.ws3b{word-spacing:1.080000px;}
.ws1e{word-spacing:1.200000px;}
.ws57{word-spacing:1.260000px;}
.ws94{word-spacing:1.296000px;}
.ws5d{word-spacing:1.320000px;}
.ws7{word-spacing:1.350000px;}
.ws67{word-spacing:1.380000px;}
.wsa4{word-spacing:1.440000px;}
.ws6{word-spacing:1.458000px;}
.wsd8{word-spacing:1.500000px;}
.wsc3{word-spacing:1.560000px;}
.wse7{word-spacing:1.566000px;}
.wsa9{word-spacing:1.620000px;}
.ws41{word-spacing:1.680000px;}
.ws75{word-spacing:1.740000px;}
.ws81{word-spacing:1.800000px;}
.ws9a{word-spacing:1.860000px;}
.ws95{word-spacing:1.890000px;}
.ws99{word-spacing:1.944000px;}
.ws51{word-spacing:1.980000px;}
.ws8f{word-spacing:2.040000px;}
.ws73{word-spacing:2.100000px;}
.wsaf{word-spacing:2.115000px;}
.wscc{word-spacing:2.160000px;}
.wsd0{word-spacing:2.220000px;}
.ws6d{word-spacing:2.280000px;}
.wsb5{word-spacing:2.340000px;}
.ws5c{word-spacing:2.400000px;}
.ws40{word-spacing:2.520000px;}
.ws7d{word-spacing:2.580000px;}
.ws24{word-spacing:2.640000px;}
.ws4c{word-spacing:2.700000px;}
.wscb{word-spacing:2.760000px;}
.wsde{word-spacing:2.808000px;}
.ws19{word-spacing:2.820000px;}
.wsb{word-spacing:2.916000px;}
.ws71{word-spacing:2.940000px;}
.ws54{word-spacing:3.000000px;}
.wse{word-spacing:3.024000px;}
.wsaa{word-spacing:3.060000px;}
.ws2d{word-spacing:3.120000px;}
.ws30{word-spacing:3.180000px;}
.ws8c{word-spacing:3.240000px;}
.ws47{word-spacing:3.300000px;}
.wsce{word-spacing:3.360000px;}
.ws6c{word-spacing:3.420000px;}
.wse3{word-spacing:3.456000px;}
.wsbf{word-spacing:3.480000px;}
.ws92{word-spacing:3.540000px;}
.ws4a{word-spacing:3.600000px;}
.ws46{word-spacing:3.660000px;}
.ws52{word-spacing:3.720000px;}
.wsd3{word-spacing:3.840000px;}
.wsd4{word-spacing:3.900000px;}
.ws9b{word-spacing:3.960000px;}
.wse2{word-spacing:3.996000px;}
.wsa2{word-spacing:4.020000px;}
.ws59{word-spacing:4.200000px;}
.ws39{word-spacing:4.260000px;}
.wsdb{word-spacing:4.266000px;}
.wsa6{word-spacing:4.320000px;}
.ws8e{word-spacing:4.380000px;}
.ws85{word-spacing:4.440000px;}
.ws23{word-spacing:4.500000px;}
.ws91{word-spacing:4.560000px;}
.wsca{word-spacing:4.620000px;}
.ws7e{word-spacing:4.680000px;}
.wse5{word-spacing:4.698000px;}
.ws9d{word-spacing:4.740000px;}
.ws74{word-spacing:4.800000px;}
.ws2f{word-spacing:4.860000px;}
.wsa3{word-spacing:4.920000px;}
.ws5{word-spacing:4.968000px;}
.ws82{word-spacing:5.040000px;}
.ws31{word-spacing:5.100000px;}
.ws86{word-spacing:5.220000px;}
.wsb9{word-spacing:5.280000px;}
.ws48{word-spacing:5.340000px;}
.ws90{word-spacing:5.400000px;}
.ws2a{word-spacing:5.460000px;}
.ws1c{word-spacing:5.580000px;}
.ws2e{word-spacing:5.640000px;}
.wsad{word-spacing:5.670000px;}
.ws61{word-spacing:5.760000px;}
.ws22{word-spacing:5.880000px;}
.ws72{word-spacing:5.940000px;}
.ws16{word-spacing:6.048000px;}
.wsc{word-spacing:6.102000px;}
.ws1b{word-spacing:6.180000px;}
.ws56{word-spacing:6.300000px;}
.wsb4{word-spacing:6.360000px;}
.wsb2{word-spacing:6.420000px;}
.wsd6{word-spacing:6.480000px;}
.ws68{word-spacing:6.660000px;}
.ws20{word-spacing:6.720000px;}
.wsc8{word-spacing:6.840000px;}
.ws50{word-spacing:6.900000px;}
.wsa8{word-spacing:6.960000px;}
.ws62{word-spacing:7.200000px;}
.wsb1{word-spacing:7.260000px;}
.ws7b{word-spacing:7.320000px;}
.ws9e{word-spacing:7.380000px;}
.wsa1{word-spacing:7.500000px;}
.ws35{word-spacing:7.560000px;}
.ws4b{word-spacing:7.620000px;}
.wsa5{word-spacing:7.680000px;}
.wsc0{word-spacing:7.740000px;}
.wsd9{word-spacing:7.776000px;}
.wsba{word-spacing:7.980000px;}
.ws26{word-spacing:8.040000px;}
.wsc4{word-spacing:8.340000px;}
.ws1f{word-spacing:8.400000px;}
.wsb7{word-spacing:8.460000px;}
.ws93{word-spacing:8.520000px;}
.ws7c{word-spacing:8.580000px;}
.ws8a{word-spacing:8.640000px;}
.ws42{word-spacing:8.820000px;}
.ws43{word-spacing:8.880000px;}
.wsd5{word-spacing:8.940000px;}
.ws38{word-spacing:9.000000px;}
.ws88{word-spacing:9.060000px;}
.wsc9{word-spacing:9.420000px;}
.ws53{word-spacing:9.480000px;}
.wsc2{word-spacing:9.780000px;}
.ws66{word-spacing:10.080000px;}
.wsd1{word-spacing:10.620000px;}
.wsb0{word-spacing:10.980000px;}
.wsc7{word-spacing:12.420000px;}
.ws44{word-spacing:16.020000px;}
.ws8b{word-spacing:40.500000px;}
._11{margin-left:-40.478400px;}
._a{margin-left:-17.297760px;}
._7{margin-left:-16.052880px;}
._4{margin-left:-7.992000px;}
._5{margin-left:-6.717660px;}
._1{margin-left:-5.114340px;}
._3{margin-left:-3.960000px;}
._2{margin-left:-2.527140px;}
._0{margin-left:-1.478400px;}
._6{width:1.321320px;}
._8{width:2.835000px;}
._b{width:4.557600px;}
._9{width:5.567400px;}
._d{width:6.669540px;}
._c{width:7.824000px;}
._e{width:9.030000px;}
._f{width:10.152000px;}
._10{width:12.786000px;}
._12{width:30.465000px;}
._13{width:31.635000px;}
._14{width:33.750000px;}
._15{width:829.957200px;}
.fc3{color:transparent;}
.fc6{color:rgb(127,125,125);}
.fc5{color:rgb(104,102,102);}
.fc2{color:rgb(149,147,147);}
.fc7{color:rgb(112,109,110);}
.fc4{color:rgb(72,69,70);}
.fc1{color:rgb(72,69,70);}
.fc0{color:rgb(136,134,135);}
.fsb{font-size:34.980000px;}
.fs7{font-size:37.800000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs4{font-size:46.200000px;}
.fsa{font-size:47.232154px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:64.800000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:237.600000px;}
.y7{bottom:-9.315450px;}
.ya{bottom:-8.329050px;}
.y9{bottom:-0.001050px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.347250px;}
.y4{bottom:2.362050px;}
.y1{bottom:45.599700px;}
.y2b{bottom:45.976050px;}
.y2a{bottom:48.145500px;}
.ye9{bottom:97.795350px;}
.ye3{bottom:97.795500px;}
.yec{bottom:99.054150px;}
.yc6{bottom:99.534300px;}
.y106{bottom:99.584700px;}
.yd3{bottom:99.727350px;}
.y10d{bottom:100.570800px;}
.y4c{bottom:100.755000px;}
.y96{bottom:101.020800px;}
.y73{bottom:101.024700px;}
.y28{bottom:101.025300px;}
.yb4{bottom:101.026050px;}
.ye8{bottom:111.295350px;}
.ye2{bottom:111.295500px;}
.yc5{bottom:117.529800px;}
.y10c{bottom:118.726800px;}
.y27{bottom:119.020800px;}
.y105{bottom:120.584700px;}
.y4b{bottom:121.755000px;}
.y95{bottom:122.020800px;}
.y72{bottom:122.024700px;}
.yb3{bottom:122.026050px;}
.ye7{bottom:124.795350px;}
.ye1{bottom:124.795500px;}
.yc4{bottom:135.525300px;}
.y10b{bottom:136.870800px;}
.y26{bottom:137.020800px;}
.ye6{bottom:138.295350px;}
.ye0{bottom:138.295500px;}
.y104{bottom:141.584700px;}
.y4a{bottom:142.755000px;}
.y94{bottom:143.020800px;}
.y71{bottom:143.024700px;}
.yb2{bottom:143.026050px;}
.ydf{bottom:151.795500px;}
.yc3{bottom:153.520800px;}
.y103{bottom:162.584700px;}
.y49{bottom:163.755000px;}
.y93{bottom:164.020800px;}
.y70{bottom:164.024700px;}
.yb1{bottom:164.026050px;}
.yde{bottom:165.295500px;}
.y25{bottom:173.029800px;}
.y10a{bottom:176.020800px;}
.ydd{bottom:178.795500px;}
.y102{bottom:183.584700px;}
.y48{bottom:184.755000px;}
.y92{bottom:185.020800px;}
.y6f{bottom:185.024700px;}
.yb0{bottom:185.026050px;}
.yc2{bottom:189.524700px;}
.y24{bottom:191.025300px;}
.ydc{bottom:192.295500px;}
.y101{bottom:204.584700px;}
.y47{bottom:205.755000px;}
.y91{bottom:206.020800px;}
.y6e{bottom:206.024700px;}
.yaf{bottom:206.026050px;}
.yc1{bottom:210.524700px;}
.y100{bottom:225.584700px;}
.y46{bottom:226.755000px;}
.y90{bottom:227.020800px;}
.y6d{bottom:227.024700px;}
.yae{bottom:227.026050px;}
.yc0{bottom:231.524700px;}
.y23{bottom:245.025300px;}
.yff{bottom:246.584700px;}
.y45{bottom:247.755000px;}
.y8f{bottom:248.020800px;}
.y6c{bottom:248.024700px;}
.yad{bottom:248.026050px;}
.ybf{bottom:252.524700px;}
.yd2{bottom:254.534550px;}
.y22{bottom:263.020800px;}
.yfe{bottom:267.584700px;}
.y44{bottom:268.755000px;}
.y8e{bottom:269.020800px;}
.y6b{bottom:269.024700px;}
.yac{bottom:269.026050px;}
.ybe{bottom:273.524700px;}
.yfd{bottom:288.584700px;}
.y43{bottom:289.755000px;}
.y8d{bottom:290.020800px;}
.y6a{bottom:290.024700px;}
.ydb{bottom:290.026050px;}
.ybd{bottom:294.524700px;}
.y21{bottom:299.070300px;}
.yfc{bottom:309.584700px;}
.y42{bottom:310.755000px;}
.y8c{bottom:311.020800px;}
.y69{bottom:311.024700px;}
.yda{bottom:311.026050px;}
.yb6{bottom:312.762900px;}
.ybc{bottom:315.524700px;}
.y20{bottom:317.065800px;}
.yfb{bottom:330.584700px;}
.y41{bottom:331.755000px;}
.y8b{bottom:332.020800px;}
.y68{bottom:332.024700px;}
.yd9{bottom:332.026050px;}
.y12b{bottom:334.755000px;}
.y1f{bottom:335.061300px;}
.ybb{bottom:336.524700px;}
.yfa{bottom:351.584700px;}
.y40{bottom:352.755000px;}
.y12a{bottom:352.911000px;}
.y8a{bottom:353.020800px;}
.y67{bottom:353.024700px;}
.yd8{bottom:353.026050px;}
.y1e{bottom:353.056800px;}
.y108{bottom:357.148650px;}
.yba{bottom:357.524700px;}
.y1d{bottom:371.052300px;}
.y129{bottom:371.055000px;}
.yf9{bottom:372.584700px;}
.y3f{bottom:373.755000px;}
.y89{bottom:374.020800px;}
.y66{bottom:374.024700px;}
.yd7{bottom:374.026050px;}
.yb9{bottom:378.524700px;}
.y1c{bottom:389.047800px;}
.y128{bottom:389.217000px;}
.yf8{bottom:393.584700px;}
.y3e{bottom:394.755000px;}
.y88{bottom:395.020800px;}
.y65{bottom:395.024700px;}
.yd6{bottom:395.026050px;}
.yb8{bottom:399.524700px;}
.y1b{bottom:407.043300px;}
.y127{bottom:407.361000px;}
.yd1{bottom:407.711700px;}
.yf7{bottom:414.584700px;}
.y3d{bottom:415.755000px;}
.yab{bottom:416.020800px;}
.y64{bottom:416.024700px;}
.yd5{bottom:416.026050px;}
.y1a{bottom:425.038800px;}
.y126{bottom:425.505000px;}
.yf6{bottom:435.584700px;}
.y3c{bottom:436.755000px;}
.yaa{bottom:437.020800px;}
.y63{bottom:437.024700px;}
.y87{bottom:437.026050px;}
.yb7{bottom:440.024700px;}
.y19{bottom:443.034300px;}
.y125{bottom:443.661000px;}
.yf5{bottom:456.584700px;}
.y3b{bottom:457.755000px;}
.ya9{bottom:458.020800px;}
.y62{bottom:458.024700px;}
.yd4{bottom:458.026050px;}
.yed{bottom:460.967550px;}
.y18{bottom:461.029800px;}
.y124{bottom:461.805000px;}
.yb5{bottom:465.940050px;}
.yf4{bottom:477.584700px;}
.y3a{bottom:478.755000px;}
.ya8{bottom:479.020800px;}
.y61{bottom:479.024700px;}
.y17{bottom:479.025300px;}
.yeb{bottom:479.026050px;}
.y123{bottom:479.961000px;}
.y16{bottom:497.020800px;}
.y122{bottom:498.105000px;}
.yf3{bottom:498.584700px;}
.y39{bottom:499.755000px;}
.ya7{bottom:500.020800px;}
.y60{bottom:500.024700px;}
.y86{bottom:500.026050px;}
.ye5{bottom:502.707750px;}
.y15{bottom:515.020800px;}
.y121{bottom:516.273000px;}
.yf2{bottom:519.584700px;}
.y38{bottom:520.755000px;}
.ya6{bottom:521.020800px;}
.y5f{bottom:521.024700px;}
.y85{bottom:521.026050px;}
.y120{bottom:534.417000px;}
.yf1{bottom:540.584700px;}
.ya5{bottom:542.020800px;}
.y5e{bottom:542.024700px;}
.y84{bottom:542.026050px;}
.y11f{bottom:552.561000px;}
.yf0{bottom:561.584700px;}
.y37{bottom:562.755000px;}
.ya4{bottom:563.020800px;}
.y5d{bottom:563.024700px;}
.y83{bottom:563.026050px;}
.y109{bottom:563.156550px;}
.y11e{bottom:570.705000px;}
.yd0{bottom:576.255000px;}
.yea{bottom:578.758950px;}
.yef{bottom:582.584700px;}
.ya3{bottom:584.020800px;}
.y5c{bottom:584.024700px;}
.y82{bottom:584.026050px;}
.y11d{bottom:588.861000px;}
.ycf{bottom:597.255000px;}
.yee{bottom:603.584700px;}
.ya2{bottom:605.020800px;}
.y5b{bottom:605.024700px;}
.y81{bottom:605.026050px;}
.y11c{bottom:607.005000px;}
.yce{bottom:618.255000px;}
.y36{bottom:622.755000px;}
.y11b{bottom:625.167000px;}
.ya1{bottom:626.020800px;}
.y5a{bottom:626.024700px;}
.y80{bottom:626.026050px;}
.ycd{bottom:639.255000px;}
.y14{bottom:642.525300px;}
.y11a{bottom:643.311000px;}
.ya0{bottom:647.020800px;}
.y59{bottom:647.024700px;}
.y7f{bottom:647.026050px;}
.y107{bottom:647.983350px;}
.ye4{bottom:655.884900px;}
.ycc{bottom:660.255000px;}
.y13{bottom:660.520800px;}
.y119{bottom:661.455000px;}
.y9f{bottom:668.020800px;}
.y58{bottom:668.024700px;}
.y7e{bottom:668.026050px;}
.y118{bottom:679.605000px;}
.ycb{bottom:681.255000px;}
.y9e{bottom:689.020800px;}
.y57{bottom:689.024700px;}
.y7d{bottom:689.026050px;}
.y12{bottom:696.525300px;}
.y117{bottom:697.755000px;}
.y35{bottom:699.259500px;}
.yca{bottom:702.255000px;}
.y9d{bottom:710.020800px;}
.y56{bottom:710.024700px;}
.y7c{bottom:710.026050px;}
.y11{bottom:714.520800px;}
.y116{bottom:715.911000px;}
.y34{bottom:717.255000px;}
.yc9{bottom:723.255000px;}
.y9c{bottom:731.020800px;}
.y55{bottom:731.024700px;}
.y7b{bottom:731.026050px;}
.y10{bottom:732.520800px;}
.y115{bottom:734.055000px;}
.yc8{bottom:744.255000px;}
.y9b{bottom:752.020800px;}
.y54{bottom:752.024700px;}
.y7a{bottom:752.026050px;}
.y114{bottom:752.223000px;}
.y33{bottom:753.286500px;}
.yc7{bottom:765.255000px;}
.y113{bottom:770.367000px;}
.y32{bottom:771.282000px;}
.yf{bottom:771.532800px;}
.y9a{bottom:773.020800px;}
.y53{bottom:773.024700px;}
.y79{bottom:773.026050px;}
.y112{bottom:788.511000px;}
.y31{bottom:789.277500px;}
.y99{bottom:794.020800px;}
.y52{bottom:794.024700px;}
.y78{bottom:794.026050px;}
.ye{bottom:800.026800px;}
.y111{bottom:806.655000px;}
.y30{bottom:807.273000px;}
.y98{bottom:815.020800px;}
.y51{bottom:815.024700px;}
.y77{bottom:815.026050px;}
.y110{bottom:824.805000px;}
.y2f{bottom:825.268500px;}
.yd{bottom:828.520800px;}
.y97{bottom:836.020800px;}
.y50{bottom:836.024700px;}
.y76{bottom:836.026050px;}
.y10f{bottom:842.955000px;}
.y2e{bottom:843.264000px;}
.y4f{bottom:857.024700px;}
.y75{bottom:857.026050px;}
.y10e{bottom:861.111000px;}
.y2d{bottom:861.259500px;}
.y4e{bottom:878.024700px;}
.y74{bottom:878.026050px;}
.y2c{bottom:879.255000px;}
.y29{bottom:941.081700px;}
.yc{bottom:941.831850px;}
.y8{bottom:941.872500px;}
.y4d{bottom:942.400800px;}
.y3{bottom:950.200500px;}
.yb{bottom:954.432000px;}
.y5{bottom:961.878000px;}
.y2{bottom:962.225250px;}
.h6{height:0.162000px;}
.h8{height:1.149000px;}
.h7{height:8.328000px;}
.h4{height:11.839500px;}
.h13{height:33.217800px;}
.h14{height:33.959918px;}
.h10{height:35.090332px;}
.hf{height:36.026074px;}
.h9{height:37.754883px;}
.h5{height:37.908000px;}
.h15{height:40.451660px;}
.ha{height:41.530371px;}
.he{height:42.108398px;}
.h12{height:46.787109px;}
.hd{height:48.541992px;}
.h2{height:53.935547px;}
.hc{height:59.329102px;}
.h3{height:60.458400px;}
.hb{height:64.722656px;}
.h11{height:158.241600px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:94.336500px;}
.w4{width:143.232000px;}
.w2{width:179.977500px;}
.w1{width:765.000000px;}
.w0{width:765.354000px;}
.x0{left:0.000000px;}
.x14{left:67.953300px;}
.x18{left:69.043800px;}
.xf{left:75.114300px;}
.x2{left:89.181300px;}
.xd{left:127.559100px;}
.x1b{left:170.075100px;}
.x11{left:171.141750px;}
.x19{left:175.740000px;}
.x12{left:193.448100px;}
.x17{left:219.003600px;}
.x15{left:225.384450px;}
.x7{left:253.960350px;}
.x6{left:256.768350px;}
.xe{left:276.873750px;}
.x5{left:282.418350px;}
.x10{left:332.916450px;}
.x1a{left:354.761700px;}
.x16{left:358.031100px;}
.x4{left:384.557250px;}
.xa{left:441.571200px;}
.x8{left:450.409350px;}
.x3{left:457.317150px;}
.x9{left:475.577700px;}
.xc{left:510.961200px;}
.xb{left:518.035200px;}
.x13{left:577.922400px;}
.x1{left:675.355800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.741333pt;}
.ls22{letter-spacing:-3.680000pt;}
.ls26{letter-spacing:-3.146667pt;}
.ls21{letter-spacing:-2.986667pt;}
.ls1e{letter-spacing:-2.666667pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.200000pt;}
.ls0{letter-spacing:0.205333pt;}
.ls30{letter-spacing:0.229867pt;}
.ls2e{letter-spacing:0.230400pt;}
.ls6{letter-spacing:0.232000pt;}
.ls3{letter-spacing:0.235200pt;}
.ls2b{letter-spacing:0.235733pt;}
.ls27{letter-spacing:0.236267pt;}
.ls2{letter-spacing:0.238400pt;}
.lsc{letter-spacing:0.238560pt;}
.ls31{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.240533pt;}
.lsb{letter-spacing:0.243200pt;}
.ls29{letter-spacing:0.246933pt;}
.ls1d{letter-spacing:0.257600pt;}
.ls25{letter-spacing:0.258133pt;}
.ls24{letter-spacing:0.260267pt;}
.ls23{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.266133pt;}
.lse{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.273600pt;}
.ls17{letter-spacing:0.276267pt;}
.ls1{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.310933pt;}
.ls2d{letter-spacing:0.454400pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls2a{letter-spacing:0.604800pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.200000pt;}
.ls12{letter-spacing:2.053333pt;}
.ls15{letter-spacing:2.099207pt;}
.ls5{letter-spacing:2.825600pt;}
.ls8{letter-spacing:2.880000pt;}
.ls2f{letter-spacing:3.633600pt;}
.ls28{letter-spacing:4.030400pt;}
.ls10{letter-spacing:5.386667pt;}
.ls11{letter-spacing:5.413333pt;}
.ls19{letter-spacing:5.509333pt;}
.ls18{letter-spacing:8.394667pt;}
.ws11{word-spacing:-13.333333pt;}
.wsda{word-spacing:-12.000000pt;}
.ws6f{word-spacing:-10.666667pt;}
.wsc6{word-spacing:-10.346667pt;}
.ws0{word-spacing:-10.266667pt;}
.wsd7{word-spacing:-10.186667pt;}
.wsb6{word-spacing:-10.000000pt;}
.wsd2{word-spacing:-9.653333pt;}
.ws10{word-spacing:-9.333333pt;}
.wsf{word-spacing:-8.638560pt;}
.ws1{word-spacing:-8.635200pt;}
.ws2{word-spacing:-8.400000pt;}
.wsa7{word-spacing:-7.773333pt;}
.wsdd{word-spacing:-2.928000pt;}
.wscf{word-spacing:-2.666667pt;}
.ws80{word-spacing:-2.560000pt;}
.wscd{word-spacing:-2.506667pt;}
.ws29{word-spacing:-2.453333pt;}
.ws25{word-spacing:-2.400000pt;}
.ws9c{word-spacing:-2.346667pt;}
.wse6{word-spacing:-2.304000pt;}
.ws4d{word-spacing:-2.293333pt;}
.ws9f{word-spacing:-2.186667pt;}
.wsb8{word-spacing:-2.133333pt;}
.ws76{word-spacing:-2.080000pt;}
.ws33{word-spacing:-2.026667pt;}
.ws98{word-spacing:-2.016000pt;}
.ws28{word-spacing:-1.973333pt;}
.ws97{word-spacing:-1.968000pt;}
.ws84{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.813333pt;}
.wsd{word-spacing:-1.776000pt;}
.ws3d{word-spacing:-1.760000pt;}
.ws8{word-spacing:-1.728000pt;}
.ws7f{word-spacing:-1.706667pt;}
.wsbb{word-spacing:-1.653333pt;}
.ws32{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.584000pt;}
.ws3e{word-spacing:-1.546667pt;}
.ws6b{word-spacing:-1.493333pt;}
.ws96{word-spacing:-1.488000pt;}
.ws34{word-spacing:-1.440000pt;}
.ws77{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.333333pt;}
.ws65{word-spacing:-1.280000pt;}
.ws2c{word-spacing:-1.226667pt;}
.wsab{word-spacing:-1.173333pt;}
.ws6a{word-spacing:-1.120000pt;}
.ws17{word-spacing:-1.104000pt;}
.ws49{word-spacing:-1.066667pt;}
.wsa0{word-spacing:-1.013333pt;}
.ws79{word-spacing:-0.960000pt;}
.ws14{word-spacing:-0.912000pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws8d{word-spacing:-0.853333pt;}
.ws36{word-spacing:-0.800000pt;}
.ws69{word-spacing:-0.746667pt;}
.ws87{word-spacing:-0.693333pt;}
.ws63{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.586667pt;}
.wse4{word-spacing:-0.576000pt;}
.ws3f{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws55{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.373333pt;}
.ws58{word-spacing:-0.320000pt;}
.ws5f{word-spacing:-0.266667pt;}
.ws4f{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.200000pt;}
.wse1{word-spacing:-0.192000pt;}
.ws21{word-spacing:-0.160000pt;}
.wsc1{word-spacing:-0.106667pt;}
.wsdf{word-spacing:-0.096000pt;}
.ws1d{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.040000pt;}
.ws6e{word-spacing:0.053333pt;}
.ws5b{word-spacing:0.106667pt;}
.wsac{word-spacing:0.120000pt;}
.ws3a{word-spacing:0.160000pt;}
.wsae{word-spacing:0.200000pt;}
.ws5e{word-spacing:0.213333pt;}
.wse0{word-spacing:0.240000pt;}
.ws27{word-spacing:0.266667pt;}
.ws89{word-spacing:0.320000pt;}
.ws7a{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.426667pt;}
.wsbc{word-spacing:0.440000pt;}
.ws78{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws3{word-spacing:0.586667pt;}
.ws2b{word-spacing:0.640000pt;}
.wsdc{word-spacing:0.672000pt;}
.wsc5{word-spacing:0.693333pt;}
.ws5a{word-spacing:0.746667pt;}
.ws60{word-spacing:0.800000pt;}
.ws83{word-spacing:0.853333pt;}
.wsbe{word-spacing:0.880000pt;}
.ws45{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.066667pt;}
.ws57{word-spacing:1.120000pt;}
.ws94{word-spacing:1.152000pt;}
.ws5d{word-spacing:1.173333pt;}
.ws7{word-spacing:1.200000pt;}
.ws67{word-spacing:1.226667pt;}
.wsa4{word-spacing:1.280000pt;}
.ws6{word-spacing:1.296000pt;}
.wsd8{word-spacing:1.333333pt;}
.wsc3{word-spacing:1.386667pt;}
.wse7{word-spacing:1.392000pt;}
.wsa9{word-spacing:1.440000pt;}
.ws41{word-spacing:1.493333pt;}
.ws75{word-spacing:1.546667pt;}
.ws81{word-spacing:1.600000pt;}
.ws9a{word-spacing:1.653333pt;}
.ws95{word-spacing:1.680000pt;}
.ws99{word-spacing:1.728000pt;}
.ws51{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.813333pt;}
.ws73{word-spacing:1.866667pt;}
.wsaf{word-spacing:1.880000pt;}
.wscc{word-spacing:1.920000pt;}
.wsd0{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.026667pt;}
.wsb5{word-spacing:2.080000pt;}
.ws5c{word-spacing:2.133333pt;}
.ws40{word-spacing:2.240000pt;}
.ws7d{word-spacing:2.293333pt;}
.ws24{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.400000pt;}
.wscb{word-spacing:2.453333pt;}
.wsde{word-spacing:2.496000pt;}
.ws19{word-spacing:2.506667pt;}
.wsb{word-spacing:2.592000pt;}
.ws71{word-spacing:2.613333pt;}
.ws54{word-spacing:2.666667pt;}
.wse{word-spacing:2.688000pt;}
.wsaa{word-spacing:2.720000pt;}
.ws2d{word-spacing:2.773333pt;}
.ws30{word-spacing:2.826667pt;}
.ws8c{word-spacing:2.880000pt;}
.ws47{word-spacing:2.933333pt;}
.wsce{word-spacing:2.986667pt;}
.ws6c{word-spacing:3.040000pt;}
.wse3{word-spacing:3.072000pt;}
.wsbf{word-spacing:3.093333pt;}
.ws92{word-spacing:3.146667pt;}
.ws4a{word-spacing:3.200000pt;}
.ws46{word-spacing:3.253333pt;}
.ws52{word-spacing:3.306667pt;}
.wsd3{word-spacing:3.413333pt;}
.wsd4{word-spacing:3.466667pt;}
.ws9b{word-spacing:3.520000pt;}
.wse2{word-spacing:3.552000pt;}
.wsa2{word-spacing:3.573333pt;}
.ws59{word-spacing:3.733333pt;}
.ws39{word-spacing:3.786667pt;}
.wsdb{word-spacing:3.792000pt;}
.wsa6{word-spacing:3.840000pt;}
.ws8e{word-spacing:3.893333pt;}
.ws85{word-spacing:3.946667pt;}
.ws23{word-spacing:4.000000pt;}
.ws91{word-spacing:4.053333pt;}
.wsca{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.160000pt;}
.wse5{word-spacing:4.176000pt;}
.ws9d{word-spacing:4.213333pt;}
.ws74{word-spacing:4.266667pt;}
.ws2f{word-spacing:4.320000pt;}
.wsa3{word-spacing:4.373333pt;}
.ws5{word-spacing:4.416000pt;}
.ws82{word-spacing:4.480000pt;}
.ws31{word-spacing:4.533333pt;}
.ws86{word-spacing:4.640000pt;}
.wsb9{word-spacing:4.693333pt;}
.ws48{word-spacing:4.746667pt;}
.ws90{word-spacing:4.800000pt;}
.ws2a{word-spacing:4.853333pt;}
.ws1c{word-spacing:4.960000pt;}
.ws2e{word-spacing:5.013333pt;}
.wsad{word-spacing:5.040000pt;}
.ws61{word-spacing:5.120000pt;}
.ws22{word-spacing:5.226667pt;}
.ws72{word-spacing:5.280000pt;}
.ws16{word-spacing:5.376000pt;}
.wsc{word-spacing:5.424000pt;}
.ws1b{word-spacing:5.493333pt;}
.ws56{word-spacing:5.600000pt;}
.wsb4{word-spacing:5.653333pt;}
.wsb2{word-spacing:5.706667pt;}
.wsd6{word-spacing:5.760000pt;}
.ws68{word-spacing:5.920000pt;}
.ws20{word-spacing:5.973333pt;}
.wsc8{word-spacing:6.080000pt;}
.ws50{word-spacing:6.133333pt;}
.wsa8{word-spacing:6.186667pt;}
.ws62{word-spacing:6.400000pt;}
.wsb1{word-spacing:6.453333pt;}
.ws7b{word-spacing:6.506667pt;}
.ws9e{word-spacing:6.560000pt;}
.wsa1{word-spacing:6.666667pt;}
.ws35{word-spacing:6.720000pt;}
.ws4b{word-spacing:6.773333pt;}
.wsa5{word-spacing:6.826667pt;}
.wsc0{word-spacing:6.880000pt;}
.wsd9{word-spacing:6.912000pt;}
.wsba{word-spacing:7.093333pt;}
.ws26{word-spacing:7.146667pt;}
.wsc4{word-spacing:7.413333pt;}
.ws1f{word-spacing:7.466667pt;}
.wsb7{word-spacing:7.520000pt;}
.ws93{word-spacing:7.573333pt;}
.ws7c{word-spacing:7.626667pt;}
.ws8a{word-spacing:7.680000pt;}
.ws42{word-spacing:7.840000pt;}
.ws43{word-spacing:7.893333pt;}
.wsd5{word-spacing:7.946667pt;}
.ws38{word-spacing:8.000000pt;}
.ws88{word-spacing:8.053333pt;}
.wsc9{word-spacing:8.373333pt;}
.ws53{word-spacing:8.426667pt;}
.wsc2{word-spacing:8.693333pt;}
.ws66{word-spacing:8.960000pt;}
.wsd1{word-spacing:9.440000pt;}
.wsb0{word-spacing:9.760000pt;}
.wsc7{word-spacing:11.040000pt;}
.ws44{word-spacing:14.240000pt;}
.ws8b{word-spacing:36.000000pt;}
._11{margin-left:-35.980800pt;}
._a{margin-left:-15.375787pt;}
._7{margin-left:-14.269227pt;}
._4{margin-left:-7.104000pt;}
._5{margin-left:-5.971253pt;}
._1{margin-left:-4.546080pt;}
._3{margin-left:-3.520000pt;}
._2{margin-left:-2.246347pt;}
._0{margin-left:-1.314133pt;}
._6{width:1.174507pt;}
._8{width:2.520000pt;}
._b{width:4.051200pt;}
._9{width:4.948800pt;}
._d{width:5.928480pt;}
._c{width:6.954667pt;}
._e{width:8.026667pt;}
._f{width:9.024000pt;}
._10{width:11.365333pt;}
._12{width:27.080000pt;}
._13{width:28.120000pt;}
._14{width:30.000000pt;}
._15{width:737.739733pt;}
.fsb{font-size:31.093333pt;}
.fs7{font-size:33.600000pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs4{font-size:41.066667pt;}
.fsa{font-size:41.984136pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:57.600000pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:211.200000pt;}
.y7{bottom:-8.280400pt;}
.ya{bottom:-7.403600pt;}
.y9{bottom:-0.000933pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.308667pt;}
.y4{bottom:2.099600pt;}
.y1{bottom:40.533067pt;}
.y2b{bottom:40.867600pt;}
.y2a{bottom:42.796000pt;}
.ye9{bottom:86.929200pt;}
.ye3{bottom:86.929333pt;}
.yec{bottom:88.048133pt;}
.yc6{bottom:88.474933pt;}
.y106{bottom:88.519733pt;}
.yd3{bottom:88.646533pt;}
.y10d{bottom:89.396267pt;}
.y4c{bottom:89.560000pt;}
.y96{bottom:89.796267pt;}
.y73{bottom:89.799733pt;}
.y28{bottom:89.800267pt;}
.yb4{bottom:89.800933pt;}
.ye8{bottom:98.929200pt;}
.ye2{bottom:98.929333pt;}
.yc5{bottom:104.470933pt;}
.y10c{bottom:105.534933pt;}
.y27{bottom:105.796267pt;}
.y105{bottom:107.186400pt;}
.y4b{bottom:108.226667pt;}
.y95{bottom:108.462933pt;}
.y72{bottom:108.466400pt;}
.yb3{bottom:108.467600pt;}
.ye7{bottom:110.929200pt;}
.ye1{bottom:110.929333pt;}
.yc4{bottom:120.466933pt;}
.y10b{bottom:121.662933pt;}
.y26{bottom:121.796267pt;}
.ye6{bottom:122.929200pt;}
.ye0{bottom:122.929333pt;}
.y104{bottom:125.853067pt;}
.y4a{bottom:126.893333pt;}
.y94{bottom:127.129600pt;}
.y71{bottom:127.133067pt;}
.yb2{bottom:127.134267pt;}
.ydf{bottom:134.929333pt;}
.yc3{bottom:136.462933pt;}
.y103{bottom:144.519733pt;}
.y49{bottom:145.560000pt;}
.y93{bottom:145.796267pt;}
.y70{bottom:145.799733pt;}
.yb1{bottom:145.800933pt;}
.yde{bottom:146.929333pt;}
.y25{bottom:153.804267pt;}
.y10a{bottom:156.462933pt;}
.ydd{bottom:158.929333pt;}
.y102{bottom:163.186400pt;}
.y48{bottom:164.226667pt;}
.y92{bottom:164.462933pt;}
.y6f{bottom:164.466400pt;}
.yb0{bottom:164.467600pt;}
.yc2{bottom:168.466400pt;}
.y24{bottom:169.800267pt;}
.ydc{bottom:170.929333pt;}
.y101{bottom:181.853067pt;}
.y47{bottom:182.893333pt;}
.y91{bottom:183.129600pt;}
.y6e{bottom:183.133067pt;}
.yaf{bottom:183.134267pt;}
.yc1{bottom:187.133067pt;}
.y100{bottom:200.519733pt;}
.y46{bottom:201.560000pt;}
.y90{bottom:201.796267pt;}
.y6d{bottom:201.799733pt;}
.yae{bottom:201.800933pt;}
.yc0{bottom:205.799733pt;}
.y23{bottom:217.800267pt;}
.yff{bottom:219.186400pt;}
.y45{bottom:220.226667pt;}
.y8f{bottom:220.462933pt;}
.y6c{bottom:220.466400pt;}
.yad{bottom:220.467600pt;}
.ybf{bottom:224.466400pt;}
.yd2{bottom:226.252933pt;}
.y22{bottom:233.796267pt;}
.yfe{bottom:237.853067pt;}
.y44{bottom:238.893333pt;}
.y8e{bottom:239.129600pt;}
.y6b{bottom:239.133067pt;}
.yac{bottom:239.134267pt;}
.ybe{bottom:243.133067pt;}
.yfd{bottom:256.519733pt;}
.y43{bottom:257.560000pt;}
.y8d{bottom:257.796267pt;}
.y6a{bottom:257.799733pt;}
.ydb{bottom:257.800933pt;}
.ybd{bottom:261.799733pt;}
.y21{bottom:265.840267pt;}
.yfc{bottom:275.186400pt;}
.y42{bottom:276.226667pt;}
.y8c{bottom:276.462933pt;}
.y69{bottom:276.466400pt;}
.yda{bottom:276.467600pt;}
.yb6{bottom:278.011467pt;}
.ybc{bottom:280.466400pt;}
.y20{bottom:281.836267pt;}
.yfb{bottom:293.853067pt;}
.y41{bottom:294.893333pt;}
.y8b{bottom:295.129600pt;}
.y68{bottom:295.133067pt;}
.yd9{bottom:295.134267pt;}
.y12b{bottom:297.560000pt;}
.y1f{bottom:297.832267pt;}
.ybb{bottom:299.133067pt;}
.yfa{bottom:312.519733pt;}
.y40{bottom:313.560000pt;}
.y12a{bottom:313.698667pt;}
.y8a{bottom:313.796267pt;}
.y67{bottom:313.799733pt;}
.yd8{bottom:313.800933pt;}
.y1e{bottom:313.828267pt;}
.y108{bottom:317.465467pt;}
.yba{bottom:317.799733pt;}
.y1d{bottom:329.824267pt;}
.y129{bottom:329.826667pt;}
.yf9{bottom:331.186400pt;}
.y3f{bottom:332.226667pt;}
.y89{bottom:332.462933pt;}
.y66{bottom:332.466400pt;}
.yd7{bottom:332.467600pt;}
.yb9{bottom:336.466400pt;}
.y1c{bottom:345.820267pt;}
.y128{bottom:345.970667pt;}
.yf8{bottom:349.853067pt;}
.y3e{bottom:350.893333pt;}
.y88{bottom:351.129600pt;}
.y65{bottom:351.133067pt;}
.yd6{bottom:351.134267pt;}
.yb8{bottom:355.133067pt;}
.y1b{bottom:361.816267pt;}
.y127{bottom:362.098667pt;}
.yd1{bottom:362.410400pt;}
.yf7{bottom:368.519733pt;}
.y3d{bottom:369.560000pt;}
.yab{bottom:369.796267pt;}
.y64{bottom:369.799733pt;}
.yd5{bottom:369.800933pt;}
.y1a{bottom:377.812267pt;}
.y126{bottom:378.226667pt;}
.yf6{bottom:387.186400pt;}
.y3c{bottom:388.226667pt;}
.yaa{bottom:388.462933pt;}
.y63{bottom:388.466400pt;}
.y87{bottom:388.467600pt;}
.yb7{bottom:391.133067pt;}
.y19{bottom:393.808267pt;}
.y125{bottom:394.365333pt;}
.yf5{bottom:405.853067pt;}
.y3b{bottom:406.893333pt;}
.ya9{bottom:407.129600pt;}
.y62{bottom:407.133067pt;}
.yd4{bottom:407.134267pt;}
.yed{bottom:409.748933pt;}
.y18{bottom:409.804267pt;}
.y124{bottom:410.493333pt;}
.yb5{bottom:414.168933pt;}
.yf4{bottom:424.519733pt;}
.y3a{bottom:425.560000pt;}
.ya8{bottom:425.796267pt;}
.y61{bottom:425.799733pt;}
.y17{bottom:425.800267pt;}
.yeb{bottom:425.800933pt;}
.y123{bottom:426.632000pt;}
.y16{bottom:441.796267pt;}
.y122{bottom:442.760000pt;}
.yf3{bottom:443.186400pt;}
.y39{bottom:444.226667pt;}
.ya7{bottom:444.462933pt;}
.y60{bottom:444.466400pt;}
.y86{bottom:444.467600pt;}
.ye5{bottom:446.851333pt;}
.y15{bottom:457.796267pt;}
.y121{bottom:458.909333pt;}
.yf2{bottom:461.853067pt;}
.y38{bottom:462.893333pt;}
.ya6{bottom:463.129600pt;}
.y5f{bottom:463.133067pt;}
.y85{bottom:463.134267pt;}
.y120{bottom:475.037333pt;}
.yf1{bottom:480.519733pt;}
.ya5{bottom:481.796267pt;}
.y5e{bottom:481.799733pt;}
.y84{bottom:481.800933pt;}
.y11f{bottom:491.165333pt;}
.yf0{bottom:499.186400pt;}
.y37{bottom:500.226667pt;}
.ya4{bottom:500.462933pt;}
.y5d{bottom:500.466400pt;}
.y83{bottom:500.467600pt;}
.y109{bottom:500.583600pt;}
.y11e{bottom:507.293333pt;}
.yd0{bottom:512.226667pt;}
.yea{bottom:514.452400pt;}
.yef{bottom:517.853067pt;}
.ya3{bottom:519.129600pt;}
.y5c{bottom:519.133067pt;}
.y82{bottom:519.134267pt;}
.y11d{bottom:523.432000pt;}
.ycf{bottom:530.893333pt;}
.yee{bottom:536.519733pt;}
.ya2{bottom:537.796267pt;}
.y5b{bottom:537.799733pt;}
.y81{bottom:537.800933pt;}
.y11c{bottom:539.560000pt;}
.yce{bottom:549.560000pt;}
.y36{bottom:553.560000pt;}
.y11b{bottom:555.704000pt;}
.ya1{bottom:556.462933pt;}
.y5a{bottom:556.466400pt;}
.y80{bottom:556.467600pt;}
.ycd{bottom:568.226667pt;}
.y14{bottom:571.133600pt;}
.y11a{bottom:571.832000pt;}
.ya0{bottom:575.129600pt;}
.y59{bottom:575.133067pt;}
.y7f{bottom:575.134267pt;}
.y107{bottom:575.985200pt;}
.ye4{bottom:583.008800pt;}
.ycc{bottom:586.893333pt;}
.y13{bottom:587.129600pt;}
.y119{bottom:587.960000pt;}
.y9f{bottom:593.796267pt;}
.y58{bottom:593.799733pt;}
.y7e{bottom:593.800933pt;}
.y118{bottom:604.093333pt;}
.ycb{bottom:605.560000pt;}
.y9e{bottom:612.462933pt;}
.y57{bottom:612.466400pt;}
.y7d{bottom:612.467600pt;}
.y12{bottom:619.133600pt;}
.y117{bottom:620.226667pt;}
.y35{bottom:621.564000pt;}
.yca{bottom:624.226667pt;}
.y9d{bottom:631.129600pt;}
.y56{bottom:631.133067pt;}
.y7c{bottom:631.134267pt;}
.y11{bottom:635.129600pt;}
.y116{bottom:636.365333pt;}
.y34{bottom:637.560000pt;}
.yc9{bottom:642.893333pt;}
.y9c{bottom:649.796267pt;}
.y55{bottom:649.799733pt;}
.y7b{bottom:649.800933pt;}
.y10{bottom:651.129600pt;}
.y115{bottom:652.493333pt;}
.yc8{bottom:661.560000pt;}
.y9b{bottom:668.462933pt;}
.y54{bottom:668.466400pt;}
.y7a{bottom:668.467600pt;}
.y114{bottom:668.642667pt;}
.y33{bottom:669.588000pt;}
.yc7{bottom:680.226667pt;}
.y113{bottom:684.770667pt;}
.y32{bottom:685.584000pt;}
.yf{bottom:685.806933pt;}
.y9a{bottom:687.129600pt;}
.y53{bottom:687.133067pt;}
.y79{bottom:687.134267pt;}
.y112{bottom:700.898667pt;}
.y31{bottom:701.580000pt;}
.y99{bottom:705.796267pt;}
.y52{bottom:705.799733pt;}
.y78{bottom:705.800933pt;}
.ye{bottom:711.134933pt;}
.y111{bottom:717.026667pt;}
.y30{bottom:717.576000pt;}
.y98{bottom:724.462933pt;}
.y51{bottom:724.466400pt;}
.y77{bottom:724.467600pt;}
.y110{bottom:733.160000pt;}
.y2f{bottom:733.572000pt;}
.yd{bottom:736.462933pt;}
.y97{bottom:743.129600pt;}
.y50{bottom:743.133067pt;}
.y76{bottom:743.134267pt;}
.y10f{bottom:749.293333pt;}
.y2e{bottom:749.568000pt;}
.y4f{bottom:761.799733pt;}
.y75{bottom:761.800933pt;}
.y10e{bottom:765.432000pt;}
.y2d{bottom:765.564000pt;}
.y4e{bottom:780.466400pt;}
.y74{bottom:780.467600pt;}
.y2c{bottom:781.560000pt;}
.y29{bottom:836.517067pt;}
.yc{bottom:837.183867pt;}
.y8{bottom:837.220000pt;}
.y4d{bottom:837.689600pt;}
.y3{bottom:844.622667pt;}
.yb{bottom:848.384000pt;}
.y5{bottom:855.002667pt;}
.y2{bottom:855.311333pt;}
.h6{height:0.144000pt;}
.h8{height:1.021333pt;}
.h7{height:7.402667pt;}
.h4{height:10.524000pt;}
.h13{height:29.526933pt;}
.h14{height:30.186594pt;}
.h10{height:31.191406pt;}
.hf{height:32.023177pt;}
.h9{height:33.559896pt;}
.h5{height:33.696000pt;}
.h15{height:35.957031pt;}
.ha{height:36.915885pt;}
.he{height:37.429688pt;}
.h12{height:41.588542pt;}
.hd{height:43.148438pt;}
.h2{height:47.942708pt;}
.hc{height:52.736979pt;}
.h3{height:53.740800pt;}
.hb{height:57.531250pt;}
.h11{height:140.659200pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:83.854667pt;}
.w4{width:127.317333pt;}
.w2{width:159.980000pt;}
.w1{width:680.000000pt;}
.w0{width:680.314667pt;}
.x0{left:0.000000pt;}
.x14{left:60.402933pt;}
.x18{left:61.372267pt;}
.xf{left:66.768267pt;}
.x2{left:79.272267pt;}
.xd{left:113.385867pt;}
.x1b{left:151.177867pt;}
.x11{left:152.126000pt;}
.x19{left:156.213333pt;}
.x12{left:171.953867pt;}
.x17{left:194.669867pt;}
.x15{left:200.341733pt;}
.x7{left:225.742533pt;}
.x6{left:228.238533pt;}
.xe{left:246.110000pt;}
.x5{left:251.038533pt;}
.x10{left:295.925733pt;}
.x1a{left:315.343733pt;}
.x16{left:318.249867pt;}
.x4{left:341.828667pt;}
.xa{left:392.507733pt;}
.x8{left:400.363867pt;}
.x3{left:406.504133pt;}
.x9{left:422.735733pt;}
.xc{left:454.187733pt;}
.xb{left:460.475733pt;}
.x13{left:513.708800pt;}
.x1{left:600.316267pt;}
}




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