
    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_850308510fd134cc093fa31e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5ae9f4766a53d90ef6180db9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_5750ae4980d9498dc467b033.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_df09fc074c1b26eb6d805484.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_961f11001a6b2ba0ff9d4717.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ef91f9884b425bac1a9ecf96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ac7413846d5a5cbe49c0bc26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_f9077b1e18aa786835ecf3e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_47d58bafa3cda7880dce0382.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_1093787af42c01737ac2a493.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_9109ef6c27a9d57c9256f764.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728027;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_7e205ffc4c7ccc3afab318df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942871;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_fcba1d54db90627735b2411a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_6ab5a5fea2b5cde71fafac0f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.799520px;}
.v3{vertical-align:-4.368000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.630800px;}
.v6{vertical-align:15.830400px;}
.v1{vertical-align:19.799400px;}
.v5{vertical-align:41.472000px;}
.ls19{letter-spacing:-2.280000px;}
.ls1a{letter-spacing:-1.425000px;}
.ls17{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.604800px;}
.ls18{letter-spacing:-0.011400px;}
.ls14{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.lsb{letter-spacing:0.000960px;}
.ls5{letter-spacing:0.001080px;}
.ls4{letter-spacing:0.001200px;}
.ls6{letter-spacing:0.005400px;}
.ls13{letter-spacing:0.005700px;}
.lsa{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.007200px;}
.ls1e{letter-spacing:0.009600px;}
.ls9{letter-spacing:0.012000px;}
.ls1b{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.621300px;}
.lsd{letter-spacing:0.666900px;}
.lse{letter-spacing:1.225500px;}
.ls8{letter-spacing:1.245600px;}
.ls7{letter-spacing:1.252800px;}
.ls10{letter-spacing:2.029200px;}
.ls1{letter-spacing:2.534400px;}
.ls0{letter-spacing:3.769200px;}
.ls16{letter-spacing:3.780000px;}
.ls12{letter-spacing:52.644900px;}
.ls11{letter-spacing:146.627700px;}
.ls1f{letter-spacing:292.856640px;}
.ls20{letter-spacing:293.636160px;}
.lsc{letter-spacing:294.201300px;}
.ls1c{letter-spacing:483.369600px;}
.ls1d{letter-spacing:503.385600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-74.534400px;}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws7{word-spacing:-60.000000px;}
.ws8{word-spacing:-59.328000px;}
.ws4{word-spacing:-57.780000px;}
.wsd{word-spacing:-57.000000px;}
.wsf{word-spacing:-55.575000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wse{word-spacing:-51.000000px;}
.ws9c{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws3b{word-spacing:-20.016000px;}
.ws9{word-spacing:-16.680000px;}
.ws9a{word-spacing:-15.012000px;}
.ws46{word-spacing:-13.344000px;}
.wsb{word-spacing:-12.996000px;}
.ws2d{word-spacing:-4.440300px;}
.ws14{word-spacing:-3.938400px;}
.ws6d{word-spacing:-3.564000px;}
.ws72{word-spacing:-3.552000px;}
.ws1e{word-spacing:-3.522600px;}
.ws1d{word-spacing:-3.197700px;}
.ws1c{word-spacing:-3.192000px;}
.ws6f{word-spacing:-3.156000px;}
.ws4f{word-spacing:-3.132000px;}
.wsd8{word-spacing:-2.649600px;}
.ws39{word-spacing:-2.559300px;}
.ws64{word-spacing:-2.526000px;}
.ws23{word-spacing:-2.468100px;}
.wsa8{word-spacing:-2.340000px;}
.ws13{word-spacing:-2.226000px;}
.ws18{word-spacing:-2.205900px;}
.ws17{word-spacing:-2.200200px;}
.ws2e{word-spacing:-2.034900px;}
.ws32{word-spacing:-2.029200px;}
.wsaf{word-spacing:-2.022000px;}
.ws11{word-spacing:-2.003400px;}
.ws88{word-spacing:-1.950000px;}
.ws98{word-spacing:-1.841400px;}
.wse9{word-spacing:-1.828800px;}
.wse6{word-spacing:-1.809600px;}
.ws56{word-spacing:-1.668000px;}
.wsec{word-spacing:-1.656000px;}
.ws29{word-spacing:-1.607400px;}
.ws19{word-spacing:-1.584600px;}
.wscd{word-spacing:-1.574400px;}
.wsa9{word-spacing:-1.566000px;}
.wsdf{word-spacing:-1.550400px;}
.ws1a{word-spacing:-1.527600px;}
.wsd5{word-spacing:-1.521600px;}
.ws75{word-spacing:-1.476000px;}
.wsa6{word-spacing:-1.440000px;}
.wsc7{word-spacing:-1.334400px;}
.ws12{word-spacing:-1.267200px;}
.wsc5{word-spacing:-1.228800px;}
.ws66{word-spacing:-1.194000px;}
.wse7{word-spacing:-1.185600px;}
.ws4c{word-spacing:-1.128000px;}
.ws90{word-spacing:-1.032000px;}
.ws81{word-spacing:-0.876000px;}
.ws4a{word-spacing:-0.810000px;}
.ws4b{word-spacing:-0.642000px;}
.ws2a{word-spacing:-0.473100px;}
.ws38{word-spacing:-0.461700px;}
.ws62{word-spacing:-0.444000px;}
.wsc1{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.319200px;}
.wsd1{word-spacing:-0.288000px;}
.ws31{word-spacing:-0.273600px;}
.ws7a{word-spacing:-0.264000px;}
.ws3a{word-spacing:-0.240000px;}
.wsbd{word-spacing:-0.113400px;}
.ws15{word-spacing:-0.091200px;}
.ws16{word-spacing:-0.079800px;}
.ws3c{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.057000px;}
.ws9b{word-spacing:-0.054000px;}
.ws9d{word-spacing:-0.048000px;}
.wsd0{word-spacing:-0.043200px;}
.ws6c{word-spacing:-0.042000px;}
.ws10{word-spacing:0.000000px;}
.ws8d{word-spacing:0.234000px;}
.ws2c{word-spacing:0.296400px;}
.wsae{word-spacing:0.342000px;}
.ws35{word-spacing:0.461700px;}
.ws22{word-spacing:0.484500px;}
.ws30{word-spacing:0.535800px;}
.ws20{word-spacing:0.598500px;}
.wsa0{word-spacing:0.606000px;}
.wse1{word-spacing:0.614400px;}
.ws83{word-spacing:0.624000px;}
.ws37{word-spacing:0.627000px;}
.ws34{word-spacing:0.644100px;}
.ws1f{word-spacing:0.684000px;}
.ws26{word-spacing:0.729600px;}
.ws27{word-spacing:0.735300px;}
.wsa7{word-spacing:0.798000px;}
.wsdd{word-spacing:0.801600px;}
.wsde{word-spacing:0.806400px;}
.ws78{word-spacing:0.816000px;}
.ws36{word-spacing:1.008900px;}
.ws77{word-spacing:1.014000px;}
.wscc{word-spacing:1.036800px;}
.ws79{word-spacing:1.044000px;}
.ws9f{word-spacing:1.068000px;}
.ws28{word-spacing:1.185600px;}
.wsa4{word-spacing:1.188000px;}
.ws73{word-spacing:1.200000px;}
.wsba{word-spacing:1.279800px;}
.ws5f{word-spacing:1.314000px;}
.wsc9{word-spacing:1.358400px;}
.wsbb{word-spacing:1.371600px;}
.wsbc{word-spacing:1.377000px;}
.ws63{word-spacing:1.386000px;}
.wsc2{word-spacing:1.539000px;}
.wse3{word-spacing:1.636800px;}
.wseb{word-spacing:1.814400px;}
.ws21{word-spacing:1.818300px;}
.wsad{word-spacing:1.866000px;}
.ws96{word-spacing:2.022000px;}
.ws2f{word-spacing:2.046300px;}
.ws24{word-spacing:2.137500px;}
.ws53{word-spacing:2.142000px;}
.wsa1{word-spacing:2.154000px;}
.wsc4{word-spacing:2.208000px;}
.ws84{word-spacing:2.286000px;}
.wsca{word-spacing:2.328000px;}
.ws65{word-spacing:2.376000px;}
.ws25{word-spacing:2.576400px;}
.ws8e{word-spacing:2.724000px;}
.ws70{word-spacing:2.748000px;}
.wsd6{word-spacing:2.769600px;}
.wsea{word-spacing:2.865600px;}
.wsb4{word-spacing:3.054000px;}
.ws1b{word-spacing:3.089400px;}
.wse5{word-spacing:3.302400px;}
.ws33{word-spacing:3.448500px;}
.ws6e{word-spacing:3.498000px;}
.ws5b{word-spacing:3.528000px;}
.ws5c{word-spacing:3.534000px;}
.ws69{word-spacing:3.540000px;}
.wsc3{word-spacing:3.542400px;}
.ws94{word-spacing:3.564000px;}
.wse8{word-spacing:3.609600px;}
.ws85{word-spacing:3.642000px;}
.wsda{word-spacing:3.672000px;}
.wsb5{word-spacing:3.756000px;}
.ws93{word-spacing:3.822000px;}
.ws71{word-spacing:3.942000px;}
.ws55{word-spacing:3.972000px;}
.wsd4{word-spacing:4.195200px;}
.ws91{word-spacing:4.422000px;}
.ws74{word-spacing:4.566000px;}
.ws4d{word-spacing:4.668000px;}
.wse2{word-spacing:4.723200px;}
.wse4{word-spacing:4.752000px;}
.wsb3{word-spacing:4.830000px;}
.ws8a{word-spacing:4.944000px;}
.ws4e{word-spacing:4.980000px;}
.wsbf{word-spacing:5.005800px;}
.ws52{word-spacing:5.010000px;}
.wsbe{word-spacing:5.221800px;}
.ws82{word-spacing:5.238000px;}
.wscb{word-spacing:5.361600px;}
.ws92{word-spacing:5.880000px;}
.ws6b{word-spacing:5.898000px;}
.ws89{word-spacing:5.922000px;}
.ws7b{word-spacing:6.336000px;}
.wsb6{word-spacing:6.456000px;}
.ws6a{word-spacing:6.588000px;}
.wsdc{word-spacing:6.624000px;}
.ws95{word-spacing:6.936000px;}
.wsa5{word-spacing:7.296000px;}
.wsb1{word-spacing:7.302000px;}
.wsc0{word-spacing:7.365600px;}
.ws86{word-spacing:7.380000px;}
.ws57{word-spacing:7.404000px;}
.wsb7{word-spacing:7.488000px;}
.ws59{word-spacing:7.578000px;}
.ws7d{word-spacing:7.992000px;}
.ws61{word-spacing:8.004000px;}
.wsd2{word-spacing:8.044800px;}
.ws8b{word-spacing:8.154000px;}
.wsb0{word-spacing:8.316000px;}
.ws5d{word-spacing:8.568000px;}
.ws5e{word-spacing:8.574000px;}
.ws68{word-spacing:8.820000px;}
.wsd7{word-spacing:8.846400px;}
.wsb9{word-spacing:8.904600px;}
.ws76{word-spacing:9.156000px;}
.ws7f{word-spacing:9.180000px;}
.wsce{word-spacing:9.192000px;}
.ws50{word-spacing:9.240000px;}
.ws51{word-spacing:9.276000px;}
.wsdb{word-spacing:9.321600px;}
.ws80{word-spacing:9.420000px;}
.wsd3{word-spacing:9.475200px;}
.wsc6{word-spacing:9.652800px;}
.wsaa{word-spacing:9.750000px;}
.ws60{word-spacing:9.762000px;}
.ws8f{word-spacing:9.792000px;}
.wse0{word-spacing:10.200000px;}
.ws8c{word-spacing:10.206000px;}
.ws7c{word-spacing:10.608000px;}
.ws54{word-spacing:11.376000px;}
.ws5a{word-spacing:11.430000px;}
.wsd9{word-spacing:11.611200px;}
.wsee{word-spacing:11.808000px;}
.wsac{word-spacing:11.910000px;}
.ws87{word-spacing:11.934000px;}
.wsa2{word-spacing:12.126000px;}
.wsab{word-spacing:12.132000px;}
.ws58{word-spacing:12.168000px;}
.ws67{word-spacing:12.198000px;}
.wsed{word-spacing:12.499200px;}
.wsb8{word-spacing:12.594000px;}
.wscf{word-spacing:12.849600px;}
.wsc8{word-spacing:13.176000px;}
.wsb2{word-spacing:13.218000px;}
.ws7e{word-spacing:14.694000px;}
.wsa3{word-spacing:17.670000px;}
.ws97{word-spacing:22.053600px;}
.ws9e{word-spacing:23.959800px;}
.ws43{word-spacing:174.048000px;}
.ws99{word-spacing:241.152000px;}
.wsa{word-spacing:274.837200px;}
.ws48{word-spacing:352.564800px;}
.ws49{word-spacing:393.504000px;}
.ws45{word-spacing:420.691200px;}
.ws44{word-spacing:450.033600px;}
.ws47{word-spacing:456.364800px;}
.ws40{word-spacing:502.588800px;}
.ws3f{word-spacing:509.256000px;}
.ws3e{word-spacing:557.241600px;}
.ws3d{word-spacing:586.588800px;}
.ws41{word-spacing:628.022400px;}
.ws42{word-spacing:684.259200px;}
._b{margin-left:-16.848000px;}
._a{margin-left:-14.934000px;}
._c{margin-left:-13.026000px;}
._7{margin-left:-11.650800px;}
._1a{margin-left:-10.346400px;}
._19{margin-left:-9.096000px;}
._d{margin-left:-7.616400px;}
._5{margin-left:-5.595600px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.520000px;}
._6{width:4.356000px;}
._1b{width:6.522600px;}
._e{width:8.775600px;}
._9{width:61.044600px;}
._12{width:62.611200px;}
._11{width:70.377600px;}
._10{width:85.214400px;}
._8{width:242.298600px;}
._15{width:306.441600px;}
._17{width:333.139200px;}
._13{width:338.457600px;}
._14{width:363.652800px;}
._18{width:368.082600px;}
._16{width:390.345600px;}
._f{width:426.681600px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs9{font-size:27.840000px;}
.fs2{font-size:30.000000px;}
.fs5{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.045000px;}
.y3e{bottom:71.469900px;}
.y75{bottom:83.106000px;}
.yd6{bottom:84.918000px;}
.y3d{bottom:84.969900px;}
.y115{bottom:85.156050px;}
.ya5{bottom:88.786500px;}
.y114{bottom:100.906050px;}
.yd5{bottom:101.417700px;}
.y74{bottom:101.856000px;}
.ya4{bottom:109.522500px;}
.y3c{bottom:112.643700px;}
.y113{bottom:116.656050px;}
.yd4{bottom:117.917400px;}
.y73{bottom:120.606000px;}
.y3b{bottom:126.143400px;}
.ya3{bottom:130.258500px;}
.y112{bottom:132.406050px;}
.yd3{bottom:138.669600px;}
.y72{bottom:139.356000px;}
.y3a{bottom:146.769900px;}
.y111{bottom:148.156050px;}
.ya2{bottom:150.995700px;}
.yd2{bottom:155.169300px;}
.y71{bottom:158.106000px;}
.y110{bottom:163.906050px;}
.y39{bottom:168.051825px;}
.yd1{bottom:171.669000px;}
.ya0{bottom:171.731700px;}
.y70{bottom:176.856000px;}
.y10f{bottom:179.656050px;}
.y38{bottom:184.551900px;}
.yd0{bottom:192.419850px;}
.ya1{bottom:192.467700px;}
.y10e{bottom:195.406050px;}
.y6f{bottom:195.606000px;}
.y37{bottom:201.051975px;}
.ycf{bottom:208.919550px;}
.y10d{bottom:211.156050px;}
.y9f{bottom:213.203700px;}
.y6e{bottom:214.356000px;}
.y36{bottom:217.551900px;}
.y9e{bottom:223.571700px;}
.y10c{bottom:226.906050px;}
.y6d{bottom:233.106000px;}
.y35{bottom:234.051975px;}
.y10b{bottom:242.656050px;}
.yce{bottom:247.919700px;}
.y34{bottom:250.552050px;}
.y6c{bottom:251.856000px;}
.y9d{bottom:254.676900px;}
.y10a{bottom:258.406050px;}
.ycd{bottom:266.669700px;}
.y33{bottom:267.052125px;}
.y6b{bottom:270.606000px;}
.y109{bottom:274.156050px;}
.y9c{bottom:277.613700px;}
.y32{bottom:283.552125px;}
.ycc{bottom:285.419700px;}
.y6a{bottom:289.356000px;}
.y108{bottom:289.906050px;}
.y31{bottom:300.052200px;}
.ycb{bottom:304.169700px;}
.y9b{bottom:305.178150px;}
.y107{bottom:305.656050px;}
.y69{bottom:308.106000px;}
.y30{bottom:316.552275px;}
.y106{bottom:321.406050px;}
.y9a{bottom:321.677850px;}
.yca{bottom:322.919700px;}
.y68{bottom:326.856000px;}
.y2f{bottom:333.052125px;}
.y105{bottom:337.156050px;}
.y67{bottom:345.606000px;}
.y2e{bottom:349.552200px;}
.y104{bottom:352.906050px;}
.yc9{bottom:354.425850px;}
.y99{bottom:358.570200px;}
.y66{bottom:364.356000px;}
.y2d{bottom:366.052275px;}
.y103{bottom:368.656050px;}
.y98{bottom:381.844200px;}
.y2c{bottom:382.552275px;}
.y65{bottom:383.106000px;}
.y102{bottom:384.406050px;}
.yc8{bottom:398.688750px;}
.y2b{bottom:399.052350px;}
.y101{bottom:400.156050px;}
.y64{bottom:401.856000px;}
.y97{bottom:405.118200px;}
.y2a{bottom:415.552425px;}
.y100{bottom:415.906050px;}
.yc7{bottom:417.438750px;}
.y96{bottom:428.391000px;}
.yff{bottom:431.656050px;}
.y29{bottom:433.146000px;}
.y63{bottom:433.362000px;}
.yc6{bottom:436.188750px;}
.yfe{bottom:447.406050px;}
.y95{bottom:451.665000px;}
.yc5{bottom:454.938750px;}
.yfd{bottom:463.156050px;}
.y28{bottom:464.040300px;}
.yc4{bottom:473.688750px;}
.y27{bottom:477.540000px;}
.y94{bottom:478.296450px;}
.y62{bottom:478.375500px;}
.yfc{bottom:478.906050px;}
.yc3{bottom:492.438750px;}
.yfb{bottom:494.656050px;}
.y93{bottom:494.796150px;}
.y61{bottom:497.125500px;}
.y26{bottom:499.914150px;}
.yfa{bottom:510.406050px;}
.yc2{bottom:511.188750px;}
.y60{bottom:515.875500px;}
.y25{bottom:521.197050px;}
.yf9{bottom:526.156050px;}
.yc1{bottom:529.938750px;}
.y92{bottom:530.046900px;}
.y5f{bottom:534.625500px;}
.y24{bottom:537.697125px;}
.yf8{bottom:541.906050px;}
.yc0{bottom:548.688750px;}
.y91{bottom:548.796900px;}
.y5e{bottom:553.375500px;}
.y23{bottom:554.197200px;}
.yf7{bottom:557.656050px;}
.ybf{bottom:567.438750px;}
.y90{bottom:567.546900px;}
.y22{bottom:570.697275px;}
.y5d{bottom:572.125500px;}
.yf6{bottom:573.406050px;}
.ybe{bottom:586.188750px;}
.y8f{bottom:586.296900px;}
.y21{bottom:587.197350px;}
.yf5{bottom:589.156050px;}
.y5c{bottom:590.875500px;}
.y20{bottom:603.697425px;}
.yf4{bottom:604.906050px;}
.ybd{bottom:604.938750px;}
.y8e{bottom:605.046900px;}
.y5b{bottom:609.625500px;}
.y1f{bottom:620.197500px;}
.yf3{bottom:620.656050px;}
.ybc{bottom:623.688750px;}
.y8d{bottom:623.796900px;}
.y5a{bottom:628.375500px;}
.yf2{bottom:636.406050px;}
.y1e{bottom:636.697575px;}
.ybb{bottom:642.438750px;}
.y8c{bottom:642.546900px;}
.y59{bottom:647.125500px;}
.yf1{bottom:652.156050px;}
.y1d{bottom:653.197650px;}
.yba{bottom:661.188750px;}
.y8b{bottom:661.296900px;}
.y58{bottom:665.875500px;}
.yf0{bottom:667.906050px;}
.y1c{bottom:669.697725px;}
.yb9{bottom:679.938750px;}
.y8a{bottom:680.046900px;}
.yef{bottom:683.656050px;}
.y57{bottom:684.625500px;}
.y1b{bottom:686.197800px;}
.yb8{bottom:698.688750px;}
.y89{bottom:698.796900px;}
.yee{bottom:699.406050px;}
.y1a{bottom:702.697875px;}
.y56{bottom:703.375500px;}
.yed{bottom:715.156050px;}
.yb7{bottom:717.438750px;}
.y88{bottom:717.546900px;}
.y19{bottom:719.197950px;}
.y55{bottom:722.125500px;}
.yec{bottom:730.906050px;}
.y18{bottom:735.698025px;}
.yb6{bottom:736.188750px;}
.y87{bottom:736.296900px;}
.y54{bottom:740.875500px;}
.yeb{bottom:746.656050px;}
.y17{bottom:753.290100px;}
.yb5{bottom:754.938750px;}
.y86{bottom:755.046900px;}
.y53{bottom:759.625500px;}
.yea{bottom:762.406050px;}
.yb4{bottom:773.688750px;}
.y85{bottom:773.796900px;}
.ye9{bottom:778.156050px;}
.y52{bottom:778.375500px;}
.yb3{bottom:792.438750px;}
.y84{bottom:792.546900px;}
.ye8{bottom:793.906050px;}
.y51{bottom:797.125500px;}
.y16{bottom:800.781750px;}
.ye7{bottom:809.656050px;}
.yb2{bottom:811.188750px;}
.y83{bottom:811.296900px;}
.y50{bottom:815.875500px;}
.y15{bottom:818.781750px;}
.ye6{bottom:825.406050px;}
.yb1{bottom:829.938750px;}
.y82{bottom:830.046900px;}
.y4f{bottom:834.625500px;}
.y14{bottom:836.781540px;}
.ye5{bottom:841.156050px;}
.yb0{bottom:848.688750px;}
.y81{bottom:848.796900px;}
.y4e{bottom:853.375500px;}
.y13{bottom:854.084250px;}
.ye4{bottom:856.906050px;}
.y80{bottom:867.546900px;}
.y4d{bottom:872.125500px;}
.ye3{bottom:872.656050px;}
.yaf{bottom:880.194900px;}
.y11{bottom:880.542900px;}
.y12{bottom:880.587900px;}
.y7f{bottom:886.296900px;}
.ye2{bottom:888.406050px;}
.y4c{bottom:890.875500px;}
.yf{bottom:903.042900px;}
.y10{bottom:903.087900px;}
.ye1{bottom:904.156050px;}
.y4b{bottom:909.625500px;}
.y7e{bottom:917.803050px;}
.ye0{bottom:919.906050px;}
.yae{bottom:924.840150px;}
.y4a{bottom:928.375500px;}
.ydf{bottom:935.656050px;}
.yad{bottom:945.592950px;}
.y49{bottom:947.125500px;}
.ye{bottom:947.546550px;}
.yde{bottom:951.406050px;}
.y7d{bottom:962.064000px;}
.yd{bottom:965.546550px;}
.y48{bottom:965.875500px;}
.yac{bottom:966.343350px;}
.ydd{bottom:967.156050px;}
.y7c{bottom:980.814000px;}
.yc{bottom:983.546430px;}
.y47{bottom:984.625500px;}
.yab{bottom:987.093750px;}
.ydc{bottom:987.157050px;}
.y7b{bottom:999.564000px;}
.yb{bottom:1000.847700px;}
.y46{bottom:1003.375500px;}
.yaa{bottom:1007.844150px;}
.y7a{bottom:1018.314000px;}
.y45{bottom:1022.125500px;}
.y9{bottom:1027.306200px;}
.ya{bottom:1027.351200px;}
.ydb{bottom:1028.408700px;}
.ya9{bottom:1030.190550px;}
.y79{bottom:1037.064000px;}
.y44{bottom:1040.875500px;}
.yda{bottom:1044.908400px;}
.ya8{bottom:1052.536950px;}
.y78{bottom:1055.814000px;}
.y43{bottom:1059.625500px;}
.yd9{bottom:1061.408100px;}
.y3f{bottom:1072.822500px;}
.y77{bottom:1074.564000px;}
.yd8{bottom:1077.907800px;}
.ya7{bottom:1077.908100px;}
.y42{bottom:1091.131500px;}
.y76{bottom:1093.314000px;}
.yd7{bottom:1094.407500px;}
.ya6{bottom:1094.407800px;}
.y5{bottom:1096.482600px;}
.y7{bottom:1100.682600px;}
.y4{bottom:1105.482600px;}
.y2{bottom:1105.729650px;}
.y3{bottom:1114.482600px;}
.y1{bottom:1121.929650px;}
.y6{bottom:1123.260000px;}
.y41{bottom:1135.835400px;}
.y40{bottom:1136.927550px;}
.h3{height:21.855469px;}
.h8{height:25.335352px;}
.h15{height:34.945312px;}
.h14{height:34.968750px;}
.h19{height:36.112275px;}
.h1a{height:36.118875px;}
.he{height:37.129395px;}
.hd{height:37.185223px;}
.h10{height:37.374047px;}
.ha{height:37.380047px;}
.h4{height:39.313477px;}
.h2{height:39.339844px;}
.hc{height:41.553223px;}
.hb{height:41.748047px;}
.h11{height:41.748347px;}
.h13{height:41.748647px;}
.h12{height:41.748947px;}
.h16{height:43.681641px;}
.h17{height:43.710938px;}
.h7{height:45.134752px;}
.h9{height:45.135952px;}
.h1{height:48.082031px;}
.hf{height:49.378847px;}
.h6{height:52.417969px;}
.h18{height:76.440750px;}
.h5{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:1.913400px;}
.x3{left:57.879000px;}
.x17{left:59.315100px;}
.x14{left:62.397450px;}
.x15{left:63.567000px;}
.x26{left:65.690100px;}
.x2{left:70.833750px;}
.x7{left:80.362050px;}
.x8{left:82.275450px;}
.x27{left:84.826950px;}
.xd{left:86.817600px;}
.xe{left:88.731000px;}
.x12{left:90.688260px;}
.x1a{left:101.834700px;}
.xc{left:102.915000px;}
.xa{left:119.490780px;}
.x19{left:127.346700px;}
.x1{left:140.996550px;}
.x13{left:145.985250px;}
.x9{left:160.717800px;}
.xb{left:162.117300px;}
.x11{left:165.207300px;}
.x16{left:180.496800px;}
.xf{left:381.923850px;}
.x10{left:383.837250px;}
.x28{left:454.747650px;}
.x2b{left:476.334000px;}
.x29{left:480.260400px;}
.x2a{left:483.008400px;}
.x1b{left:497.263200px;}
.x22{left:503.643900px;}
.x1c{left:522.781050px;}
.x21{left:542.983050px;}
.x20{left:544.652250px;}
.x1d{left:549.979050px;}
.x1f{left:556.643850px;}
.x1e{left:563.983050px;}
.x23{left:585.163500px;}
.x24{left:602.505900px;}
.x18{left:610.021200px;}
.x4{left:672.439200px;}
.x5{left:680.211150px;}
.x25{left:799.966500px;}
@media print{
.v2{vertical-align:-17.599573pt;}
.v3{vertical-align:-3.882667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.782933pt;}
.v6{vertical-align:14.071467pt;}
.v1{vertical-align:17.599467pt;}
.v5{vertical-align:36.864000pt;}
.ls19{letter-spacing:-2.026667pt;}
.ls1a{letter-spacing:-1.266667pt;}
.ls17{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.537600pt;}
.ls18{letter-spacing:-0.010133pt;}
.ls14{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.lsb{letter-spacing:0.000853pt;}
.ls5{letter-spacing:0.000960pt;}
.ls4{letter-spacing:0.001067pt;}
.ls6{letter-spacing:0.004800pt;}
.ls13{letter-spacing:0.005067pt;}
.lsa{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.006400pt;}
.ls1e{letter-spacing:0.008533pt;}
.ls9{letter-spacing:0.010667pt;}
.ls1b{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.552267pt;}
.lsd{letter-spacing:0.592800pt;}
.lse{letter-spacing:1.089333pt;}
.ls8{letter-spacing:1.107200pt;}
.ls7{letter-spacing:1.113600pt;}
.ls10{letter-spacing:1.803733pt;}
.ls1{letter-spacing:2.252800pt;}
.ls0{letter-spacing:3.350400pt;}
.ls16{letter-spacing:3.360000pt;}
.ls12{letter-spacing:46.795467pt;}
.ls11{letter-spacing:130.335733pt;}
.ls1f{letter-spacing:260.317013pt;}
.ls20{letter-spacing:261.009920pt;}
.lsc{letter-spacing:261.512267pt;}
.ls1c{letter-spacing:429.661867pt;}
.ls1d{letter-spacing:447.453867pt;}
.ws6{word-spacing:-66.252800pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws7{word-spacing:-53.333333pt;}
.ws8{word-spacing:-52.736000pt;}
.ws4{word-spacing:-51.360000pt;}
.wsd{word-spacing:-50.666667pt;}
.wsf{word-spacing:-49.400000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wse{word-spacing:-45.333333pt;}
.ws9c{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws3b{word-spacing:-17.792000pt;}
.ws9{word-spacing:-14.826667pt;}
.ws9a{word-spacing:-13.344000pt;}
.ws46{word-spacing:-11.861333pt;}
.wsb{word-spacing:-11.552000pt;}
.ws2d{word-spacing:-3.946933pt;}
.ws14{word-spacing:-3.500800pt;}
.ws6d{word-spacing:-3.168000pt;}
.ws72{word-spacing:-3.157333pt;}
.ws1e{word-spacing:-3.131200pt;}
.ws1d{word-spacing:-2.842400pt;}
.ws1c{word-spacing:-2.837333pt;}
.ws6f{word-spacing:-2.805333pt;}
.ws4f{word-spacing:-2.784000pt;}
.wsd8{word-spacing:-2.355200pt;}
.ws39{word-spacing:-2.274933pt;}
.ws64{word-spacing:-2.245333pt;}
.ws23{word-spacing:-2.193867pt;}
.wsa8{word-spacing:-2.080000pt;}
.ws13{word-spacing:-1.978667pt;}
.ws18{word-spacing:-1.960800pt;}
.ws17{word-spacing:-1.955733pt;}
.ws2e{word-spacing:-1.808800pt;}
.ws32{word-spacing:-1.803733pt;}
.wsaf{word-spacing:-1.797333pt;}
.ws11{word-spacing:-1.780800pt;}
.ws88{word-spacing:-1.733333pt;}
.ws98{word-spacing:-1.636800pt;}
.wse9{word-spacing:-1.625600pt;}
.wse6{word-spacing:-1.608533pt;}
.ws56{word-spacing:-1.482667pt;}
.wsec{word-spacing:-1.472000pt;}
.ws29{word-spacing:-1.428800pt;}
.ws19{word-spacing:-1.408533pt;}
.wscd{word-spacing:-1.399467pt;}
.wsa9{word-spacing:-1.392000pt;}
.wsdf{word-spacing:-1.378133pt;}
.ws1a{word-spacing:-1.357867pt;}
.wsd5{word-spacing:-1.352533pt;}
.ws75{word-spacing:-1.312000pt;}
.wsa6{word-spacing:-1.280000pt;}
.wsc7{word-spacing:-1.186133pt;}
.ws12{word-spacing:-1.126400pt;}
.wsc5{word-spacing:-1.092267pt;}
.ws66{word-spacing:-1.061333pt;}
.wse7{word-spacing:-1.053867pt;}
.ws4c{word-spacing:-1.002667pt;}
.ws90{word-spacing:-0.917333pt;}
.ws81{word-spacing:-0.778667pt;}
.ws4a{word-spacing:-0.720000pt;}
.ws4b{word-spacing:-0.570667pt;}
.ws2a{word-spacing:-0.420533pt;}
.ws38{word-spacing:-0.410400pt;}
.ws62{word-spacing:-0.394667pt;}
.wsc1{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.283733pt;}
.wsd1{word-spacing:-0.256000pt;}
.ws31{word-spacing:-0.243200pt;}
.ws7a{word-spacing:-0.234667pt;}
.ws3a{word-spacing:-0.213333pt;}
.wsbd{word-spacing:-0.100800pt;}
.ws15{word-spacing:-0.081067pt;}
.ws16{word-spacing:-0.070933pt;}
.ws3c{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.050667pt;}
.ws9b{word-spacing:-0.048000pt;}
.ws9d{word-spacing:-0.042667pt;}
.wsd0{word-spacing:-0.038400pt;}
.ws6c{word-spacing:-0.037333pt;}
.ws10{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.208000pt;}
.ws2c{word-spacing:0.263467pt;}
.wsae{word-spacing:0.304000pt;}
.ws35{word-spacing:0.410400pt;}
.ws22{word-spacing:0.430667pt;}
.ws30{word-spacing:0.476267pt;}
.ws20{word-spacing:0.532000pt;}
.wsa0{word-spacing:0.538667pt;}
.wse1{word-spacing:0.546133pt;}
.ws83{word-spacing:0.554667pt;}
.ws37{word-spacing:0.557333pt;}
.ws34{word-spacing:0.572533pt;}
.ws1f{word-spacing:0.608000pt;}
.ws26{word-spacing:0.648533pt;}
.ws27{word-spacing:0.653600pt;}
.wsa7{word-spacing:0.709333pt;}
.wsdd{word-spacing:0.712533pt;}
.wsde{word-spacing:0.716800pt;}
.ws78{word-spacing:0.725333pt;}
.ws36{word-spacing:0.896800pt;}
.ws77{word-spacing:0.901333pt;}
.wscc{word-spacing:0.921600pt;}
.ws79{word-spacing:0.928000pt;}
.ws9f{word-spacing:0.949333pt;}
.ws28{word-spacing:1.053867pt;}
.wsa4{word-spacing:1.056000pt;}
.ws73{word-spacing:1.066667pt;}
.wsba{word-spacing:1.137600pt;}
.ws5f{word-spacing:1.168000pt;}
.wsc9{word-spacing:1.207467pt;}
.wsbb{word-spacing:1.219200pt;}
.wsbc{word-spacing:1.224000pt;}
.ws63{word-spacing:1.232000pt;}
.wsc2{word-spacing:1.368000pt;}
.wse3{word-spacing:1.454933pt;}
.wseb{word-spacing:1.612800pt;}
.ws21{word-spacing:1.616267pt;}
.wsad{word-spacing:1.658667pt;}
.ws96{word-spacing:1.797333pt;}
.ws2f{word-spacing:1.818933pt;}
.ws24{word-spacing:1.900000pt;}
.ws53{word-spacing:1.904000pt;}
.wsa1{word-spacing:1.914667pt;}
.wsc4{word-spacing:1.962667pt;}
.ws84{word-spacing:2.032000pt;}
.wsca{word-spacing:2.069333pt;}
.ws65{word-spacing:2.112000pt;}
.ws25{word-spacing:2.290133pt;}
.ws8e{word-spacing:2.421333pt;}
.ws70{word-spacing:2.442667pt;}
.wsd6{word-spacing:2.461867pt;}
.wsea{word-spacing:2.547200pt;}
.wsb4{word-spacing:2.714667pt;}
.ws1b{word-spacing:2.746133pt;}
.wse5{word-spacing:2.935467pt;}
.ws33{word-spacing:3.065333pt;}
.ws6e{word-spacing:3.109333pt;}
.ws5b{word-spacing:3.136000pt;}
.ws5c{word-spacing:3.141333pt;}
.ws69{word-spacing:3.146667pt;}
.wsc3{word-spacing:3.148800pt;}
.ws94{word-spacing:3.168000pt;}
.wse8{word-spacing:3.208533pt;}
.ws85{word-spacing:3.237333pt;}
.wsda{word-spacing:3.264000pt;}
.wsb5{word-spacing:3.338667pt;}
.ws93{word-spacing:3.397333pt;}
.ws71{word-spacing:3.504000pt;}
.ws55{word-spacing:3.530667pt;}
.wsd4{word-spacing:3.729067pt;}
.ws91{word-spacing:3.930667pt;}
.ws74{word-spacing:4.058667pt;}
.ws4d{word-spacing:4.149333pt;}
.wse2{word-spacing:4.198400pt;}
.wse4{word-spacing:4.224000pt;}
.wsb3{word-spacing:4.293333pt;}
.ws8a{word-spacing:4.394667pt;}
.ws4e{word-spacing:4.426667pt;}
.wsbf{word-spacing:4.449600pt;}
.ws52{word-spacing:4.453333pt;}
.wsbe{word-spacing:4.641600pt;}
.ws82{word-spacing:4.656000pt;}
.wscb{word-spacing:4.765867pt;}
.ws92{word-spacing:5.226667pt;}
.ws6b{word-spacing:5.242667pt;}
.ws89{word-spacing:5.264000pt;}
.ws7b{word-spacing:5.632000pt;}
.wsb6{word-spacing:5.738667pt;}
.ws6a{word-spacing:5.856000pt;}
.wsdc{word-spacing:5.888000pt;}
.ws95{word-spacing:6.165333pt;}
.wsa5{word-spacing:6.485333pt;}
.wsb1{word-spacing:6.490667pt;}
.wsc0{word-spacing:6.547200pt;}
.ws86{word-spacing:6.560000pt;}
.ws57{word-spacing:6.581333pt;}
.wsb7{word-spacing:6.656000pt;}
.ws59{word-spacing:6.736000pt;}
.ws7d{word-spacing:7.104000pt;}
.ws61{word-spacing:7.114667pt;}
.wsd2{word-spacing:7.150933pt;}
.ws8b{word-spacing:7.248000pt;}
.wsb0{word-spacing:7.392000pt;}
.ws5d{word-spacing:7.616000pt;}
.ws5e{word-spacing:7.621333pt;}
.ws68{word-spacing:7.840000pt;}
.wsd7{word-spacing:7.863467pt;}
.wsb9{word-spacing:7.915200pt;}
.ws76{word-spacing:8.138667pt;}
.ws7f{word-spacing:8.160000pt;}
.wsce{word-spacing:8.170667pt;}
.ws50{word-spacing:8.213333pt;}
.ws51{word-spacing:8.245333pt;}
.wsdb{word-spacing:8.285867pt;}
.ws80{word-spacing:8.373333pt;}
.wsd3{word-spacing:8.422400pt;}
.wsc6{word-spacing:8.580267pt;}
.wsaa{word-spacing:8.666667pt;}
.ws60{word-spacing:8.677333pt;}
.ws8f{word-spacing:8.704000pt;}
.wse0{word-spacing:9.066667pt;}
.ws8c{word-spacing:9.072000pt;}
.ws7c{word-spacing:9.429333pt;}
.ws54{word-spacing:10.112000pt;}
.ws5a{word-spacing:10.160000pt;}
.wsd9{word-spacing:10.321067pt;}
.wsee{word-spacing:10.496000pt;}
.wsac{word-spacing:10.586667pt;}
.ws87{word-spacing:10.608000pt;}
.wsa2{word-spacing:10.778667pt;}
.wsab{word-spacing:10.784000pt;}
.ws58{word-spacing:10.816000pt;}
.ws67{word-spacing:10.842667pt;}
.wsed{word-spacing:11.110400pt;}
.wsb8{word-spacing:11.194667pt;}
.wscf{word-spacing:11.421867pt;}
.wsc8{word-spacing:11.712000pt;}
.wsb2{word-spacing:11.749333pt;}
.ws7e{word-spacing:13.061333pt;}
.wsa3{word-spacing:15.706667pt;}
.ws97{word-spacing:19.603200pt;}
.ws9e{word-spacing:21.297600pt;}
.ws43{word-spacing:154.709333pt;}
.ws99{word-spacing:214.357333pt;}
.wsa{word-spacing:244.299733pt;}
.ws48{word-spacing:313.390933pt;}
.ws49{word-spacing:349.781333pt;}
.ws45{word-spacing:373.947733pt;}
.ws44{word-spacing:400.029867pt;}
.ws47{word-spacing:405.657600pt;}
.ws40{word-spacing:446.745600pt;}
.ws3f{word-spacing:452.672000pt;}
.ws3e{word-spacing:495.325867pt;}
.ws3d{word-spacing:521.412267pt;}
.ws41{word-spacing:558.242133pt;}
.ws42{word-spacing:608.230400pt;}
._b{margin-left:-14.976000pt;}
._a{margin-left:-13.274667pt;}
._c{margin-left:-11.578667pt;}
._7{margin-left:-10.356267pt;}
._1a{margin-left:-9.196800pt;}
._19{margin-left:-8.085333pt;}
._d{margin-left:-6.770133pt;}
._5{margin-left:-4.973867pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.240000pt;}
._6{width:3.872000pt;}
._1b{width:5.797867pt;}
._e{width:7.800533pt;}
._9{width:54.261867pt;}
._12{width:55.654400pt;}
._11{width:62.557867pt;}
._10{width:75.746133pt;}
._8{width:215.376533pt;}
._15{width:272.392533pt;}
._17{width:296.123733pt;}
._13{width:300.851200pt;}
._14{width:323.246933pt;}
._18{width:327.184533pt;}
._16{width:346.973867pt;}
._f{width:379.272533pt;}
.fs9{font-size:24.746667pt;}
.fs2{font-size:26.666667pt;}
.fs5{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.040000pt;}
.y3e{bottom:63.528800pt;}
.y75{bottom:73.872000pt;}
.yd6{bottom:75.482667pt;}
.y3d{bottom:75.528800pt;}
.y115{bottom:75.694267pt;}
.ya5{bottom:78.921333pt;}
.y114{bottom:89.694267pt;}
.yd5{bottom:90.149067pt;}
.y74{bottom:90.538667pt;}
.ya4{bottom:97.353333pt;}
.y3c{bottom:100.127733pt;}
.y113{bottom:103.694267pt;}
.yd4{bottom:104.815467pt;}
.y73{bottom:107.205333pt;}
.y3b{bottom:112.127467pt;}
.ya3{bottom:115.785333pt;}
.y112{bottom:117.694267pt;}
.yd3{bottom:123.261867pt;}
.y72{bottom:123.872000pt;}
.y3a{bottom:130.462133pt;}
.y111{bottom:131.694267pt;}
.ya2{bottom:134.218400pt;}
.yd2{bottom:137.928267pt;}
.y71{bottom:140.538667pt;}
.y110{bottom:145.694267pt;}
.y39{bottom:149.379400pt;}
.yd1{bottom:152.594667pt;}
.ya0{bottom:152.650400pt;}
.y70{bottom:157.205333pt;}
.y10f{bottom:159.694267pt;}
.y38{bottom:164.046133pt;}
.yd0{bottom:171.039867pt;}
.ya1{bottom:171.082400pt;}
.y10e{bottom:173.694267pt;}
.y6f{bottom:173.872000pt;}
.y37{bottom:178.712867pt;}
.ycf{bottom:185.706267pt;}
.y10d{bottom:187.694267pt;}
.y9f{bottom:189.514400pt;}
.y6e{bottom:190.538667pt;}
.y36{bottom:193.379467pt;}
.y9e{bottom:198.730400pt;}
.y10c{bottom:201.694267pt;}
.y6d{bottom:207.205333pt;}
.y35{bottom:208.046200pt;}
.y10b{bottom:215.694267pt;}
.yce{bottom:220.373067pt;}
.y34{bottom:222.712933pt;}
.y6c{bottom:223.872000pt;}
.y9d{bottom:226.379467pt;}
.y10a{bottom:229.694267pt;}
.ycd{bottom:237.039733pt;}
.y33{bottom:237.379667pt;}
.y6b{bottom:240.538667pt;}
.y109{bottom:243.694267pt;}
.y9c{bottom:246.767733pt;}
.y32{bottom:252.046333pt;}
.ycc{bottom:253.706400pt;}
.y6a{bottom:257.205333pt;}
.y108{bottom:257.694267pt;}
.y31{bottom:266.713067pt;}
.ycb{bottom:270.373067pt;}
.y9b{bottom:271.269467pt;}
.y107{bottom:271.694267pt;}
.y69{bottom:273.872000pt;}
.y30{bottom:281.379800pt;}
.y106{bottom:285.694267pt;}
.y9a{bottom:285.935867pt;}
.yca{bottom:287.039733pt;}
.y68{bottom:290.538667pt;}
.y2f{bottom:296.046333pt;}
.y105{bottom:299.694267pt;}
.y67{bottom:307.205333pt;}
.y2e{bottom:310.713067pt;}
.y104{bottom:313.694267pt;}
.yc9{bottom:315.045200pt;}
.y99{bottom:318.729067pt;}
.y66{bottom:323.872000pt;}
.y2d{bottom:325.379800pt;}
.y103{bottom:327.694267pt;}
.y98{bottom:339.417067pt;}
.y2c{bottom:340.046467pt;}
.y65{bottom:340.538667pt;}
.y102{bottom:341.694267pt;}
.yc8{bottom:354.390000pt;}
.y2b{bottom:354.713200pt;}
.y101{bottom:355.694267pt;}
.y64{bottom:357.205333pt;}
.y97{bottom:360.105067pt;}
.y2a{bottom:369.379933pt;}
.y100{bottom:369.694267pt;}
.yc7{bottom:371.056667pt;}
.y96{bottom:380.792000pt;}
.yff{bottom:383.694267pt;}
.y29{bottom:385.018667pt;}
.y63{bottom:385.210667pt;}
.yc6{bottom:387.723333pt;}
.yfe{bottom:397.694267pt;}
.y95{bottom:401.480000pt;}
.yc5{bottom:404.390000pt;}
.yfd{bottom:411.694267pt;}
.y28{bottom:412.480267pt;}
.yc4{bottom:421.056667pt;}
.y27{bottom:424.480000pt;}
.y94{bottom:425.152400pt;}
.y62{bottom:425.222667pt;}
.yfc{bottom:425.694267pt;}
.yc3{bottom:437.723333pt;}
.yfb{bottom:439.694267pt;}
.y93{bottom:439.818800pt;}
.y61{bottom:441.889333pt;}
.y26{bottom:444.368133pt;}
.yfa{bottom:453.694267pt;}
.yc2{bottom:454.390000pt;}
.y60{bottom:458.556000pt;}
.y25{bottom:463.286267pt;}
.yf9{bottom:467.694267pt;}
.yc1{bottom:471.056667pt;}
.y92{bottom:471.152800pt;}
.y5f{bottom:475.222667pt;}
.y24{bottom:477.953000pt;}
.yf8{bottom:481.694267pt;}
.yc0{bottom:487.723333pt;}
.y91{bottom:487.819467pt;}
.y5e{bottom:491.889333pt;}
.y23{bottom:492.619733pt;}
.yf7{bottom:495.694267pt;}
.ybf{bottom:504.390000pt;}
.y90{bottom:504.486133pt;}
.y22{bottom:507.286467pt;}
.y5d{bottom:508.556000pt;}
.yf6{bottom:509.694267pt;}
.ybe{bottom:521.056667pt;}
.y8f{bottom:521.152800pt;}
.y21{bottom:521.953200pt;}
.yf5{bottom:523.694267pt;}
.y5c{bottom:525.222667pt;}
.y20{bottom:536.619933pt;}
.yf4{bottom:537.694267pt;}
.ybd{bottom:537.723333pt;}
.y8e{bottom:537.819467pt;}
.y5b{bottom:541.889333pt;}
.y1f{bottom:551.286667pt;}
.yf3{bottom:551.694267pt;}
.ybc{bottom:554.390000pt;}
.y8d{bottom:554.486133pt;}
.y5a{bottom:558.556000pt;}
.yf2{bottom:565.694267pt;}
.y1e{bottom:565.953400pt;}
.ybb{bottom:571.056667pt;}
.y8c{bottom:571.152800pt;}
.y59{bottom:575.222667pt;}
.yf1{bottom:579.694267pt;}
.y1d{bottom:580.620133pt;}
.yba{bottom:587.723333pt;}
.y8b{bottom:587.819467pt;}
.y58{bottom:591.889333pt;}
.yf0{bottom:593.694267pt;}
.y1c{bottom:595.286867pt;}
.yb9{bottom:604.390000pt;}
.y8a{bottom:604.486133pt;}
.yef{bottom:607.694267pt;}
.y57{bottom:608.556000pt;}
.y1b{bottom:609.953600pt;}
.yb8{bottom:621.056667pt;}
.y89{bottom:621.152800pt;}
.yee{bottom:621.694267pt;}
.y1a{bottom:624.620333pt;}
.y56{bottom:625.222667pt;}
.yed{bottom:635.694267pt;}
.yb7{bottom:637.723333pt;}
.y88{bottom:637.819467pt;}
.y19{bottom:639.287067pt;}
.y55{bottom:641.889333pt;}
.yec{bottom:649.694267pt;}
.y18{bottom:653.953800pt;}
.yb6{bottom:654.390000pt;}
.y87{bottom:654.486133pt;}
.y54{bottom:658.556000pt;}
.yeb{bottom:663.694267pt;}
.y17{bottom:669.591200pt;}
.yb5{bottom:671.056667pt;}
.y86{bottom:671.152800pt;}
.y53{bottom:675.222667pt;}
.yea{bottom:677.694267pt;}
.yb4{bottom:687.723333pt;}
.y85{bottom:687.819467pt;}
.ye9{bottom:691.694267pt;}
.y52{bottom:691.889333pt;}
.yb3{bottom:704.390000pt;}
.y84{bottom:704.486133pt;}
.ye8{bottom:705.694267pt;}
.y51{bottom:708.556000pt;}
.y16{bottom:711.806000pt;}
.ye7{bottom:719.694267pt;}
.yb2{bottom:721.056667pt;}
.y83{bottom:721.152800pt;}
.y50{bottom:725.222667pt;}
.y15{bottom:727.806000pt;}
.ye6{bottom:733.694267pt;}
.yb1{bottom:737.723333pt;}
.y82{bottom:737.819467pt;}
.y4f{bottom:741.889333pt;}
.y14{bottom:743.805813pt;}
.ye5{bottom:747.694267pt;}
.yb0{bottom:754.390000pt;}
.y81{bottom:754.486133pt;}
.y4e{bottom:758.556000pt;}
.y13{bottom:759.186000pt;}
.ye4{bottom:761.694267pt;}
.y80{bottom:771.152800pt;}
.y4d{bottom:775.222667pt;}
.ye3{bottom:775.694267pt;}
.yaf{bottom:782.395467pt;}
.y11{bottom:782.704800pt;}
.y12{bottom:782.744800pt;}
.y7f{bottom:787.819467pt;}
.ye2{bottom:789.694267pt;}
.y4c{bottom:791.889333pt;}
.yf{bottom:802.704800pt;}
.y10{bottom:802.744800pt;}
.ye1{bottom:803.694267pt;}
.y4b{bottom:808.556000pt;}
.y7e{bottom:815.824933pt;}
.ye0{bottom:817.694267pt;}
.yae{bottom:822.080133pt;}
.y4a{bottom:825.222667pt;}
.ydf{bottom:831.694267pt;}
.yad{bottom:840.527067pt;}
.y49{bottom:841.889333pt;}
.ye{bottom:842.263600pt;}
.yde{bottom:845.694267pt;}
.y7d{bottom:855.168000pt;}
.yd{bottom:858.263600pt;}
.y48{bottom:858.556000pt;}
.yac{bottom:858.971867pt;}
.ydd{bottom:859.694267pt;}
.y7c{bottom:871.834667pt;}
.yc{bottom:874.263493pt;}
.y47{bottom:875.222667pt;}
.yab{bottom:877.416667pt;}
.ydc{bottom:877.472933pt;}
.y7b{bottom:888.501333pt;}
.yb{bottom:889.642400pt;}
.y46{bottom:891.889333pt;}
.yaa{bottom:895.861467pt;}
.y7a{bottom:905.168000pt;}
.y45{bottom:908.556000pt;}
.y9{bottom:913.161067pt;}
.ya{bottom:913.201067pt;}
.ydb{bottom:914.141067pt;}
.ya9{bottom:915.724933pt;}
.y79{bottom:921.834667pt;}
.y44{bottom:925.222667pt;}
.yda{bottom:928.807467pt;}
.ya8{bottom:935.588400pt;}
.y78{bottom:938.501333pt;}
.y43{bottom:941.889333pt;}
.yd9{bottom:943.473867pt;}
.y3f{bottom:953.620000pt;}
.y77{bottom:955.168000pt;}
.yd8{bottom:958.140267pt;}
.ya7{bottom:958.140533pt;}
.y42{bottom:969.894667pt;}
.y76{bottom:971.834667pt;}
.yd7{bottom:972.806667pt;}
.ya6{bottom:972.806933pt;}
.y5{bottom:974.651200pt;}
.y7{bottom:978.384533pt;}
.y4{bottom:982.651200pt;}
.y2{bottom:982.870800pt;}
.y3{bottom:990.651200pt;}
.y1{bottom:997.270800pt;}
.y6{bottom:998.453333pt;}
.y41{bottom:1009.631467pt;}
.y40{bottom:1010.602267pt;}
.h3{height:19.427083pt;}
.h8{height:22.520312pt;}
.h15{height:31.062500pt;}
.h14{height:31.083333pt;}
.h19{height:32.099800pt;}
.h1a{height:32.105667pt;}
.he{height:33.003906pt;}
.hd{height:33.053531pt;}
.h10{height:33.221375pt;}
.ha{height:33.226708pt;}
.h4{height:34.945312pt;}
.h2{height:34.968750pt;}
.hc{height:36.936198pt;}
.hb{height:37.109375pt;}
.h11{height:37.109642pt;}
.h13{height:37.109908pt;}
.h12{height:37.110175pt;}
.h16{height:38.828125pt;}
.h17{height:38.854167pt;}
.h7{height:40.119779pt;}
.h9{height:40.120846pt;}
.h1{height:42.739583pt;}
.hf{height:43.892308pt;}
.h6{height:46.593750pt;}
.h18{height:67.947333pt;}
.h5{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.700800pt;}
.x3{left:51.448000pt;}
.x17{left:52.724533pt;}
.x14{left:55.464400pt;}
.x15{left:56.504000pt;}
.x26{left:58.391200pt;}
.x2{left:62.963333pt;}
.x7{left:71.432933pt;}
.x8{left:73.133733pt;}
.x27{left:75.401733pt;}
.xd{left:77.171200pt;}
.xe{left:78.872000pt;}
.x12{left:80.611787pt;}
.x1a{left:90.519733pt;}
.xc{left:91.480000pt;}
.xa{left:106.214027pt;}
.x19{left:113.197067pt;}
.x1{left:125.330267pt;}
.x13{left:129.764667pt;}
.x9{left:142.860267pt;}
.xb{left:144.104267pt;}
.x11{left:146.850933pt;}
.x16{left:160.441600pt;}
.xf{left:339.487867pt;}
.x10{left:341.188667pt;}
.x28{left:404.220133pt;}
.x2b{left:423.408000pt;}
.x29{left:426.898133pt;}
.x2a{left:429.340800pt;}
.x1b{left:442.011733pt;}
.x22{left:447.683467pt;}
.x1c{left:464.694267pt;}
.x21{left:482.651600pt;}
.x20{left:484.135333pt;}
.x1d{left:488.870267pt;}
.x1f{left:494.794533pt;}
.x1e{left:501.318267pt;}
.x23{left:520.145333pt;}
.x24{left:535.560800pt;}
.x18{left:542.241067pt;}
.x4{left:597.723733pt;}
.x5{left:604.632133pt;}
.x25{left:711.081333pt;}
}




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