
    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_e8da078fb38a7328c237d5be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_230528af8b483a7b51c126f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_32aeb2a0512a9bc66b87a394.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_a2a7e85d046cd64400ed0612.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_ef471decc2e9dcfdc9a7b794.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_ae5106c529fedec8d57899a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.676000;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_d6e136dd72ca84c24310f0a4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f489b5eb8d75f523bb4442cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_241f403e14b92e87cb26c0f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_dd59ae81e27c93a5631576ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_87c30636a4badb990f85ac5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.194000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-25.530000px;}
.v2{vertical-align:-19.536000px;}
.v3{vertical-align:-16.170000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.164000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:25.986000px;}
.v5{vertical-align:34.368000px;}
.v9{vertical-align:41.310000px;}
.v4{vertical-align:50.538000px;}
.va{vertical-align:65.070000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.001050px;}
.ls7{letter-spacing:0.002163px;}
.ls9{letter-spacing:0.003248px;}
.ls8{letter-spacing:0.982336px;}
.ls4{letter-spacing:1.000118px;}
.ls3{letter-spacing:2.988430px;}
.lsc{letter-spacing:13.901366px;}
.lsd{letter-spacing:18.178321px;}
.lsf{letter-spacing:18.184321px;}
.ls6{letter-spacing:21.794163px;}
.ls5{letter-spacing:21.795793px;}
.lsa{letter-spacing:22.649975px;}
.ls1{letter-spacing:32.724525px;}
.ls0{letter-spacing:32.727300px;}
.ls11{letter-spacing:32.728321px;}
.lse{letter-spacing:56.207366px;}
.ls10{letter-spacing:62.561366px;}
.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;}
}
.wsd{word-spacing:-39.107425px;}
.ws5{word-spacing:-38.773609px;}
.ws7{word-spacing:-37.989832px;}
.wse{word-spacing:-30.662158px;}
.wsf{word-spacing:-30.650873px;}
.wsa{word-spacing:-29.027837px;}
.ws7e{word-spacing:-20.084736px;}
.ws23{word-spacing:-18.327288px;}
.ws54{word-spacing:-12.829152px;}
.ws4f{word-spacing:-3.207275px;}
.wsdb{word-spacing:-2.618184px;}
.ws24{word-spacing:-2.487275px;}
.ws79{word-spacing:-2.421820px;}
.ws1b{word-spacing:-2.290911px;}
.wsa8{word-spacing:-2.160002px;}
.ws22{word-spacing:-2.094547px;}
.ws20{word-spacing:-2.023727px;}
.wscf{word-spacing:-1.832729px;}
.ws1a{word-spacing:-1.767274px;}
.wsab{word-spacing:-1.701820px;}
.ws7b{word-spacing:-1.636365px;}
.wsbd{word-spacing:-1.505456px;}
.ws70{word-spacing:-1.440001px;}
.wsc3{word-spacing:-1.178183px;}
.ws9b{word-spacing:-1.047274px;}
.wse9{word-spacing:-0.981819px;}
.ws88{word-spacing:-0.850910px;}
.ws92{word-spacing:-0.785455px;}
.ws8e{word-spacing:-0.720001px;}
.ws1c{word-spacing:-0.458182px;}
.ws58{word-spacing:-0.130909px;}
.ws6f{word-spacing:-0.065455px;}
.ws15{word-spacing:0.000000px;}
.wsb1{word-spacing:0.130909px;}
.wsc9{word-spacing:0.196364px;}
.wsb0{word-spacing:0.327273px;}
.ws21{word-spacing:0.392728px;}
.wsda{word-spacing:0.654546px;}
.wsce{word-spacing:0.720001px;}
.ws98{word-spacing:0.785455px;}
.ws78{word-spacing:0.916364px;}
.wsc7{word-spacing:0.981819px;}
.ws2b{word-spacing:1.047274px;}
.ws67{word-spacing:1.112728px;}
.ws69{word-spacing:1.178183px;}
.ws2a{word-spacing:1.243637px;}
.ws45{word-spacing:1.291162px;}
.ws59{word-spacing:1.440001px;}
.ws5d{word-spacing:1.570910px;}
.ws8a{word-spacing:1.636365px;}
.ws84{word-spacing:1.767274px;}
.ws5b{word-spacing:1.832729px;}
.ws8f{word-spacing:1.963638px;}
.wsc2{word-spacing:2.029093px;}
.ws9{word-spacing:2.045272px;}
.wsb{word-spacing:2.047915px;}
.ws8{word-spacing:2.052236px;}
.ws4{word-spacing:2.054878px;}
.wsc{word-spacing:2.073127px;}
.ws91{word-spacing:2.094547px;}
.ws9c{word-spacing:2.160002px;}
.wsa0{word-spacing:2.225456px;}
.ws68{word-spacing:2.290911px;}
.ws14{word-spacing:2.421820px;}
.ws41{word-spacing:2.474726px;}
.ws5f{word-spacing:2.487275px;}
.ws8d{word-spacing:2.552729px;}
.ws76{word-spacing:2.618184px;}
.ws7f{word-spacing:2.749093px;}
.ws5a{word-spacing:2.880002px;}
.ws17{word-spacing:2.945457px;}
.ws7a{word-spacing:3.010912px;}
.ws1f{word-spacing:3.076366px;}
.wsaf{word-spacing:3.141821px;}
.ws35{word-spacing:3.174106px;}
.wsad{word-spacing:3.207275px;}
.ws6a{word-spacing:3.272730px;}
.ws99{word-spacing:3.338185px;}
.ws42{word-spacing:3.389299px;}
.ws18{word-spacing:3.403639px;}
.ws3c{word-spacing:3.443098px;}
.ws77{word-spacing:3.466333px;}
.ws55{word-spacing:3.467234px;}
.ws53{word-spacing:3.468874px;}
.ws13{word-spacing:3.469094px;}
.ws61{word-spacing:3.471310px;}
.ws3e{word-spacing:3.496896px;}
.ws9f{word-spacing:3.534548px;}
.ws50{word-spacing:3.600003px;}
.ws40{word-spacing:3.658291px;}
.ws75{word-spacing:3.665458px;}
.ws60{word-spacing:3.861821px;}
.ws1{word-spacing:3.873474px;}
.ws48{word-spacing:3.873485px;}
.ws1e{word-spacing:3.992731px;}
.ws3d{word-spacing:3.995366px;}
.wsbb{word-spacing:4.058185px;}
.ws96{word-spacing:4.189094px;}
.ws9a{word-spacing:4.254549px;}
.ws2c{word-spacing:4.320004px;}
.wsc6{word-spacing:4.450913px;}
.ws9d{word-spacing:4.647277px;}
.wsd3{word-spacing:4.778186px;}
.ws26{word-spacing:4.843640px;}
.wsb3{word-spacing:4.909095px;}
.ws95{word-spacing:4.974550px;}
.wsb2{word-spacing:4.980086px;}
.ws62{word-spacing:5.040004px;}
.ws5c{word-spacing:5.105459px;}
.ws81{word-spacing:5.236368px;}
.ws83{word-spacing:5.301823px;}
.ws16{word-spacing:5.367277px;}
.ws9e{word-spacing:5.498186px;}
.ws3{word-spacing:5.629096px;}
.ws56{word-spacing:5.694550px;}
.ws93{word-spacing:5.760005px;}
.ws4d{word-spacing:5.825459px;}
.wsb7{word-spacing:5.890914px;}
.wse1{word-spacing:5.956369px;}
.wsd2{word-spacing:6.152732px;}
.ws89{word-spacing:6.168883px;}
.ws4e{word-spacing:6.218187px;}
.ws52{word-spacing:6.240614px;}
.ws3b{word-spacing:6.294413px;}
.ws4a{word-spacing:6.349096px;}
.ws4c{word-spacing:6.362654px;}
.ws87{word-spacing:6.414551px;}
.wscb{word-spacing:6.480005px;}
.wsca{word-spacing:6.545460px;}
.wsd8{word-spacing:6.599207px;}
.ws19{word-spacing:6.610915px;}
.ws66{word-spacing:6.676369px;}
.ws57{word-spacing:6.741824px;}
.wsa4{word-spacing:6.807278px;}
.ws2f{word-spacing:6.872733px;}
.ws25{word-spacing:6.938188px;}
.ws3f{word-spacing:6.939994px;}
.wsd7{word-spacing:7.003642px;}
.ws49{word-spacing:7.069097px;}
.ws36{word-spacing:7.155187px;}
.wsa9{word-spacing:7.200006px;}
.ws38{word-spacing:7.218298px;}
.wsd6{word-spacing:7.265461px;}
.ws10{word-spacing:7.402639px;}
.ws2{word-spacing:7.488716px;}
.ws74{word-spacing:7.527279px;}
.ws8c{word-spacing:7.592734px;}
.ws28{word-spacing:7.658188px;}
.ws3a{word-spacing:7.722989px;}
.wsd0{word-spacing:7.723643px;}
.ws27{word-spacing:7.789097px;}
.wsc5{word-spacing:7.854552px;}
.wscc{word-spacing:7.920007px;}
.ws44{word-spacing:7.962163px;}
.ws97{word-spacing:7.985461px;}
.wsc1{word-spacing:8.050916px;}
.ws73{word-spacing:8.116370px;}
.ws4b{word-spacing:8.181825px;}
.wsa7{word-spacing:8.247280px;}
.wsb8{word-spacing:8.509098px;}
.ws46{word-spacing:8.553946px;}
.ws71{word-spacing:8.640007px;}
.wsbc{word-spacing:8.705462px;}
.ws37{word-spacing:8.715341px;}
.ws39{word-spacing:8.769139px;}
.ws12{word-spacing:8.770916px;}
.wse7{word-spacing:8.836371px;}
.ws6e{word-spacing:8.901826px;}
.wsb6{word-spacing:9.032735px;}
.wsdd{word-spacing:9.246827px;}
.wsb9{word-spacing:9.360008px;}
.ws43{word-spacing:9.360922px;}
.ws72{word-spacing:9.425462px;}
.ws47{word-spacing:9.468518px;}
.wsd4{word-spacing:9.490917px;}
.ws90{word-spacing:9.621826px;}
.wse8{word-spacing:9.687281px;}
.ws1d{word-spacing:9.752735px;}
.wse0{word-spacing:9.818190px;}
.ws86{word-spacing:9.883645px;}
.wsa1{word-spacing:10.014554px;}
.ws51{word-spacing:10.080008px;}
.ws80{word-spacing:10.145463px;}
.wse6{word-spacing:10.210918px;}
.ws5e{word-spacing:10.341827px;}
.wsb4{word-spacing:10.407281px;}
.wsc8{word-spacing:10.538191px;}
.ws82{word-spacing:10.734554px;}
.ws0{word-spacing:10.785825px;}
.wsd1{word-spacing:10.800009px;}
.ws94{word-spacing:10.865464px;}
.wsd9{word-spacing:11.323646px;}
.ws29{word-spacing:11.389100px;}
.wsbf{word-spacing:11.454555px;}
.wse4{word-spacing:11.716373px;}
.wscd{word-spacing:11.847283px;}
.ws85{word-spacing:11.912737px;}
.ws7d{word-spacing:12.043033px;}
.wsde{word-spacing:12.043646px;}
.wsa6{word-spacing:12.240010px;}
.wsa2{word-spacing:12.370919px;}
.wse2{word-spacing:12.436374px;}
.ws34{word-spacing:12.535027px;}
.ws32{word-spacing:12.539280px;}
.wsa3{word-spacing:12.567283px;}
.wsd5{word-spacing:12.632738px;}
.wsac{word-spacing:12.698192px;}
.wsa5{word-spacing:12.763647px;}
.ws2d{word-spacing:12.829102px;}
.ws8b{word-spacing:12.894556px;}
.ws31{word-spacing:13.221829px;}
.wsc4{word-spacing:13.483648px;}
.wsdf{word-spacing:13.614557px;}
.ws6b{word-spacing:13.810921px;}
.ws6d{word-spacing:13.876375px;}
.ws6c{word-spacing:13.883701px;}
.wsae{word-spacing:14.007284px;}
.wsaa{word-spacing:14.138194px;}
.wsb5{word-spacing:14.269103px;}
.wsdc{word-spacing:14.334557px;}
.ws6{word-spacing:14.400012px;}
.ws7c{word-spacing:14.401033px;}
.ws33{word-spacing:14.471770px;}
.wsea{word-spacing:15.185467px;}
.wsba{word-spacing:15.250922px;}
.wsbe{word-spacing:15.905468px;}
.ws11{word-spacing:17.476378px;}
.ws30{word-spacing:17.869106px;}
.wseb{word-spacing:18.523652px;}
.wsc0{word-spacing:19.374562px;}
.ws63{word-spacing:25.500175px;}
.wse3{word-spacing:31.876390px;}
.ws65{word-spacing:34.940357px;}
.wse5{word-spacing:35.607302px;}
.ws2e{word-spacing:38.814578px;}
.ws64{word-spacing:123.512830px;}
._12{margin-left:-38.160032px;}
._9{margin-left:-36.392758px;}
._7{margin-left:-34.494574px;}
._5{margin-left:-32.727300px;}
._10{margin-left:-30.960026px;}
._6{margin-left:-10.996373px;}
._31{margin-left:-9.098189px;}
._3{margin-left:-7.919102px;}
._17{margin-left:-5.432732px;}
._1{margin-left:-3.719250px;}
._2{margin-left:-2.238007px;}
._18{margin-left:-1.231087px;}
._29{width:1.006921px;}
._16{width:2.029093px;}
._8{width:3.506162px;}
._26{width:10.860514px;}
._1e{width:16.644669px;}
._1b{width:17.816202px;}
._1d{width:19.059839px;}
._13{width:20.453563px;}
._b{width:21.730927px;}
._24{width:22.982216px;}
._23{width:25.251167px;}
._1f{width:26.325300px;}
._1c{width:27.752750px;}
._25{width:28.845149px;}
._c{width:30.688538px;}
._20{width:32.294219px;}
._14{width:33.346496px;}
._32{width:34.411566px;}
._1a{width:35.607302px;}
._28{width:37.149253px;}
._2f{width:38.239795px;}
._27{width:39.428771px;}
._2d{width:41.027483px;}
._21{width:42.374228px;}
._2c{width:43.814229px;}
._19{width:45.568952px;}
._2e{width:46.734584px;}
._22{width:48.564698px;}
._f{width:50.451037px;}
._a{width:53.170600px;}
._2a{width:54.576586px;}
._2b{width:55.832774px;}
._11{width:57.798824px;}
._0{width:60.623775px;}
._30{width:62.481341px;}
._e{width:63.900304px;}
._34{width:65.020156px;}
._35{width:75.128921px;}
._d{width:85.883972px;}
._33{width:115.347757px;}
._15{width:2049.267427px;}
._4{width:2158.105846px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(7,88,229);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:45.818400px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:145.890000px;}
.y4d{bottom:217.045500px;}
.yc8{bottom:222.114000px;}
.y6d{bottom:228.135000px;}
.y4c{bottom:233.484000px;}
.y1d{bottom:233.787000px;}
.ya8{bottom:235.647000px;}
.ye8{bottom:237.346500px;}
.y125{bottom:240.010500px;}
.yc7{bottom:242.437500px;}
.y105{bottom:243.339000px;}
.y130{bottom:247.509000px;}
.y6c{bottom:248.458500px;}
.y4b{bottom:249.922500px;}
.y1c{bottom:254.110500px;}
.ya7{bottom:255.970500px;}
.ye7{bottom:257.670000px;}
.y124{bottom:260.334000px;}
.yc6{bottom:262.762500px;}
.y104{bottom:263.662500px;}
.y4a{bottom:266.361000px;}
.y12f{bottom:267.832500px;}
.y13f{bottom:274.381500px;}
.y1b{bottom:274.434000px;}
.ya6{bottom:276.294000px;}
.ye6{bottom:277.993500px;}
.y123{bottom:280.657500px;}
.y94{bottom:282.757500px;}
.y49{bottom:282.799500px;}
.y103{bottom:283.986000px;}
.y6b{bottom:287.617500px;}
.y12e{bottom:288.156000px;}
.y13e{bottom:294.705000px;}
.y1a{bottom:294.757500px;}
.ya5{bottom:296.617500px;}
.y6a{bottom:298.845000px;}
.y48{bottom:299.238000px;}
.y122{bottom:300.982500px;}
.y93{bottom:303.081000px;}
.yc5{bottom:303.826500px;}
.y102{bottom:304.309500px;}
.ye5{bottom:308.479500px;}
.y13d{bottom:315.028500px;}
.y47{bottom:315.676500px;}
.ye4{bottom:328.803000px;}
.y19{bottom:329.602500px;}
.y121{bottom:331.467000px;}
.y46{bottom:332.113500px;}
.y101{bottom:334.795500px;}
.y13c{bottom:335.353500px;}
.y45{bottom:348.552000px;}
.ye3{bottom:349.128000px;}
.ya4{bottom:351.133500px;}
.y120{bottom:351.792000px;}
.y69{bottom:354.636000px;}
.y100{bottom:355.119000px;}
.y13b{bottom:355.677000px;}
.yc4{bottom:357.831000px;}
.y44{bottom:364.990500px;}
.ye2{bottom:369.451500px;}
.y11f{bottom:372.115500px;}
.yff{bottom:375.444000px;}
.y13a{bottom:376.000500px;}
.yc3{bottom:378.154500px;}
.y12d{bottom:379.612500px;}
.y43{bottom:381.429000px;}
.y86{bottom:382.866000px;}
.y68{bottom:385.122000px;}
.y18{bottom:385.348500px;}
.ye1{bottom:389.775000px;}
.y11e{bottom:392.439000px;}
.yfe{bottom:395.767500px;}
.y139{bottom:396.324000px;}
.y42{bottom:397.867500px;}
.y12c{bottom:399.937500px;}
.y85{bottom:403.189500px;}
.yc2{bottom:408.640500px;}
.y11d{bottom:412.762500px;}
.y41{bottom:414.306000px;}
.y138{bottom:416.647500px;}
.ye0{bottom:420.261000px;}
.yb3{bottom:423.523500px;}
.y67{bottom:426.186000px;}
.yc1{bottom:428.964000px;}
.yfd{bottom:430.735500px;}
.y11c{bottom:433.086000px;}
.y40{bottom:435.627000px;}
.y137{bottom:436.972500px;}
.y84{bottom:437.994000px;}
.y83{bottom:438.174000px;}
.ydf{bottom:440.584500px;}
.y82{bottom:444.459000px;}
.y17{bottom:446.092500px;}
.y3f{bottom:447.183000px;}
.y81{bottom:448.500000px;}
.yc0{bottom:449.289000px;}
.yfc{bottom:451.060500px;}
.yb2{bottom:458.491500px;}
.yde{bottom:460.908000px;}
.y11b{bottom:463.572000px;}
.y3e{bottom:463.621500px;}
.y16{bottom:466.416000px;}
.ybf{bottom:469.612500px;}
.y136{bottom:478.036500px;}
.yb1{bottom:478.815000px;}
.y66{bottom:479.593500px;}
.y3d{bottom:480.060000px;}
.ydd{bottom:481.231500px;}
.y11a{bottom:483.895500px;}
.y15{bottom:486.739500px;}
.ybe{bottom:489.936000px;}
.yfb{bottom:492.124500px;}
.y3c{bottom:496.498500px;}
.yb0{bottom:499.140000px;}
.y80{bottom:499.309500px;}
.ybc{bottom:500.098500px;}
.ydc{bottom:501.556500px;}
.y119{bottom:504.219000px;}
.y14{bottom:507.063000px;}
.y12b{bottom:511.717500px;}
.y65{bottom:514.561500px;}
.y3b{bottom:517.819500px;}
.ybb{bottom:520.422000px;}
.ydb{bottom:521.880000px;}
.y118{bottom:524.544000px;}
.y12a{bottom:532.041000px;}
.y7f{bottom:534.279000px;}
.y64{bottom:534.886500px;}
.yaf{bottom:540.204000px;}
.yba{bottom:540.745500px;}
.y13{bottom:543.751500px;}
.y117{bottom:544.867500px;}
.yfa{bottom:545.532000px;}
.yda{bottom:552.366000px;}
.y3a{bottom:553.530000px;}
.y7e{bottom:554.602500px;}
.y63{bottom:555.210000px;}
.yb9{bottom:561.069000px;}
.y12{bottom:564.075000px;}
.y116{bottom:565.191000px;}
.yf9{bottom:565.855500px;}
.yd9{bottom:572.689500px;}
.y7d{bottom:574.926000px;}
.y62{bottom:575.533500px;}
.ybd{bottom:581.392500px;}
.y11{bottom:584.398500px;}
.y115{bottom:585.514500px;}
.yf8{bottom:586.179000px;}
.yd8{bottom:593.013000px;}
.yae{bottom:593.611500px;}
.y39{bottom:594.682500px;}
.y61{bottom:595.857000px;}
.y10{bottom:604.722000px;}
.yf7{bottom:606.502500px;}
.y7c{bottom:609.895500px;}
.yd7{bottom:613.336500px;}
.yad{bottom:613.935000px;}
.y38{bottom:615.006000px;}
.yb8{bottom:615.585000px;}
.y114{bottom:616.000500px;}
.y129{bottom:623.499000px;}
.yf{bottom:625.045500px;}
.y60{bottom:630.826500px;}
.yd6{bottom:633.660000px;}
.y37{bottom:635.329500px;}
.yb7{bottom:635.908500px;}
.y113{bottom:636.324000px;}
.yf6{bottom:636.988500px;}
.y128{bottom:643.822500px;}
.yac{bottom:644.421000px;}
.ye{bottom:645.369000px;}
.y7b{bottom:650.961000px;}
.y36{bottom:655.654500px;}
.y112{bottom:656.647500px;}
.yf5{bottom:657.312000px;}
.yd5{bottom:664.146000px;}
.yab{bottom:664.744500px;}
.yd{bottom:665.694000px;}
.y5f{bottom:671.890500px;}
.y35{bottom:675.978000px;}
.y111{bottom:676.972500px;}
.yf4{bottom:677.637000px;}
.y92{bottom:681.037500px;}
.yd4{bottom:684.469500px;}
.yaa{bottom:685.068000px;}
.yc{bottom:686.017500px;}
.y34{bottom:696.301500px;}
.yf3{bottom:697.960500px;}
.y91{bottom:701.362500px;}
.y7a{bottom:704.367000px;}
.y135{bottom:704.793000px;}
.yd3{bottom:704.794500px;}
.ya9{bottom:705.391500px;}
.yb{bottom:706.341000px;}
.y110{bottom:707.457000px;}
.y5e{bottom:712.956000px;}
.y33{bottom:716.625000px;}
.yf2{bottom:718.284000px;}
.y90{bottom:721.686000px;}
.yd2{bottom:725.118000px;}
.ya{bottom:726.664500px;}
.y10f{bottom:727.782000px;}
.ya3{bottom:732.264000px;}
.yb6{bottom:734.269500px;}
.y127{bottom:735.279000px;}
.y32{bottom:736.948500px;}
.yf1{bottom:738.607500px;}
.y8f{bottom:742.009500px;}
.y79{bottom:743.770500px;}
.y134{bottom:745.441500px;}
.y9{bottom:746.988000px;}
.y10e{bottom:748.105500px;}
.ya2{bottom:752.589000px;}
.yb5{bottom:754.594500px;}
.y78{bottom:754.996500px;}
.y126{bottom:755.602500px;}
.yd1{bottom:755.604000px;}
.y31{bottom:757.273500px;}
.y133{bottom:765.765000px;}
.y5d{bottom:766.960500px;}
.y8{bottom:767.313000px;}
.y10d{bottom:768.429000px;}
.yf0{bottom:769.093500px;}
.yb4{bottom:774.918000px;}
.yd0{bottom:775.927500px;}
.y30{bottom:777.597000px;}
.y8e{bottom:783.073500px;}
.y132{bottom:786.088500px;}
.y5c{bottom:787.284000px;}
.y7{bottom:787.636500px;}
.y10c{bottom:788.752500px;}
.yef{bottom:789.417000px;}
.ya1{bottom:793.653000px;}
.ycf{bottom:796.251000px;}
.y2f{bottom:797.920500px;}
.y131{bottom:806.412000px;}
.y6{bottom:807.960000px;}
.y10b{bottom:809.076000px;}
.yee{bottom:809.740500px;}
.y77{bottom:812.127000px;}
.yce{bottom:816.574500px;}
.y2e{bottom:818.244000px;}
.y5b{bottom:822.253500px;}
.y5{bottom:828.283500px;}
.y10a{bottom:829.401000px;}
.yed{bottom:830.065500px;}
.y8d{bottom:836.481000px;}
.ycd{bottom:836.898000px;}
.y2d{bottom:838.567500px;}
.y5a{bottom:842.577000px;}
.ya0{bottom:847.060500px;}
.y109{bottom:849.724500px;}
.yec{bottom:850.389000px;}
.y76{bottom:853.192500px;}
.y8c{bottom:856.804500px;}
.ycc{bottom:857.221500px;}
.y2c{bottom:858.892500px;}
.y59{bottom:862.900500px;}
.y9f{bottom:867.384000px;}
.yeb{bottom:870.712500px;}
.y4{bottom:874.990500px;}
.y8b{bottom:877.129500px;}
.ycb{bottom:877.546500px;}
.y2b{bottom:879.216000px;}
.y9e{bottom:887.707500px;}
.y108{bottom:890.788500px;}
.yea{bottom:891.036000px;}
.y75{bottom:894.258000px;}
.y58{bottom:897.870000px;}
.y2a{bottom:899.539500px;}
.y8a{bottom:907.614000px;}
.y9d{bottom:908.031000px;}
.yca{bottom:918.193500px;}
.y29{bottom:919.863000px;}
.y89{bottom:927.939000px;}
.y57{bottom:928.356000px;}
.ye9{bottom:937.743000px;}
.y9c{bottom:938.517000px;}
.y28{bottom:940.186500px;}
.y107{bottom:944.196000px;}
.y74{bottom:948.262500px;}
.y56{bottom:948.679500px;}
.y88{bottom:958.423500px;}
.y9b{bottom:958.840500px;}
.y27{bottom:960.511500px;}
.y106{bottom:964.519500px;}
.y73{bottom:968.586000px;}
.y55{bottom:969.003000px;}
.y3{bottom:972.702000px;}
.y87{bottom:978.748500px;}
.y9a{bottom:979.165500px;}
.y26{bottom:980.835000px;}
.y54{bottom:989.326500px;}
.y72{bottom:999.072000px;}
.y99{bottom:999.489000px;}
.y25{bottom:1001.158500px;}
.yc9{bottom:1009.650000px;}
.y71{bottom:1019.395500px;}
.y53{bottom:1019.812500px;}
.y24{bottom:1021.482000px;}
.y2{bottom:1024.146000px;}
.y98{bottom:1029.975000px;}
.y70{bottom:1039.719000px;}
.y52{bottom:1040.136000px;}
.y23{bottom:1041.805500px;}
.y97{bottom:1050.298500px;}
.y51{bottom:1060.459500px;}
.y1{bottom:1061.506500px;}
.y22{bottom:1062.130500px;}
.y6f{bottom:1070.205000px;}
.y96{bottom:1070.622000px;}
.y50{bottom:1080.784500px;}
.y21{bottom:1082.454000px;}
.y6e{bottom:1090.528500px;}
.y95{bottom:1090.945500px;}
.y20{bottom:1102.777500px;}
.y4f{bottom:1111.269000px;}
.y1f{bottom:1123.101000px;}
.y4e{bottom:1131.594000px;}
.h9{height:23.886490px;}
.ha{height:40.348800px;}
.h5{height:46.865494px;}
.h6{height:49.090950px;}
.hb{height:51.359539px;}
.h8{height:54.275054px;}
.hc{height:55.440046px;}
.h7{height:57.272775px;}
.h3{height:61.459121px;}
.h4{height:61.631275px;}
.hf{height:71.604046px;}
.h2{height:88.766100px;}
.h10{height:96.750046px;}
.h11{height:97.470046px;}
.hd{height:105.978046px;}
.he{height:106.956046px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:119.437500px;}
.xb{left:120.517500px;}
.x2{left:121.812000px;}
.x8{left:128.985000px;}
.x6{left:137.706000px;}
.xa{left:140.845500px;}
.x9{left:141.936000px;}
.x4{left:146.307000px;}
.x1{left:152.785500px;}
.x19{left:162.670500px;}
.x5{left:183.943500px;}
.x15{left:191.584500px;}
.x10{left:292.272000px;}
.x11{left:300.502500px;}
.x12{left:354.918000px;}
.x3{left:384.556500px;}
.xc{left:386.685000px;}
.xe{left:388.783500px;}
.x16{left:397.177500px;}
.x17{left:398.217000px;}
.x18{left:438.274500px;}
.x7{left:442.366500px;}
.xf{left:449.923500px;}
.xd{left:469.075500px;}
.x13{left:473.280000px;}
.x14{left:531.654000px;}
@media print{
.v7{vertical-align:-22.693333pt;}
.v2{vertical-align:-17.365333pt;}
.v3{vertical-align:-14.373333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.368000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:23.098667pt;}
.v5{vertical-align:30.549333pt;}
.v9{vertical-align:36.720000pt;}
.v4{vertical-align:44.922667pt;}
.va{vertical-align:57.840000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000933pt;}
.ls7{letter-spacing:0.001923pt;}
.ls9{letter-spacing:0.002887pt;}
.ls8{letter-spacing:0.873188pt;}
.ls4{letter-spacing:0.888994pt;}
.ls3{letter-spacing:2.656382pt;}
.lsc{letter-spacing:12.356770pt;}
.lsd{letter-spacing:16.158508pt;}
.lsf{letter-spacing:16.163841pt;}
.ls6{letter-spacing:19.372589pt;}
.ls5{letter-spacing:19.374038pt;}
.lsa{letter-spacing:20.133311pt;}
.ls1{letter-spacing:29.088467pt;}
.ls0{letter-spacing:29.090933pt;}
.ls11{letter-spacing:29.091841pt;}
.lse{letter-spacing:49.962103pt;}
.ls10{letter-spacing:55.610103pt;}
.wsd{word-spacing:-34.762156pt;}
.ws5{word-spacing:-34.465430pt;}
.ws7{word-spacing:-33.768740pt;}
.wse{word-spacing:-27.255252pt;}
.wsf{word-spacing:-27.245221pt;}
.wsa{word-spacing:-25.802522pt;}
.ws7e{word-spacing:-17.853099pt;}
.ws23{word-spacing:-16.290923pt;}
.ws54{word-spacing:-11.403691pt;}
.ws4f{word-spacing:-2.850911pt;}
.wsdb{word-spacing:-2.327275pt;}
.ws24{word-spacing:-2.210911pt;}
.ws79{word-spacing:-2.152729pt;}
.ws1b{word-spacing:-2.036365pt;}
.wsa8{word-spacing:-1.920002pt;}
.ws22{word-spacing:-1.861820pt;}
.ws20{word-spacing:-1.798869pt;}
.wscf{word-spacing:-1.629092pt;}
.ws1a{word-spacing:-1.570910pt;}
.wsab{word-spacing:-1.512729pt;}
.ws7b{word-spacing:-1.454547pt;}
.wsbd{word-spacing:-1.338183pt;}
.ws70{word-spacing:-1.280001pt;}
.wsc3{word-spacing:-1.047274pt;}
.ws9b{word-spacing:-0.930910pt;}
.wse9{word-spacing:-0.872728pt;}
.ws88{word-spacing:-0.756364pt;}
.ws92{word-spacing:-0.698182pt;}
.ws8e{word-spacing:-0.640001pt;}
.ws1c{word-spacing:-0.407273pt;}
.ws58{word-spacing:-0.116364pt;}
.ws6f{word-spacing:-0.058182pt;}
.ws15{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.116364pt;}
.wsc9{word-spacing:0.174546pt;}
.wsb0{word-spacing:0.290909pt;}
.ws21{word-spacing:0.349091pt;}
.wsda{word-spacing:0.581819pt;}
.wsce{word-spacing:0.640001pt;}
.ws98{word-spacing:0.698182pt;}
.ws78{word-spacing:0.814546pt;}
.wsc7{word-spacing:0.872728pt;}
.ws2b{word-spacing:0.930910pt;}
.ws67{word-spacing:0.989092pt;}
.ws69{word-spacing:1.047274pt;}
.ws2a{word-spacing:1.105455pt;}
.ws45{word-spacing:1.147699pt;}
.ws59{word-spacing:1.280001pt;}
.ws5d{word-spacing:1.396365pt;}
.ws8a{word-spacing:1.454547pt;}
.ws84{word-spacing:1.570910pt;}
.ws5b{word-spacing:1.629092pt;}
.ws8f{word-spacing:1.745456pt;}
.wsc2{word-spacing:1.803638pt;}
.ws9{word-spacing:1.818020pt;}
.wsb{word-spacing:1.820369pt;}
.ws8{word-spacing:1.824210pt;}
.ws4{word-spacing:1.826558pt;}
.wsc{word-spacing:1.842779pt;}
.ws91{word-spacing:1.861820pt;}
.ws9c{word-spacing:1.920002pt;}
.wsa0{word-spacing:1.978183pt;}
.ws68{word-spacing:2.036365pt;}
.ws14{word-spacing:2.152729pt;}
.ws41{word-spacing:2.199757pt;}
.ws5f{word-spacing:2.210911pt;}
.ws8d{word-spacing:2.269093pt;}
.ws76{word-spacing:2.327275pt;}
.ws7f{word-spacing:2.443638pt;}
.ws5a{word-spacing:2.560002pt;}
.ws17{word-spacing:2.618184pt;}
.ws7a{word-spacing:2.676366pt;}
.ws1f{word-spacing:2.734548pt;}
.wsaf{word-spacing:2.792730pt;}
.ws35{word-spacing:2.821427pt;}
.wsad{word-spacing:2.850911pt;}
.ws6a{word-spacing:2.909093pt;}
.ws99{word-spacing:2.967275pt;}
.ws42{word-spacing:3.012710pt;}
.ws18{word-spacing:3.025457pt;}
.ws3c{word-spacing:3.060531pt;}
.ws77{word-spacing:3.081185pt;}
.ws55{word-spacing:3.081986pt;}
.ws53{word-spacing:3.083443pt;}
.ws13{word-spacing:3.083639pt;}
.ws61{word-spacing:3.085609pt;}
.ws3e{word-spacing:3.108352pt;}
.ws9f{word-spacing:3.141821pt;}
.ws50{word-spacing:3.200003pt;}
.ws40{word-spacing:3.251814pt;}
.ws75{word-spacing:3.258185pt;}
.ws60{word-spacing:3.432730pt;}
.ws1{word-spacing:3.443088pt;}
.ws48{word-spacing:3.443098pt;}
.ws1e{word-spacing:3.549094pt;}
.ws3d{word-spacing:3.551437pt;}
.wsbb{word-spacing:3.607276pt;}
.ws96{word-spacing:3.723639pt;}
.ws9a{word-spacing:3.781821pt;}
.ws2c{word-spacing:3.840003pt;}
.wsc6{word-spacing:3.956367pt;}
.ws9d{word-spacing:4.130913pt;}
.wsd3{word-spacing:4.247276pt;}
.ws26{word-spacing:4.305458pt;}
.wsb3{word-spacing:4.363640pt;}
.ws95{word-spacing:4.421822pt;}
.wsb2{word-spacing:4.426743pt;}
.ws62{word-spacing:4.480004pt;}
.ws5c{word-spacing:4.538186pt;}
.ws81{word-spacing:4.654549pt;}
.ws83{word-spacing:4.712731pt;}
.ws16{word-spacing:4.770913pt;}
.ws9e{word-spacing:4.887277pt;}
.ws3{word-spacing:5.003641pt;}
.ws56{word-spacing:5.061822pt;}
.ws93{word-spacing:5.120004pt;}
.ws4d{word-spacing:5.178186pt;}
.wsb7{word-spacing:5.236368pt;}
.wse1{word-spacing:5.294550pt;}
.wsd2{word-spacing:5.469095pt;}
.ws89{word-spacing:5.483452pt;}
.ws4e{word-spacing:5.527277pt;}
.ws52{word-spacing:5.547213pt;}
.ws3b{word-spacing:5.595034pt;}
.ws4a{word-spacing:5.643641pt;}
.ws4c{word-spacing:5.655693pt;}
.ws87{word-spacing:5.701823pt;}
.wscb{word-spacing:5.760005pt;}
.wsca{word-spacing:5.818187pt;}
.wsd8{word-spacing:5.865962pt;}
.ws19{word-spacing:5.876369pt;}
.ws66{word-spacing:5.934550pt;}
.ws57{word-spacing:5.992732pt;}
.wsa4{word-spacing:6.050914pt;}
.ws2f{word-spacing:6.109096pt;}
.ws25{word-spacing:6.167278pt;}
.ws3f{word-spacing:6.168883pt;}
.wsd7{word-spacing:6.225460pt;}
.ws49{word-spacing:6.283642pt;}
.ws36{word-spacing:6.360166pt;}
.wsa9{word-spacing:6.400005pt;}
.ws38{word-spacing:6.416265pt;}
.wsd6{word-spacing:6.458187pt;}
.ws10{word-spacing:6.580124pt;}
.ws2{word-spacing:6.656637pt;}
.ws74{word-spacing:6.690915pt;}
.ws8c{word-spacing:6.749097pt;}
.ws28{word-spacing:6.807278pt;}
.ws3a{word-spacing:6.864879pt;}
.wsd0{word-spacing:6.865460pt;}
.ws27{word-spacing:6.923642pt;}
.wsc5{word-spacing:6.981824pt;}
.wscc{word-spacing:7.040006pt;}
.ws44{word-spacing:7.077478pt;}
.ws97{word-spacing:7.098188pt;}
.wsc1{word-spacing:7.156370pt;}
.ws73{word-spacing:7.214551pt;}
.ws4b{word-spacing:7.272733pt;}
.wsa7{word-spacing:7.330915pt;}
.wsb8{word-spacing:7.563643pt;}
.ws46{word-spacing:7.603507pt;}
.ws71{word-spacing:7.680006pt;}
.wsbc{word-spacing:7.738188pt;}
.ws37{word-spacing:7.746970pt;}
.ws39{word-spacing:7.794790pt;}
.ws12{word-spacing:7.796370pt;}
.wse7{word-spacing:7.854552pt;}
.ws6e{word-spacing:7.912734pt;}
.wsb6{word-spacing:8.029098pt;}
.wsdd{word-spacing:8.219402pt;}
.wsb9{word-spacing:8.320007pt;}
.ws43{word-spacing:8.320819pt;}
.ws72{word-spacing:8.378189pt;}
.ws47{word-spacing:8.416461pt;}
.wsd4{word-spacing:8.436371pt;}
.ws90{word-spacing:8.552734pt;}
.wse8{word-spacing:8.610916pt;}
.ws1d{word-spacing:8.669098pt;}
.wse0{word-spacing:8.727280pt;}
.ws86{word-spacing:8.785462pt;}
.wsa1{word-spacing:8.901826pt;}
.ws51{word-spacing:8.960007pt;}
.ws80{word-spacing:9.018189pt;}
.wse6{word-spacing:9.076371pt;}
.ws5e{word-spacing:9.192735pt;}
.wsb4{word-spacing:9.250917pt;}
.wsc8{word-spacing:9.367281pt;}
.ws82{word-spacing:9.541826pt;}
.ws0{word-spacing:9.587400pt;}
.wsd1{word-spacing:9.600008pt;}
.ws94{word-spacing:9.658190pt;}
.wsd9{word-spacing:10.065463pt;}
.ws29{word-spacing:10.123645pt;}
.wsbf{word-spacing:10.181827pt;}
.wse4{word-spacing:10.414554pt;}
.wscd{word-spacing:10.530918pt;}
.ws85{word-spacing:10.589100pt;}
.ws7d{word-spacing:10.704918pt;}
.wsde{word-spacing:10.705463pt;}
.wsa6{word-spacing:10.880009pt;}
.wsa2{word-spacing:10.996373pt;}
.wse2{word-spacing:11.054555pt;}
.ws34{word-spacing:11.142246pt;}
.ws32{word-spacing:11.146027pt;}
.wsa3{word-spacing:11.170918pt;}
.wsd5{word-spacing:11.229100pt;}
.wsac{word-spacing:11.287282pt;}
.wsa5{word-spacing:11.345464pt;}
.ws2d{word-spacing:11.403646pt;}
.ws8b{word-spacing:11.461828pt;}
.ws31{word-spacing:11.752737pt;}
.wsc4{word-spacing:11.985465pt;}
.wsdf{word-spacing:12.101828pt;}
.ws6b{word-spacing:12.276374pt;}
.ws6d{word-spacing:12.334556pt;}
.ws6c{word-spacing:12.341068pt;}
.wsae{word-spacing:12.450919pt;}
.wsaa{word-spacing:12.567283pt;}
.wsb5{word-spacing:12.683647pt;}
.wsdc{word-spacing:12.741829pt;}
.ws6{word-spacing:12.800011pt;}
.ws7c{word-spacing:12.800918pt;}
.ws33{word-spacing:12.863795pt;}
.wsea{word-spacing:13.498193pt;}
.wsba{word-spacing:13.556375pt;}
.wsbe{word-spacing:14.138194pt;}
.ws11{word-spacing:15.534558pt;}
.ws30{word-spacing:15.883650pt;}
.wseb{word-spacing:16.465468pt;}
.wsc0{word-spacing:17.221833pt;}
.ws63{word-spacing:22.666822pt;}
.wse3{word-spacing:28.334569pt;}
.ws65{word-spacing:31.058095pt;}
.wse5{word-spacing:31.650935pt;}
.ws2e{word-spacing:34.501847pt;}
.ws64{word-spacing:109.789182pt;}
._12{margin-left:-33.920028pt;}
._9{margin-left:-32.349118pt;}
._7{margin-left:-30.661844pt;}
._5{margin-left:-29.090933pt;}
._10{margin-left:-27.520023pt;}
._6{margin-left:-9.774554pt;}
._31{margin-left:-8.087279pt;}
._3{margin-left:-7.039202pt;}
._17{margin-left:-4.829095pt;}
._1{margin-left:-3.306000pt;}
._2{margin-left:-1.989340pt;}
._18{margin-left:-1.094299pt;}
._29{width:0.895041pt;}
._16{width:1.803638pt;}
._8{width:3.116588pt;}
._26{width:9.653790pt;}
._1e{width:14.795261pt;}
._1b{width:15.836624pt;}
._1d{width:16.942079pt;}
._13{width:18.180945pt;}
._b{width:19.316380pt;}
._24{width:20.428637pt;}
._23{width:22.445482pt;}
._1f{width:23.400267pt;}
._1c{width:24.669111pt;}
._25{width:25.640133pt;}
._c{width:27.278700pt;}
._20{width:28.705973pt;}
._14{width:29.641330pt;}
._32{width:30.588059pt;}
._1a{width:31.650935pt;}
._28{width:33.021558pt;}
._2f{width:33.990929pt;}
._27{width:35.047796pt;}
._2d{width:36.468874pt;}
._21{width:37.665980pt;}
._2c{width:38.945981pt;}
._19{width:40.505735pt;}
._2e{width:41.541853pt;}
._22{width:43.168621pt;}
._f{width:44.845366pt;}
._a{width:47.262755pt;}
._2a{width:48.512521pt;}
._2b{width:49.629132pt;}
._11{width:51.376733pt;}
._0{width:53.887800pt;}
._30{width:55.538970pt;}
._e{width:56.800270pt;}
._34{width:57.795694pt;}
._35{width:66.781263pt;}
._d{width:76.341309pt;}
._33{width:102.531339pt;}
._15{width:1821.571046pt;}
._4{width:1918.316307pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:40.727467pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:129.680000pt;}
.y4d{bottom:192.929333pt;}
.yc8{bottom:197.434667pt;}
.y6d{bottom:202.786667pt;}
.y4c{bottom:207.541333pt;}
.y1d{bottom:207.810667pt;}
.ya8{bottom:209.464000pt;}
.ye8{bottom:210.974667pt;}
.y125{bottom:213.342667pt;}
.yc7{bottom:215.500000pt;}
.y105{bottom:216.301333pt;}
.y130{bottom:220.008000pt;}
.y6c{bottom:220.852000pt;}
.y4b{bottom:222.153333pt;}
.y1c{bottom:225.876000pt;}
.ya7{bottom:227.529333pt;}
.ye7{bottom:229.040000pt;}
.y124{bottom:231.408000pt;}
.yc6{bottom:233.566667pt;}
.y104{bottom:234.366667pt;}
.y4a{bottom:236.765333pt;}
.y12f{bottom:238.073333pt;}
.y13f{bottom:243.894667pt;}
.y1b{bottom:243.941333pt;}
.ya6{bottom:245.594667pt;}
.ye6{bottom:247.105333pt;}
.y123{bottom:249.473333pt;}
.y94{bottom:251.340000pt;}
.y49{bottom:251.377333pt;}
.y103{bottom:252.432000pt;}
.y6b{bottom:255.660000pt;}
.y12e{bottom:256.138667pt;}
.y13e{bottom:261.960000pt;}
.y1a{bottom:262.006667pt;}
.ya5{bottom:263.660000pt;}
.y6a{bottom:265.640000pt;}
.y48{bottom:265.989333pt;}
.y122{bottom:267.540000pt;}
.y93{bottom:269.405333pt;}
.yc5{bottom:270.068000pt;}
.y102{bottom:270.497333pt;}
.ye5{bottom:274.204000pt;}
.y13d{bottom:280.025333pt;}
.y47{bottom:280.601333pt;}
.ye4{bottom:292.269333pt;}
.y19{bottom:292.980000pt;}
.y121{bottom:294.637333pt;}
.y46{bottom:295.212000pt;}
.y101{bottom:297.596000pt;}
.y13c{bottom:298.092000pt;}
.y45{bottom:309.824000pt;}
.ye3{bottom:310.336000pt;}
.ya4{bottom:312.118667pt;}
.y120{bottom:312.704000pt;}
.y69{bottom:315.232000pt;}
.y100{bottom:315.661333pt;}
.y13b{bottom:316.157333pt;}
.yc4{bottom:318.072000pt;}
.y44{bottom:324.436000pt;}
.ye2{bottom:328.401333pt;}
.y11f{bottom:330.769333pt;}
.yff{bottom:333.728000pt;}
.y13a{bottom:334.222667pt;}
.yc3{bottom:336.137333pt;}
.y12d{bottom:337.433333pt;}
.y43{bottom:339.048000pt;}
.y86{bottom:340.325333pt;}
.y68{bottom:342.330667pt;}
.y18{bottom:342.532000pt;}
.ye1{bottom:346.466667pt;}
.y11e{bottom:348.834667pt;}
.yfe{bottom:351.793333pt;}
.y139{bottom:352.288000pt;}
.y42{bottom:353.660000pt;}
.y12c{bottom:355.500000pt;}
.y85{bottom:358.390667pt;}
.yc2{bottom:363.236000pt;}
.y11d{bottom:366.900000pt;}
.y41{bottom:368.272000pt;}
.y138{bottom:370.353333pt;}
.ye0{bottom:373.565333pt;}
.yb3{bottom:376.465333pt;}
.y67{bottom:378.832000pt;}
.yc1{bottom:381.301333pt;}
.yfd{bottom:382.876000pt;}
.y11c{bottom:384.965333pt;}
.y40{bottom:387.224000pt;}
.y137{bottom:388.420000pt;}
.y84{bottom:389.328000pt;}
.y83{bottom:389.488000pt;}
.ydf{bottom:391.630667pt;}
.y82{bottom:395.074667pt;}
.y17{bottom:396.526667pt;}
.y3f{bottom:397.496000pt;}
.y81{bottom:398.666667pt;}
.yc0{bottom:399.368000pt;}
.yfc{bottom:400.942667pt;}
.yb2{bottom:407.548000pt;}
.yde{bottom:409.696000pt;}
.y11b{bottom:412.064000pt;}
.y3e{bottom:412.108000pt;}
.y16{bottom:414.592000pt;}
.ybf{bottom:417.433333pt;}
.y136{bottom:424.921333pt;}
.yb1{bottom:425.613333pt;}
.y66{bottom:426.305333pt;}
.y3d{bottom:426.720000pt;}
.ydd{bottom:427.761333pt;}
.y11a{bottom:430.129333pt;}
.y15{bottom:432.657333pt;}
.ybe{bottom:435.498667pt;}
.yfb{bottom:437.444000pt;}
.y3c{bottom:441.332000pt;}
.yb0{bottom:443.680000pt;}
.y80{bottom:443.830667pt;}
.ybc{bottom:444.532000pt;}
.ydc{bottom:445.828000pt;}
.y119{bottom:448.194667pt;}
.y14{bottom:450.722667pt;}
.y12b{bottom:454.860000pt;}
.y65{bottom:457.388000pt;}
.y3b{bottom:460.284000pt;}
.ybb{bottom:462.597333pt;}
.ydb{bottom:463.893333pt;}
.y118{bottom:466.261333pt;}
.y12a{bottom:472.925333pt;}
.y7f{bottom:474.914667pt;}
.y64{bottom:475.454667pt;}
.yaf{bottom:480.181333pt;}
.yba{bottom:480.662667pt;}
.y13{bottom:483.334667pt;}
.y117{bottom:484.326667pt;}
.yfa{bottom:484.917333pt;}
.yda{bottom:490.992000pt;}
.y3a{bottom:492.026667pt;}
.y7e{bottom:492.980000pt;}
.y63{bottom:493.520000pt;}
.yb9{bottom:498.728000pt;}
.y12{bottom:501.400000pt;}
.y116{bottom:502.392000pt;}
.yf9{bottom:502.982667pt;}
.yd9{bottom:509.057333pt;}
.y7d{bottom:511.045333pt;}
.y62{bottom:511.585333pt;}
.ybd{bottom:516.793333pt;}
.y11{bottom:519.465333pt;}
.y115{bottom:520.457333pt;}
.yf8{bottom:521.048000pt;}
.yd8{bottom:527.122667pt;}
.yae{bottom:527.654667pt;}
.y39{bottom:528.606667pt;}
.y61{bottom:529.650667pt;}
.y10{bottom:537.530667pt;}
.yf7{bottom:539.113333pt;}
.y7c{bottom:542.129333pt;}
.yd7{bottom:545.188000pt;}
.yad{bottom:545.720000pt;}
.y38{bottom:546.672000pt;}
.yb8{bottom:547.186667pt;}
.y114{bottom:547.556000pt;}
.y129{bottom:554.221333pt;}
.yf{bottom:555.596000pt;}
.y60{bottom:560.734667pt;}
.yd6{bottom:563.253333pt;}
.y37{bottom:564.737333pt;}
.yb7{bottom:565.252000pt;}
.y113{bottom:565.621333pt;}
.yf6{bottom:566.212000pt;}
.y128{bottom:572.286667pt;}
.yac{bottom:572.818667pt;}
.ye{bottom:573.661333pt;}
.y7b{bottom:578.632000pt;}
.y36{bottom:582.804000pt;}
.y112{bottom:583.686667pt;}
.yf5{bottom:584.277333pt;}
.yd5{bottom:590.352000pt;}
.yab{bottom:590.884000pt;}
.yd{bottom:591.728000pt;}
.y5f{bottom:597.236000pt;}
.y35{bottom:600.869333pt;}
.y111{bottom:601.753333pt;}
.yf4{bottom:602.344000pt;}
.y92{bottom:605.366667pt;}
.yd4{bottom:608.417333pt;}
.yaa{bottom:608.949333pt;}
.yc{bottom:609.793333pt;}
.y34{bottom:618.934667pt;}
.yf3{bottom:620.409333pt;}
.y91{bottom:623.433333pt;}
.y7a{bottom:626.104000pt;}
.y135{bottom:626.482667pt;}
.yd3{bottom:626.484000pt;}
.ya9{bottom:627.014667pt;}
.yb{bottom:627.858667pt;}
.y110{bottom:628.850667pt;}
.y5e{bottom:633.738667pt;}
.y33{bottom:637.000000pt;}
.yf2{bottom:638.474667pt;}
.y90{bottom:641.498667pt;}
.yd2{bottom:644.549333pt;}
.ya{bottom:645.924000pt;}
.y10f{bottom:646.917333pt;}
.ya3{bottom:650.901333pt;}
.yb6{bottom:652.684000pt;}
.y127{bottom:653.581333pt;}
.y32{bottom:655.065333pt;}
.yf1{bottom:656.540000pt;}
.y8f{bottom:659.564000pt;}
.y79{bottom:661.129333pt;}
.y134{bottom:662.614667pt;}
.y9{bottom:663.989333pt;}
.y10e{bottom:664.982667pt;}
.ya2{bottom:668.968000pt;}
.yb5{bottom:670.750667pt;}
.y78{bottom:671.108000pt;}
.y126{bottom:671.646667pt;}
.yd1{bottom:671.648000pt;}
.y31{bottom:673.132000pt;}
.y133{bottom:680.680000pt;}
.y5d{bottom:681.742667pt;}
.y8{bottom:682.056000pt;}
.y10d{bottom:683.048000pt;}
.yf0{bottom:683.638667pt;}
.yb4{bottom:688.816000pt;}
.yd0{bottom:689.713333pt;}
.y30{bottom:691.197333pt;}
.y8e{bottom:696.065333pt;}
.y132{bottom:698.745333pt;}
.y5c{bottom:699.808000pt;}
.y7{bottom:700.121333pt;}
.y10c{bottom:701.113333pt;}
.yef{bottom:701.704000pt;}
.ya1{bottom:705.469333pt;}
.ycf{bottom:707.778667pt;}
.y2f{bottom:709.262667pt;}
.y131{bottom:716.810667pt;}
.y6{bottom:718.186667pt;}
.y10b{bottom:719.178667pt;}
.yee{bottom:719.769333pt;}
.y77{bottom:721.890667pt;}
.yce{bottom:725.844000pt;}
.y2e{bottom:727.328000pt;}
.y5b{bottom:730.892000pt;}
.y5{bottom:736.252000pt;}
.y10a{bottom:737.245333pt;}
.yed{bottom:737.836000pt;}
.y8d{bottom:743.538667pt;}
.ycd{bottom:743.909333pt;}
.y2d{bottom:745.393333pt;}
.y5a{bottom:748.957333pt;}
.ya0{bottom:752.942667pt;}
.y109{bottom:755.310667pt;}
.yec{bottom:755.901333pt;}
.y76{bottom:758.393333pt;}
.y8c{bottom:761.604000pt;}
.ycc{bottom:761.974667pt;}
.y2c{bottom:763.460000pt;}
.y59{bottom:767.022667pt;}
.y9f{bottom:771.008000pt;}
.yeb{bottom:773.966667pt;}
.y4{bottom:777.769333pt;}
.y8b{bottom:779.670667pt;}
.ycb{bottom:780.041333pt;}
.y2b{bottom:781.525333pt;}
.y9e{bottom:789.073333pt;}
.y108{bottom:791.812000pt;}
.yea{bottom:792.032000pt;}
.y75{bottom:794.896000pt;}
.y58{bottom:798.106667pt;}
.y2a{bottom:799.590667pt;}
.y8a{bottom:806.768000pt;}
.y9d{bottom:807.138667pt;}
.yca{bottom:816.172000pt;}
.y29{bottom:817.656000pt;}
.y89{bottom:824.834667pt;}
.y57{bottom:825.205333pt;}
.ye9{bottom:833.549333pt;}
.y9c{bottom:834.237333pt;}
.y28{bottom:835.721333pt;}
.y107{bottom:839.285333pt;}
.y74{bottom:842.900000pt;}
.y56{bottom:843.270667pt;}
.y88{bottom:851.932000pt;}
.y9b{bottom:852.302667pt;}
.y27{bottom:853.788000pt;}
.y106{bottom:857.350667pt;}
.y73{bottom:860.965333pt;}
.y55{bottom:861.336000pt;}
.y3{bottom:864.624000pt;}
.y87{bottom:869.998667pt;}
.y9a{bottom:870.369333pt;}
.y26{bottom:871.853333pt;}
.y54{bottom:879.401333pt;}
.y72{bottom:888.064000pt;}
.y99{bottom:888.434667pt;}
.y25{bottom:889.918667pt;}
.yc9{bottom:897.466667pt;}
.y71{bottom:906.129333pt;}
.y53{bottom:906.500000pt;}
.y24{bottom:907.984000pt;}
.y2{bottom:910.352000pt;}
.y98{bottom:915.533333pt;}
.y70{bottom:924.194667pt;}
.y52{bottom:924.565333pt;}
.y23{bottom:926.049333pt;}
.y97{bottom:933.598667pt;}
.y51{bottom:942.630667pt;}
.y1{bottom:943.561333pt;}
.y22{bottom:944.116000pt;}
.y6f{bottom:951.293333pt;}
.y96{bottom:951.664000pt;}
.y50{bottom:960.697333pt;}
.y21{bottom:962.181333pt;}
.y6e{bottom:969.358667pt;}
.y95{bottom:969.729333pt;}
.y20{bottom:980.246667pt;}
.y4f{bottom:987.794667pt;}
.y1f{bottom:998.312000pt;}
.y4e{bottom:1005.861333pt;}
.h9{height:21.232435pt;}
.ha{height:35.865600pt;}
.h5{height:41.658217pt;}
.h6{height:43.636400pt;}
.hb{height:45.652924pt;}
.h8{height:48.244493pt;}
.hc{height:49.280041pt;}
.h7{height:50.909133pt;}
.h3{height:54.630330pt;}
.h4{height:54.783356pt;}
.hf{height:63.648041pt;}
.h2{height:78.903200pt;}
.h10{height:86.000041pt;}
.h11{height:86.640041pt;}
.hd{height:94.202708pt;}
.he{height:95.072041pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:106.166667pt;}
.xb{left:107.126667pt;}
.x2{left:108.277333pt;}
.x8{left:114.653333pt;}
.x6{left:122.405333pt;}
.xa{left:125.196000pt;}
.x9{left:126.165333pt;}
.x4{left:130.050667pt;}
.x1{left:135.809333pt;}
.x19{left:144.596000pt;}
.x5{left:163.505333pt;}
.x15{left:170.297333pt;}
.x10{left:259.797333pt;}
.x11{left:267.113333pt;}
.x12{left:315.482667pt;}
.x3{left:341.828000pt;}
.xc{left:343.720000pt;}
.xe{left:345.585333pt;}
.x16{left:353.046667pt;}
.x17{left:353.970667pt;}
.x18{left:389.577333pt;}
.x7{left:393.214667pt;}
.xf{left:399.932000pt;}
.xd{left:416.956000pt;}
.x13{left:420.693333pt;}
.x14{left:472.581333pt;}
}




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