
    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_23be10934262ba0b31e76f07.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_c81d037bdc1f0e3858e864d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_b9e45c7ea40cbf6e9c86152f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_9b35878a429868bdd8441c81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731000;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_0665076686c0620d415c11d1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6b91b9ebf883756eb6af3634.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.081000;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_3928e5c0003f2c12a29e3917.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_a1baec7229da3ccea9344da4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_a7f4a71eef5c71f21da878ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.272000;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_d94542204dfbfa8cd80376e3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_da63d7989c7efe9e2b8e9688.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.068000;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_5f2bae06fba9577ac0bef7fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.048000;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_1a9eb49200dd84faea4e7693.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.010000;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;}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.742800px;}
.ls5{letter-spacing:-0.676800px;}
.ls6{letter-spacing:-0.564000px;}
.ls7{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls3{letter-spacing:-0.168000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.222000px;}
.ls0{letter-spacing:2108.337551px;}
.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;}
}
.wse7{word-spacing:-12.600000px;}
.ws87{word-spacing:-12.432000px;}
.wse8{word-spacing:-12.297600px;}
.ws1{word-spacing:-12.000000px;}
.ws96{word-spacing:-11.280000px;}
.ws2{word-spacing:-10.320000px;}
.ws100{word-spacing:-10.080000px;}
.ws0{word-spacing:-8.658000px;}
.ws3{word-spacing:-8.400000px;}
.wsdd{word-spacing:-8.008800px;}
.ws18{word-spacing:-6.576240px;}
.ws9f{word-spacing:-5.994000px;}
.wscd{word-spacing:-5.583600px;}
.wscb{word-spacing:-5.188800px;}
.ws85{word-spacing:-4.794000px;}
.ws98{word-spacing:-4.681200px;}
.wscc{word-spacing:-3.891600px;}
.wsba{word-spacing:-3.722400px;}
.ws52{word-spacing:-3.158400px;}
.ws3b{word-spacing:-3.078000px;}
.ws7f{word-spacing:-2.932800px;}
.ws60{word-spacing:-2.820000px;}
.ws56{word-spacing:-2.763600px;}
.ws53{word-spacing:-2.594400px;}
.wsbb{word-spacing:-2.425200px;}
.ws40{word-spacing:-2.312400px;}
.ws5e{word-spacing:-2.199600px;}
.ws90{word-spacing:-2.143200px;}
.ws33{word-spacing:-2.052000px;}
.ws5{word-spacing:-1.960800px;}
.ws46{word-spacing:-1.917600px;}
.wsb6{word-spacing:-1.861200px;}
.ws71{word-spacing:-1.845000px;}
.ws1b{word-spacing:-1.841400px;}
.ws3f{word-spacing:-1.748400px;}
.wsa0{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.579200px;}
.ws5f{word-spacing:-1.522800px;}
.ws67{word-spacing:-1.410000px;}
.ws38{word-spacing:-1.386000px;}
.ws29{word-spacing:-1.353600px;}
.ws51{word-spacing:-1.184400px;}
.wsa4{word-spacing:-1.092000px;}
.ws2f{word-spacing:-1.071600px;}
.wsb4{word-spacing:-1.015200px;}
.ws6a{word-spacing:-0.958800px;}
.ws2a{word-spacing:-0.902400px;}
.wsa6{word-spacing:-0.882000px;}
.ws5d{word-spacing:-0.846000px;}
.ws42{word-spacing:-0.789600px;}
.ws30{word-spacing:-0.756000px;}
.ws4c{word-spacing:-0.733200px;}
.ws103{word-spacing:-0.705600px;}
.ws17{word-spacing:-0.669600px;}
.ws105{word-spacing:-0.604800px;}
.ws6f{word-spacing:-0.495000px;}
.ws50{word-spacing:-0.451200px;}
.ws23{word-spacing:-0.446400px;}
.ws19{word-spacing:-0.444000px;}
.ws44{word-spacing:-0.225600px;}
.wsef{word-spacing:-0.169200px;}
.ws4e{word-spacing:-0.112800px;}
.ws4{word-spacing:0.000000px;}
.ws43{word-spacing:0.056400px;}
.ws1e{word-spacing:0.111600px;}
.wsc3{word-spacing:0.112800px;}
.wsf8{word-spacing:0.135000px;}
.ws39{word-spacing:0.168000px;}
.ws15{word-spacing:0.223200px;}
.ws14{word-spacing:0.279000px;}
.ws54{word-spacing:0.282000px;}
.ws81{word-spacing:0.394800px;}
.ws8e{word-spacing:0.451200px;}
.ws3c{word-spacing:0.486000px;}
.ws6d{word-spacing:0.675000px;}
.ws12{word-spacing:0.837000px;}
.ws9{word-spacing:0.877200px;}
.ws8f{word-spacing:0.902400px;}
.ws70{word-spacing:1.080000px;}
.wsf6{word-spacing:1.215000px;}
.ws1d{word-spacing:1.227600px;}
.ws2e{word-spacing:1.240800px;}
.wsb{word-spacing:1.290000px;}
.ws69{word-spacing:1.297200px;}
.ws11{word-spacing:1.339200px;}
.ws84{word-spacing:1.353600px;}
.ws7{word-spacing:1.393200px;}
.ws4b{word-spacing:1.410000px;}
.ws59{word-spacing:1.466400px;}
.ws26{word-spacing:1.579200px;}
.ws66{word-spacing:1.692000px;}
.ws1c{word-spacing:1.785600px;}
.ws24{word-spacing:1.861200px;}
.wsf0{word-spacing:1.974000px;}
.ws8{word-spacing:2.012400px;}
.wse3{word-spacing:2.030400px;}
.ws35{word-spacing:2.052000px;}
.ws57{word-spacing:2.086800px;}
.ws73{word-spacing:2.115600px;}
.wse9{word-spacing:2.143200px;}
.ws58{word-spacing:2.199600px;}
.ws7a{word-spacing:2.312400px;}
.wsce{word-spacing:2.368800px;}
.ws6{word-spacing:2.373600px;}
.ws36{word-spacing:2.430000px;}
.ws25{word-spacing:2.538000px;}
.ws5a{word-spacing:2.763600px;}
.ws22{word-spacing:2.790000px;}
.ws4d{word-spacing:2.820000px;}
.ws34{word-spacing:2.862000px;}
.ws45{word-spacing:2.932800px;}
.ws5b{word-spacing:3.045600px;}
.ws65{word-spacing:3.158400px;}
.ws21{word-spacing:3.236400px;}
.ws9b{word-spacing:3.271200px;}
.ws13{word-spacing:3.292200px;}
.wsd2{word-spacing:3.553200px;}
.wsf{word-spacing:3.627000px;}
.ws62{word-spacing:3.666000px;}
.ws28{word-spacing:3.722400px;}
.ws48{word-spacing:3.778800px;}
.wsd{word-spacing:3.850200px;}
.ws6b{word-spacing:3.891600px;}
.ws37{word-spacing:3.906000px;}
.ws2d{word-spacing:4.060800px;}
.wsf1{word-spacing:4.116000px;}
.ws4a{word-spacing:4.117200px;}
.ws47{word-spacing:4.173600px;}
.ws104{word-spacing:4.183200px;}
.wsc{word-spacing:4.296600px;}
.ws41{word-spacing:4.342800px;}
.wsa{word-spacing:4.386000px;}
.ws1a{word-spacing:4.408200px;}
.ws3d{word-spacing:4.512000px;}
.ws10{word-spacing:4.519800px;}
.ws55{word-spacing:4.568400px;}
.wsa1{word-spacing:4.590000px;}
.ws2c{word-spacing:4.794000px;}
.ws72{word-spacing:4.815000px;}
.wsf2{word-spacing:4.905000px;}
.ws49{word-spacing:4.963200px;}
.wsb1{word-spacing:5.019600px;}
.ws2b{word-spacing:5.132400px;}
.ws1f{word-spacing:5.189400px;}
.ws61{word-spacing:5.245200px;}
.wsb0{word-spacing:5.358000px;}
.wsde{word-spacing:5.414400px;}
.wsa5{word-spacing:5.544000px;}
.ws9e{word-spacing:5.724000px;}
.wsd9{word-spacing:5.865600px;}
.ws5c{word-spacing:5.922000px;}
.wsa3{word-spacing:5.994000px;}
.ws64{word-spacing:6.034800px;}
.wsb3{word-spacing:6.091200px;}
.ws63{word-spacing:6.147600px;}
.wsc4{word-spacing:6.260400px;}
.wsd1{word-spacing:6.316800px;}
.wsa9{word-spacing:6.372000px;}
.wsf7{word-spacing:6.480000px;}
.wsca{word-spacing:6.542400px;}
.ws7c{word-spacing:6.655200px;}
.wsed{word-spacing:6.768000px;}
.ws3e{word-spacing:6.993600px;}
.ws74{word-spacing:7.050000px;}
.ws68{word-spacing:7.275600px;}
.ws6e{word-spacing:7.290000px;}
.ws32{word-spacing:7.398000px;}
.ws9d{word-spacing:7.501200px;}
.wse4{word-spacing:7.896000px;}
.ws31{word-spacing:7.938000px;}
.ws16{word-spacing:8.091000px;}
.ws80{word-spacing:8.121600px;}
.wsf5{word-spacing:8.280000px;}
.ws27{word-spacing:8.572800px;}
.wsac{word-spacing:8.742000px;}
.ws20{word-spacing:8.760600px;}
.ws83{word-spacing:8.798400px;}
.wse{word-spacing:8.983800px;}
.wse2{word-spacing:9.475200px;}
.ws76{word-spacing:9.757200px;}
.wsb8{word-spacing:9.813600px;}
.wsb5{word-spacing:9.982800px;}
.ws102{word-spacing:10.432800px;}
.wsb9{word-spacing:10.659600px;}
.ws9c{word-spacing:11.110800px;}
.wse5{word-spacing:11.618400px;}
.wsdf{word-spacing:11.787600px;}
.wsd3{word-spacing:12.013200px;}
.ws8c{word-spacing:12.295200px;}
.ws79{word-spacing:12.408000px;}
.ws82{word-spacing:12.915600px;}
.wsc6{word-spacing:13.197600px;}
.wsf9{word-spacing:13.275000px;}
.wsfa{word-spacing:13.410000px;}
.wsbe{word-spacing:13.423200px;}
.ws7e{word-spacing:13.818000px;}
.wsdb{word-spacing:14.100000px;}
.ws8b{word-spacing:14.269200px;}
.wsc1{word-spacing:14.325600px;}
.ws8d{word-spacing:14.664000px;}
.wsaa{word-spacing:14.742000px;}
.ws94{word-spacing:14.833200px;}
.wsb7{word-spacing:15.284400px;}
.wsbd{word-spacing:15.735600px;}
.wscf{word-spacing:16.074000px;}
.wsc2{word-spacing:16.186800px;}
.wsa8{word-spacing:16.578000px;}
.wsd4{word-spacing:16.581600px;}
.ws99{word-spacing:16.750800px;}
.ws77{word-spacing:17.709600px;}
.ws86{word-spacing:17.766000px;}
.wsf4{word-spacing:17.775000px;}
.wsc7{word-spacing:18.048000px;}
.wsec{word-spacing:18.217200px;}
.wsa7{word-spacing:18.414000px;}
.wse1{word-spacing:18.781200px;}
.wsae{word-spacing:19.627200px;}
.wsd0{word-spacing:20.247600px;}
.wsa2{word-spacing:23.706000px;}
.wsd6{word-spacing:24.082800px;}
.wsfe{word-spacing:25.110000px;}
.wsff{word-spacing:25.425000px;}
.ws8a{word-spacing:25.831200px;}
.wsf3{word-spacing:26.190000px;}
.ws89{word-spacing:26.338800px;}
.wsd5{word-spacing:26.451600px;}
.wse6{word-spacing:26.733600px;}
.ws75{word-spacing:26.846400px;}
.wsea{word-spacing:28.820400px;}
.ws7d{word-spacing:29.215200px;}
.wsc9{word-spacing:29.610000px;}
.ws92{word-spacing:29.835600px;}
.ws7b{word-spacing:29.948400px;}
.wsd8{word-spacing:30.174000px;}
.wsc0{word-spacing:32.204400px;}
.ws91{word-spacing:32.486400px;}
.wsc8{word-spacing:32.599200px;}
.ws78{word-spacing:32.824800px;}
.wsdc{word-spacing:32.881200px;}
.wse0{word-spacing:32.994000px;}
.ws9a{word-spacing:33.106800px;}
.wsfd{word-spacing:33.120000px;}
.wsb2{word-spacing:33.276000px;}
.ws97{word-spacing:34.122000px;}
.wseb{word-spacing:35.080800px;}
.wsab{word-spacing:35.701200px;}
.wsfb{word-spacing:35.820000px;}
.wsbc{word-spacing:36.490800px;}
.wsd7{word-spacing:37.562400px;}
.wsad{word-spacing:38.013600px;}
.wsaf{word-spacing:46.981200px;}
.wsee{word-spacing:50.872800px;}
.ws95{word-spacing:54.144000px;}
.wsbf{word-spacing:55.723200px;}
.wsda{word-spacing:58.035600px;}
.ws93{word-spacing:58.204800px;}
.wsfc{word-spacing:60.750000px;}
.wsc5{word-spacing:801.630000px;}
.ws101{word-spacing:801.945000px;}
.ws88{word-spacing:802.800000px;}
.ws6c{word-spacing:973.800000px;}
.ws3a{word-spacing:974.430000px;}
._b{margin-left:-974.334125px;}
._f{margin-left:-31.426320px;}
._8{margin-left:-25.196880px;}
._11{margin-left:-19.978080px;}
._10{margin-left:-15.369240px;}
._c{margin-left:-8.236440px;}
._7{margin-left:-7.123260px;}
._5{margin-left:-5.623440px;}
._e{margin-left:-4.620000px;}
._4{margin-left:-3.508800px;}
._1{margin-left:-1.518960px;}
._2{width:1.003680px;}
._0{width:2.006880px;}
._3{width:3.064080px;}
._9{width:8.516400px;}
._a{width:59.513753px;}
._6{width:63.419753px;}
._d{width:64.805753px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.531400px;}
.fsa{font-size:32.881200px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fsc{font-size:45.000000px;}
.fsd{font-size:50.400000px;}
.fs5{font-size:51.600000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs9{font-size:56.400000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs3{font-size:66.000000px;}
.fse{font-size:102.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:65.368050px;}
.y49{bottom:104.170050px;}
.y21{bottom:104.173350px;}
.ye5{bottom:104.214000px;}
.y70{bottom:104.257200px;}
.y105{bottom:104.266800px;}
.y8f{bottom:118.273350px;}
.y48{bottom:121.673550px;}
.ye4{bottom:124.461600px;}
.y6f{bottom:124.504800px;}
.y104{bottom:124.514400px;}
.y47{bottom:135.775050px;}
.y20{bottom:144.646350px;}
.yb9{bottom:144.709200px;}
.y6e{bottom:144.752400px;}
.y103{bottom:144.762000px;}
.y46{bottom:149.875050px;}
.y1f{bottom:164.901750px;}
.yb8{bottom:164.956800px;}
.y6d{bottom:165.000000px;}
.y102{bottom:165.009600px;}
.y1e{bottom:185.157150px;}
.yb7{bottom:185.204400px;}
.y6c{bottom:185.247600px;}
.y101{bottom:185.257200px;}
.y1d{bottom:205.412550px;}
.y45{bottom:205.423200px;}
.yb6{bottom:205.452000px;}
.y6b{bottom:205.495200px;}
.y100{bottom:205.504800px;}
.y1c{bottom:225.667950px;}
.y44{bottom:225.673200px;}
.yb5{bottom:225.699600px;}
.y6a{bottom:225.742800px;}
.yff{bottom:225.752400px;}
.y19{bottom:245.880150px;}
.y43{bottom:245.923200px;}
.y1b{bottom:245.923350px;}
.yb4{bottom:245.947200px;}
.y69{bottom:245.990400px;}
.yfe{bottom:246.000000px;}
.y1a{bottom:250.568550px;}
.y18{bottom:266.135550px;}
.y42{bottom:266.173200px;}
.yb3{bottom:266.194800px;}
.y68{bottom:266.238000px;}
.yfd{bottom:266.247600px;}
.y17{bottom:286.390950px;}
.y41{bottom:286.423200px;}
.y11a{bottom:286.425000px;}
.y8e{bottom:286.437600px;}
.yb2{bottom:286.442400px;}
.y67{bottom:286.485600px;}
.yfc{bottom:286.495200px;}
.y16{bottom:306.646350px;}
.y40{bottom:306.673200px;}
.y8d{bottom:306.685200px;}
.yb1{bottom:306.690000px;}
.y66{bottom:306.733200px;}
.yfb{bottom:306.742800px;}
.y15{bottom:326.901750px;}
.y3f{bottom:326.923200px;}
.y8c{bottom:326.932800px;}
.yb0{bottom:326.937600px;}
.y65{bottom:326.980800px;}
.yfa{bottom:326.990400px;}
.y14{bottom:347.157150px;}
.y8b{bottom:347.180400px;}
.yaf{bottom:347.185200px;}
.y64{bottom:347.228400px;}
.yf9{bottom:347.238000px;}
.y13{bottom:367.412550px;}
.y119{bottom:367.423200px;}
.y8a{bottom:367.428000px;}
.yae{bottom:367.432800px;}
.y3e{bottom:367.440000px;}
.yd2{bottom:367.442400px;}
.y63{bottom:367.476000px;}
.yf8{bottom:367.485600px;}
.y12{bottom:387.667950px;}
.y89{bottom:387.675600px;}
.yad{bottom:387.680400px;}
.y3d{bottom:387.687600px;}
.yd1{bottom:387.690000px;}
.y62{bottom:387.723600px;}
.yf7{bottom:387.733200px;}
.y11{bottom:407.923350px;}
.yac{bottom:407.928000px;}
.y3c{bottom:407.935200px;}
.yd0{bottom:407.937600px;}
.y88{bottom:407.961600px;}
.y61{bottom:407.971200px;}
.yf6{bottom:407.980800px;}
.y118{bottom:428.173200px;}
.yab{bottom:428.175600px;}
.y3b{bottom:428.182800px;}
.ycf{bottom:428.185200px;}
.y87{bottom:428.209200px;}
.y60{bottom:428.218800px;}
.yf5{bottom:428.228400px;}
.ye3{bottom:448.423200px;}
.y3a{bottom:448.430400px;}
.yce{bottom:448.432800px;}
.yaa{bottom:448.444800px;}
.y86{bottom:448.456800px;}
.y5f{bottom:448.466400px;}
.yf4{bottom:448.476000px;}
.y10f{bottom:458.375100px;}
.y39{bottom:468.678000px;}
.ycd{bottom:468.680400px;}
.ye2{bottom:468.687600px;}
.ya9{bottom:468.692400px;}
.y85{bottom:468.704400px;}
.y5e{bottom:468.714000px;}
.yf3{bottom:468.723600px;}
.y10e{bottom:472.628850px;}
.y117{bottom:486.848850px;}
.y10d{bottom:486.882600px;}
.y10{bottom:488.914350px;}
.y38{bottom:488.925600px;}
.ycc{bottom:488.928000px;}
.ye1{bottom:488.935200px;}
.ya8{bottom:488.940000px;}
.y84{bottom:488.952000px;}
.y5d{bottom:488.961600px;}
.yf2{bottom:488.971200px;}
.y116{bottom:501.102600px;}
.y10c{bottom:501.136350px;}
.yf{bottom:509.167350px;}
.y37{bottom:509.173200px;}
.ycb{bottom:509.175600px;}
.ye0{bottom:509.182800px;}
.ya7{bottom:509.187600px;}
.y83{bottom:509.199600px;}
.y5c{bottom:509.209200px;}
.yf1{bottom:509.218800px;}
.y115{bottom:515.356350px;}
.y10b{bottom:515.390100px;}
.ye{bottom:529.420350px;}
.yca{bottom:529.423200px;}
.y36{bottom:529.428000px;}
.ydf{bottom:529.430400px;}
.ya6{bottom:529.435200px;}
.y82{bottom:529.447200px;}
.y5b{bottom:529.456800px;}
.yf0{bottom:529.466400px;}
.y114{bottom:529.610100px;}
.y10a{bottom:529.643850px;}
.y113{bottom:543.863850px;}
.y109{bottom:543.897600px;}
.yc{bottom:549.667350px;}
.yd{bottom:549.673350px;}
.y35{bottom:549.675600px;}
.yde{bottom:549.678000px;}
.yc9{bottom:549.680400px;}
.ya5{bottom:549.682800px;}
.y81{bottom:549.694800px;}
.y5a{bottom:549.704400px;}
.yef{bottom:549.714000px;}
.y112{bottom:558.117600px;}
.y108{bottom:562.403850px;}
.yb{bottom:569.920350px;}
.ydd{bottom:569.925600px;}
.yc8{bottom:569.928000px;}
.ya4{bottom:569.930400px;}
.y34{bottom:569.932800px;}
.y80{bottom:569.942400px;}
.y59{bottom:569.952000px;}
.yee{bottom:569.961600px;}
.y111{bottom:576.623850px;}
.y107{bottom:576.657600px;}
.y9{bottom:590.167350px;}
.ydc{bottom:590.173200px;}
.ya{bottom:590.173350px;}
.yc7{bottom:590.175600px;}
.ya3{bottom:590.178000px;}
.y33{bottom:590.180400px;}
.y7f{bottom:590.190000px;}
.y58{bottom:590.199600px;}
.yed{bottom:590.209200px;}
.y110{bottom:590.877600px;}
.y106{bottom:590.911350px;}
.y9e{bottom:610.420200px;}
.y8{bottom:610.420350px;}
.ya2{bottom:610.425600px;}
.y32{bottom:610.428000px;}
.y7e{bottom:610.437600px;}
.ydb{bottom:610.442400px;}
.y57{bottom:610.447200px;}
.yc6{bottom:610.452000px;}
.yec{bottom:610.456800px;}
.y9d{bottom:630.673200px;}
.y7{bottom:630.673350px;}
.y31{bottom:630.675600px;}
.y7d{bottom:630.685200px;}
.yda{bottom:630.690000px;}
.y56{bottom:630.694800px;}
.yc5{bottom:630.699600px;}
.yeb{bottom:630.704400px;}
.y30{bottom:650.923200px;}
.y7c{bottom:650.932800px;}
.yd9{bottom:650.937600px;}
.y55{bottom:650.942400px;}
.yc4{bottom:650.947200px;}
.yea{bottom:650.952000px;}
.y2f{bottom:671.113800px;}
.y6{bottom:671.173350px;}
.y7b{bottom:671.180400px;}
.yd8{bottom:671.185200px;}
.y54{bottom:671.190000px;}
.yc3{bottom:671.194800px;}
.ye9{bottom:671.199600px;}
.y2e{bottom:691.369200px;}
.y9c{bottom:691.423200px;}
.y7a{bottom:691.428000px;}
.yd7{bottom:691.432800px;}
.y53{bottom:691.437600px;}
.yc2{bottom:691.442400px;}
.ye8{bottom:691.447200px;}
.y2d{bottom:711.624600px;}
.y9b{bottom:711.658800px;}
.y79{bottom:711.675600px;}
.yd6{bottom:711.680400px;}
.y52{bottom:711.685200px;}
.yc1{bottom:711.690000px;}
.ye7{bottom:711.694800px;}
.y2c{bottom:731.880000px;}
.y9a{bottom:731.916000px;}
.y78{bottom:731.923200px;}
.ya1{bottom:731.927700px;}
.yd5{bottom:731.928000px;}
.y51{bottom:731.932800px;}
.yc0{bottom:731.937600px;}
.ye6{bottom:731.942400px;}
.y2b{bottom:752.135400px;}
.y99{bottom:752.173200px;}
.yd4{bottom:752.175600px;}
.y50{bottom:752.180400px;}
.ybf{bottom:752.185200px;}
.y77{bottom:752.190000px;}
.y2a{bottom:772.390800px;}
.yd3{bottom:772.423200px;}
.y5{bottom:772.427850px;}
.y4f{bottom:772.428000px;}
.ybe{bottom:772.432800px;}
.y76{bottom:772.437600px;}
.y95{bottom:778.640100px;}
.y29{bottom:792.646200px;}
.y4{bottom:792.673350px;}
.y4e{bottom:792.675600px;}
.ybd{bottom:792.680400px;}
.y75{bottom:792.685200px;}
.y94{bottom:792.893850px;}
.ya0{bottom:798.671700px;}
.y93{bottom:807.147600px;}
.y28{bottom:812.901600px;}
.y4d{bottom:812.923200px;}
.ybc{bottom:812.928000px;}
.y11d{bottom:812.928600px;}
.y74{bottom:812.932800px;}
.y92{bottom:821.401350px;}
.y98{bottom:825.631350px;}
.y27{bottom:833.157000px;}
.y9f{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.ybb{bottom:833.175600px;}
.y11c{bottom:833.176800px;}
.y73{bottom:833.180400px;}
.y97{bottom:839.885100px;}
.y91{bottom:839.907600px;}
.y26{bottom:853.412400px;}
.y4c{bottom:853.423200px;}
.y11b{bottom:853.425000px;}
.y72{bottom:853.428000px;}
.y96{bottom:854.138850px;}
.y90{bottom:854.161350px;}
.y25{bottom:873.667800px;}
.y4b{bottom:873.673200px;}
.y71{bottom:873.675600px;}
.y24{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.yba{bottom:952.845000px;}
.y4a{bottom:952.912500px;}
.y23{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h9{height:23.552734px;}
.h18{height:34.942800px;}
.h13{height:36.489600px;}
.he{height:39.258000px;}
.ha{height:39.312000px;}
.hf{height:39.325200px;}
.h1b{height:39.664800px;}
.h2{height:39.871200px;}
.h10{height:40.410000px;}
.hb{height:41.558400px;}
.h11{height:42.120000px;}
.h1a{height:43.560000px;}
.h1d{height:45.259200px;}
.hd{height:45.846000px;}
.h7{height:46.336800px;}
.h1c{height:47.174400px;}
.h6{height:47.220000px;}
.h8{height:47.374200px;}
.hc{height:47.883600px;}
.h12{height:48.164400px;}
.h19{height:50.544000px;}
.h17{height:52.790400px;}
.h3{height:55.141200px;}
.h14{height:57.283200px;}
.h5{height:59.466000px;}
.h16{height:61.776000px;}
.h15{height:80.274000px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x9{left:89.292113px;}
.x6{left:93.543300px;}
.x3{left:100.015950px;}
.xd{left:104.295600px;}
.xc{left:106.299150px;}
.x7{left:150.816150px;}
.x8{left:172.034700px;}
.x4{left:352.217250px;}
.x5{left:356.521050px;}
.xa{left:359.289187px;}
.xb{left:372.045900px;}
.xe{left:596.201400px;}
.x2{left:597.692100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.660267pt;}
.ls5{letter-spacing:-0.601600pt;}
.ls6{letter-spacing:-0.501333pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls3{letter-spacing:-0.149333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.197333pt;}
.ls0{letter-spacing:1874.077823pt;}
.wse7{word-spacing:-11.200000pt;}
.ws87{word-spacing:-11.050667pt;}
.wse8{word-spacing:-10.931200pt;}
.ws1{word-spacing:-10.666667pt;}
.ws96{word-spacing:-10.026667pt;}
.ws2{word-spacing:-9.173333pt;}
.ws100{word-spacing:-8.960000pt;}
.ws0{word-spacing:-7.696000pt;}
.ws3{word-spacing:-7.466667pt;}
.wsdd{word-spacing:-7.118933pt;}
.ws18{word-spacing:-5.845547pt;}
.ws9f{word-spacing:-5.328000pt;}
.wscd{word-spacing:-4.963200pt;}
.wscb{word-spacing:-4.612267pt;}
.ws85{word-spacing:-4.261333pt;}
.ws98{word-spacing:-4.161067pt;}
.wscc{word-spacing:-3.459200pt;}
.wsba{word-spacing:-3.308800pt;}
.ws52{word-spacing:-2.807467pt;}
.ws3b{word-spacing:-2.736000pt;}
.ws7f{word-spacing:-2.606933pt;}
.ws60{word-spacing:-2.506667pt;}
.ws56{word-spacing:-2.456533pt;}
.ws53{word-spacing:-2.306133pt;}
.wsbb{word-spacing:-2.155733pt;}
.ws40{word-spacing:-2.055467pt;}
.ws5e{word-spacing:-1.955200pt;}
.ws90{word-spacing:-1.905067pt;}
.ws33{word-spacing:-1.824000pt;}
.ws5{word-spacing:-1.742933pt;}
.ws46{word-spacing:-1.704533pt;}
.wsb6{word-spacing:-1.654400pt;}
.ws71{word-spacing:-1.640000pt;}
.ws1b{word-spacing:-1.636800pt;}
.ws3f{word-spacing:-1.554133pt;}
.wsa0{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.403733pt;}
.ws5f{word-spacing:-1.353600pt;}
.ws67{word-spacing:-1.253333pt;}
.ws38{word-spacing:-1.232000pt;}
.ws29{word-spacing:-1.203200pt;}
.ws51{word-spacing:-1.052800pt;}
.wsa4{word-spacing:-0.970667pt;}
.ws2f{word-spacing:-0.952533pt;}
.wsb4{word-spacing:-0.902400pt;}
.ws6a{word-spacing:-0.852267pt;}
.ws2a{word-spacing:-0.802133pt;}
.wsa6{word-spacing:-0.784000pt;}
.ws5d{word-spacing:-0.752000pt;}
.ws42{word-spacing:-0.701867pt;}
.ws30{word-spacing:-0.672000pt;}
.ws4c{word-spacing:-0.651733pt;}
.ws103{word-spacing:-0.627200pt;}
.ws17{word-spacing:-0.595200pt;}
.ws105{word-spacing:-0.537600pt;}
.ws6f{word-spacing:-0.440000pt;}
.ws50{word-spacing:-0.401067pt;}
.ws23{word-spacing:-0.396800pt;}
.ws19{word-spacing:-0.394667pt;}
.ws44{word-spacing:-0.200533pt;}
.wsef{word-spacing:-0.150400pt;}
.ws4e{word-spacing:-0.100267pt;}
.ws4{word-spacing:0.000000pt;}
.ws43{word-spacing:0.050133pt;}
.ws1e{word-spacing:0.099200pt;}
.wsc3{word-spacing:0.100267pt;}
.wsf8{word-spacing:0.120000pt;}
.ws39{word-spacing:0.149333pt;}
.ws15{word-spacing:0.198400pt;}
.ws14{word-spacing:0.248000pt;}
.ws54{word-spacing:0.250667pt;}
.ws81{word-spacing:0.350933pt;}
.ws8e{word-spacing:0.401067pt;}
.ws3c{word-spacing:0.432000pt;}
.ws6d{word-spacing:0.600000pt;}
.ws12{word-spacing:0.744000pt;}
.ws9{word-spacing:0.779733pt;}
.ws8f{word-spacing:0.802133pt;}
.ws70{word-spacing:0.960000pt;}
.wsf6{word-spacing:1.080000pt;}
.ws1d{word-spacing:1.091200pt;}
.ws2e{word-spacing:1.102933pt;}
.wsb{word-spacing:1.146667pt;}
.ws69{word-spacing:1.153067pt;}
.ws11{word-spacing:1.190400pt;}
.ws84{word-spacing:1.203200pt;}
.ws7{word-spacing:1.238400pt;}
.ws4b{word-spacing:1.253333pt;}
.ws59{word-spacing:1.303467pt;}
.ws26{word-spacing:1.403733pt;}
.ws66{word-spacing:1.504000pt;}
.ws1c{word-spacing:1.587200pt;}
.ws24{word-spacing:1.654400pt;}
.wsf0{word-spacing:1.754667pt;}
.ws8{word-spacing:1.788800pt;}
.wse3{word-spacing:1.804800pt;}
.ws35{word-spacing:1.824000pt;}
.ws57{word-spacing:1.854933pt;}
.ws73{word-spacing:1.880533pt;}
.wse9{word-spacing:1.905067pt;}
.ws58{word-spacing:1.955200pt;}
.ws7a{word-spacing:2.055467pt;}
.wsce{word-spacing:2.105600pt;}
.ws6{word-spacing:2.109867pt;}
.ws36{word-spacing:2.160000pt;}
.ws25{word-spacing:2.256000pt;}
.ws5a{word-spacing:2.456533pt;}
.ws22{word-spacing:2.480000pt;}
.ws4d{word-spacing:2.506667pt;}
.ws34{word-spacing:2.544000pt;}
.ws45{word-spacing:2.606933pt;}
.ws5b{word-spacing:2.707200pt;}
.ws65{word-spacing:2.807467pt;}
.ws21{word-spacing:2.876800pt;}
.ws9b{word-spacing:2.907733pt;}
.ws13{word-spacing:2.926400pt;}
.wsd2{word-spacing:3.158400pt;}
.wsf{word-spacing:3.224000pt;}
.ws62{word-spacing:3.258667pt;}
.ws28{word-spacing:3.308800pt;}
.ws48{word-spacing:3.358933pt;}
.wsd{word-spacing:3.422400pt;}
.ws6b{word-spacing:3.459200pt;}
.ws37{word-spacing:3.472000pt;}
.ws2d{word-spacing:3.609600pt;}
.wsf1{word-spacing:3.658667pt;}
.ws4a{word-spacing:3.659733pt;}
.ws47{word-spacing:3.709867pt;}
.ws104{word-spacing:3.718400pt;}
.wsc{word-spacing:3.819200pt;}
.ws41{word-spacing:3.860267pt;}
.wsa{word-spacing:3.898667pt;}
.ws1a{word-spacing:3.918400pt;}
.ws3d{word-spacing:4.010667pt;}
.ws10{word-spacing:4.017600pt;}
.ws55{word-spacing:4.060800pt;}
.wsa1{word-spacing:4.080000pt;}
.ws2c{word-spacing:4.261333pt;}
.ws72{word-spacing:4.280000pt;}
.wsf2{word-spacing:4.360000pt;}
.ws49{word-spacing:4.411733pt;}
.wsb1{word-spacing:4.461867pt;}
.ws2b{word-spacing:4.562133pt;}
.ws1f{word-spacing:4.612800pt;}
.ws61{word-spacing:4.662400pt;}
.wsb0{word-spacing:4.762667pt;}
.wsde{word-spacing:4.812800pt;}
.wsa5{word-spacing:4.928000pt;}
.ws9e{word-spacing:5.088000pt;}
.wsd9{word-spacing:5.213867pt;}
.ws5c{word-spacing:5.264000pt;}
.wsa3{word-spacing:5.328000pt;}
.ws64{word-spacing:5.364267pt;}
.wsb3{word-spacing:5.414400pt;}
.ws63{word-spacing:5.464533pt;}
.wsc4{word-spacing:5.564800pt;}
.wsd1{word-spacing:5.614933pt;}
.wsa9{word-spacing:5.664000pt;}
.wsf7{word-spacing:5.760000pt;}
.wsca{word-spacing:5.815467pt;}
.ws7c{word-spacing:5.915733pt;}
.wsed{word-spacing:6.016000pt;}
.ws3e{word-spacing:6.216533pt;}
.ws74{word-spacing:6.266667pt;}
.ws68{word-spacing:6.467200pt;}
.ws6e{word-spacing:6.480000pt;}
.ws32{word-spacing:6.576000pt;}
.ws9d{word-spacing:6.667733pt;}
.wse4{word-spacing:7.018667pt;}
.ws31{word-spacing:7.056000pt;}
.ws16{word-spacing:7.192000pt;}
.ws80{word-spacing:7.219200pt;}
.wsf5{word-spacing:7.360000pt;}
.ws27{word-spacing:7.620267pt;}
.wsac{word-spacing:7.770667pt;}
.ws20{word-spacing:7.787200pt;}
.ws83{word-spacing:7.820800pt;}
.wse{word-spacing:7.985600pt;}
.wse2{word-spacing:8.422400pt;}
.ws76{word-spacing:8.673067pt;}
.wsb8{word-spacing:8.723200pt;}
.wsb5{word-spacing:8.873600pt;}
.ws102{word-spacing:9.273600pt;}
.wsb9{word-spacing:9.475200pt;}
.ws9c{word-spacing:9.876267pt;}
.wse5{word-spacing:10.327467pt;}
.wsdf{word-spacing:10.477867pt;}
.wsd3{word-spacing:10.678400pt;}
.ws8c{word-spacing:10.929067pt;}
.ws79{word-spacing:11.029333pt;}
.ws82{word-spacing:11.480533pt;}
.wsc6{word-spacing:11.731200pt;}
.wsf9{word-spacing:11.800000pt;}
.wsfa{word-spacing:11.920000pt;}
.wsbe{word-spacing:11.931733pt;}
.ws7e{word-spacing:12.282667pt;}
.wsdb{word-spacing:12.533333pt;}
.ws8b{word-spacing:12.683733pt;}
.wsc1{word-spacing:12.733867pt;}
.ws8d{word-spacing:13.034667pt;}
.wsaa{word-spacing:13.104000pt;}
.ws94{word-spacing:13.185067pt;}
.wsb7{word-spacing:13.586133pt;}
.wsbd{word-spacing:13.987200pt;}
.wscf{word-spacing:14.288000pt;}
.wsc2{word-spacing:14.388267pt;}
.wsa8{word-spacing:14.736000pt;}
.wsd4{word-spacing:14.739200pt;}
.ws99{word-spacing:14.889600pt;}
.ws77{word-spacing:15.741867pt;}
.ws86{word-spacing:15.792000pt;}
.wsf4{word-spacing:15.800000pt;}
.wsc7{word-spacing:16.042667pt;}
.wsec{word-spacing:16.193067pt;}
.wsa7{word-spacing:16.368000pt;}
.wse1{word-spacing:16.694400pt;}
.wsae{word-spacing:17.446400pt;}
.wsd0{word-spacing:17.997867pt;}
.wsa2{word-spacing:21.072000pt;}
.wsd6{word-spacing:21.406933pt;}
.wsfe{word-spacing:22.320000pt;}
.wsff{word-spacing:22.600000pt;}
.ws8a{word-spacing:22.961067pt;}
.wsf3{word-spacing:23.280000pt;}
.ws89{word-spacing:23.412267pt;}
.wsd5{word-spacing:23.512533pt;}
.wse6{word-spacing:23.763200pt;}
.ws75{word-spacing:23.863467pt;}
.wsea{word-spacing:25.618133pt;}
.ws7d{word-spacing:25.969067pt;}
.wsc9{word-spacing:26.320000pt;}
.ws92{word-spacing:26.520533pt;}
.ws7b{word-spacing:26.620800pt;}
.wsd8{word-spacing:26.821333pt;}
.wsc0{word-spacing:28.626133pt;}
.ws91{word-spacing:28.876800pt;}
.wsc8{word-spacing:28.977067pt;}
.ws78{word-spacing:29.177600pt;}
.wsdc{word-spacing:29.227733pt;}
.wse0{word-spacing:29.328000pt;}
.ws9a{word-spacing:29.428267pt;}
.wsfd{word-spacing:29.440000pt;}
.wsb2{word-spacing:29.578667pt;}
.ws97{word-spacing:30.330667pt;}
.wseb{word-spacing:31.182933pt;}
.wsab{word-spacing:31.734400pt;}
.wsfb{word-spacing:31.840000pt;}
.wsbc{word-spacing:32.436267pt;}
.wsd7{word-spacing:33.388800pt;}
.wsad{word-spacing:33.789867pt;}
.wsaf{word-spacing:41.761067pt;}
.wsee{word-spacing:45.220267pt;}
.ws95{word-spacing:48.128000pt;}
.wsbf{word-spacing:49.531733pt;}
.wsda{word-spacing:51.587200pt;}
.ws93{word-spacing:51.737600pt;}
.wsfc{word-spacing:54.000000pt;}
.wsc5{word-spacing:712.560000pt;}
.ws101{word-spacing:712.840000pt;}
.ws88{word-spacing:713.600000pt;}
.ws6c{word-spacing:865.600000pt;}
.ws3a{word-spacing:866.160000pt;}
._b{margin-left:-866.074778pt;}
._f{margin-left:-27.934507pt;}
._8{margin-left:-22.397227pt;}
._11{margin-left:-17.758293pt;}
._10{margin-left:-13.661547pt;}
._c{margin-left:-7.321280pt;}
._7{margin-left:-6.331787pt;}
._5{margin-left:-4.998613pt;}
._e{margin-left:-4.106667pt;}
._4{margin-left:-3.118933pt;}
._1{margin-left:-1.350187pt;}
._2{width:0.892160pt;}
._0{width:1.783893pt;}
._3{width:2.723627pt;}
._9{width:7.570133pt;}
._a{width:52.901113pt;}
._6{width:56.373113pt;}
._d{width:57.605113pt;}
.fs7{font-size:28.916800pt;}
.fsa{font-size:29.227733pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fsc{font-size:40.000000pt;}
.fsd{font-size:44.800000pt;}
.fs5{font-size:45.866667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs9{font-size:50.133333pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs3{font-size:58.666667pt;}
.fse{font-size:90.666667pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:58.104933pt;}
.y49{bottom:92.595600pt;}
.y21{bottom:92.598533pt;}
.ye5{bottom:92.634667pt;}
.y70{bottom:92.673067pt;}
.y105{bottom:92.681600pt;}
.y8f{bottom:105.131867pt;}
.y48{bottom:108.154267pt;}
.ye4{bottom:110.632533pt;}
.y6f{bottom:110.670933pt;}
.y104{bottom:110.679467pt;}
.y47{bottom:120.688933pt;}
.y20{bottom:128.574533pt;}
.yb9{bottom:128.630400pt;}
.y6e{bottom:128.668800pt;}
.y103{bottom:128.677333pt;}
.y46{bottom:133.222267pt;}
.y1f{bottom:146.579333pt;}
.yb8{bottom:146.628267pt;}
.y6d{bottom:146.666667pt;}
.y102{bottom:146.675200pt;}
.y1e{bottom:164.584133pt;}
.yb7{bottom:164.626133pt;}
.y6c{bottom:164.664533pt;}
.y101{bottom:164.673067pt;}
.y1d{bottom:182.588933pt;}
.y45{bottom:182.598400pt;}
.yb6{bottom:182.624000pt;}
.y6b{bottom:182.662400pt;}
.y100{bottom:182.670933pt;}
.y1c{bottom:200.593733pt;}
.y44{bottom:200.598400pt;}
.yb5{bottom:200.621867pt;}
.y6a{bottom:200.660267pt;}
.yff{bottom:200.668800pt;}
.y19{bottom:218.560133pt;}
.y43{bottom:218.598400pt;}
.y1b{bottom:218.598533pt;}
.yb4{bottom:218.619733pt;}
.y69{bottom:218.658133pt;}
.yfe{bottom:218.666667pt;}
.y1a{bottom:222.727600pt;}
.y18{bottom:236.564933pt;}
.y42{bottom:236.598400pt;}
.yb3{bottom:236.617600pt;}
.y68{bottom:236.656000pt;}
.yfd{bottom:236.664533pt;}
.y17{bottom:254.569733pt;}
.y41{bottom:254.598400pt;}
.y11a{bottom:254.600000pt;}
.y8e{bottom:254.611200pt;}
.yb2{bottom:254.615467pt;}
.y67{bottom:254.653867pt;}
.yfc{bottom:254.662400pt;}
.y16{bottom:272.574533pt;}
.y40{bottom:272.598400pt;}
.y8d{bottom:272.609067pt;}
.yb1{bottom:272.613333pt;}
.y66{bottom:272.651733pt;}
.yfb{bottom:272.660267pt;}
.y15{bottom:290.579333pt;}
.y3f{bottom:290.598400pt;}
.y8c{bottom:290.606933pt;}
.yb0{bottom:290.611200pt;}
.y65{bottom:290.649600pt;}
.yfa{bottom:290.658133pt;}
.y14{bottom:308.584133pt;}
.y8b{bottom:308.604800pt;}
.yaf{bottom:308.609067pt;}
.y64{bottom:308.647467pt;}
.yf9{bottom:308.656000pt;}
.y13{bottom:326.588933pt;}
.y119{bottom:326.598400pt;}
.y8a{bottom:326.602667pt;}
.yae{bottom:326.606933pt;}
.y3e{bottom:326.613333pt;}
.yd2{bottom:326.615467pt;}
.y63{bottom:326.645333pt;}
.yf8{bottom:326.653867pt;}
.y12{bottom:344.593733pt;}
.y89{bottom:344.600533pt;}
.yad{bottom:344.604800pt;}
.y3d{bottom:344.611200pt;}
.yd1{bottom:344.613333pt;}
.y62{bottom:344.643200pt;}
.yf7{bottom:344.651733pt;}
.y11{bottom:362.598533pt;}
.yac{bottom:362.602667pt;}
.y3c{bottom:362.609067pt;}
.yd0{bottom:362.611200pt;}
.y88{bottom:362.632533pt;}
.y61{bottom:362.641067pt;}
.yf6{bottom:362.649600pt;}
.y118{bottom:380.598400pt;}
.yab{bottom:380.600533pt;}
.y3b{bottom:380.606933pt;}
.ycf{bottom:380.609067pt;}
.y87{bottom:380.630400pt;}
.y60{bottom:380.638933pt;}
.yf5{bottom:380.647467pt;}
.ye3{bottom:398.598400pt;}
.y3a{bottom:398.604800pt;}
.yce{bottom:398.606933pt;}
.yaa{bottom:398.617600pt;}
.y86{bottom:398.628267pt;}
.y5f{bottom:398.636800pt;}
.yf4{bottom:398.645333pt;}
.y10f{bottom:407.444533pt;}
.y39{bottom:416.602667pt;}
.ycd{bottom:416.604800pt;}
.ye2{bottom:416.611200pt;}
.ya9{bottom:416.615467pt;}
.y85{bottom:416.626133pt;}
.y5e{bottom:416.634667pt;}
.yf3{bottom:416.643200pt;}
.y10e{bottom:420.114533pt;}
.y117{bottom:432.754533pt;}
.y10d{bottom:432.784533pt;}
.y10{bottom:434.590533pt;}
.y38{bottom:434.600533pt;}
.ycc{bottom:434.602667pt;}
.ye1{bottom:434.609067pt;}
.ya8{bottom:434.613333pt;}
.y84{bottom:434.624000pt;}
.y5d{bottom:434.632533pt;}
.yf2{bottom:434.641067pt;}
.y116{bottom:445.424533pt;}
.y10c{bottom:445.454533pt;}
.yf{bottom:452.593200pt;}
.y37{bottom:452.598400pt;}
.ycb{bottom:452.600533pt;}
.ye0{bottom:452.606933pt;}
.ya7{bottom:452.611200pt;}
.y83{bottom:452.621867pt;}
.y5c{bottom:452.630400pt;}
.yf1{bottom:452.638933pt;}
.y115{bottom:458.094533pt;}
.y10b{bottom:458.124533pt;}
.ye{bottom:470.595867pt;}
.yca{bottom:470.598400pt;}
.y36{bottom:470.602667pt;}
.ydf{bottom:470.604800pt;}
.ya6{bottom:470.609067pt;}
.y82{bottom:470.619733pt;}
.y5b{bottom:470.628267pt;}
.yf0{bottom:470.636800pt;}
.y114{bottom:470.764533pt;}
.y10a{bottom:470.794533pt;}
.y113{bottom:483.434533pt;}
.y109{bottom:483.464533pt;}
.yc{bottom:488.593200pt;}
.yd{bottom:488.598533pt;}
.y35{bottom:488.600533pt;}
.yde{bottom:488.602667pt;}
.yc9{bottom:488.604800pt;}
.ya5{bottom:488.606933pt;}
.y81{bottom:488.617600pt;}
.y5a{bottom:488.626133pt;}
.yef{bottom:488.634667pt;}
.y112{bottom:496.104533pt;}
.y108{bottom:499.914533pt;}
.yb{bottom:506.595867pt;}
.ydd{bottom:506.600533pt;}
.yc8{bottom:506.602667pt;}
.ya4{bottom:506.604800pt;}
.y34{bottom:506.606933pt;}
.y80{bottom:506.615467pt;}
.y59{bottom:506.624000pt;}
.yee{bottom:506.632533pt;}
.y111{bottom:512.554533pt;}
.y107{bottom:512.584533pt;}
.y9{bottom:524.593200pt;}
.ydc{bottom:524.598400pt;}
.ya{bottom:524.598533pt;}
.yc7{bottom:524.600533pt;}
.ya3{bottom:524.602667pt;}
.y33{bottom:524.604800pt;}
.y7f{bottom:524.613333pt;}
.y58{bottom:524.621867pt;}
.yed{bottom:524.630400pt;}
.y110{bottom:525.224533pt;}
.y106{bottom:525.254533pt;}
.y9e{bottom:542.595733pt;}
.y8{bottom:542.595867pt;}
.ya2{bottom:542.600533pt;}
.y32{bottom:542.602667pt;}
.y7e{bottom:542.611200pt;}
.ydb{bottom:542.615467pt;}
.y57{bottom:542.619733pt;}
.yc6{bottom:542.624000pt;}
.yec{bottom:542.628267pt;}
.y9d{bottom:560.598400pt;}
.y7{bottom:560.598533pt;}
.y31{bottom:560.600533pt;}
.y7d{bottom:560.609067pt;}
.yda{bottom:560.613333pt;}
.y56{bottom:560.617600pt;}
.yc5{bottom:560.621867pt;}
.yeb{bottom:560.626133pt;}
.y30{bottom:578.598400pt;}
.y7c{bottom:578.606933pt;}
.yd9{bottom:578.611200pt;}
.y55{bottom:578.615467pt;}
.yc4{bottom:578.619733pt;}
.yea{bottom:578.624000pt;}
.y2f{bottom:596.545600pt;}
.y6{bottom:596.598533pt;}
.y7b{bottom:596.604800pt;}
.yd8{bottom:596.609067pt;}
.y54{bottom:596.613333pt;}
.yc3{bottom:596.617600pt;}
.ye9{bottom:596.621867pt;}
.y2e{bottom:614.550400pt;}
.y9c{bottom:614.598400pt;}
.y7a{bottom:614.602667pt;}
.yd7{bottom:614.606933pt;}
.y53{bottom:614.611200pt;}
.yc2{bottom:614.615467pt;}
.ye8{bottom:614.619733pt;}
.y2d{bottom:632.555200pt;}
.y9b{bottom:632.585600pt;}
.y79{bottom:632.600533pt;}
.yd6{bottom:632.604800pt;}
.y52{bottom:632.609067pt;}
.yc1{bottom:632.613333pt;}
.ye7{bottom:632.617600pt;}
.y2c{bottom:650.560000pt;}
.y9a{bottom:650.592000pt;}
.y78{bottom:650.598400pt;}
.ya1{bottom:650.602400pt;}
.yd5{bottom:650.602667pt;}
.y51{bottom:650.606933pt;}
.yc0{bottom:650.611200pt;}
.ye6{bottom:650.615467pt;}
.y2b{bottom:668.564800pt;}
.y99{bottom:668.598400pt;}
.yd4{bottom:668.600533pt;}
.y50{bottom:668.604800pt;}
.ybf{bottom:668.609067pt;}
.y77{bottom:668.613333pt;}
.y2a{bottom:686.569600pt;}
.yd3{bottom:686.598400pt;}
.y5{bottom:686.602533pt;}
.y4f{bottom:686.602667pt;}
.ybe{bottom:686.606933pt;}
.y76{bottom:686.611200pt;}
.y95{bottom:692.124533pt;}
.y29{bottom:704.574400pt;}
.y4{bottom:704.598533pt;}
.y4e{bottom:704.600533pt;}
.ybd{bottom:704.604800pt;}
.y75{bottom:704.609067pt;}
.y94{bottom:704.794533pt;}
.ya0{bottom:709.930400pt;}
.y93{bottom:717.464533pt;}
.y28{bottom:722.579200pt;}
.y4d{bottom:722.598400pt;}
.ybc{bottom:722.602667pt;}
.y11d{bottom:722.603200pt;}
.y74{bottom:722.606933pt;}
.y92{bottom:730.134533pt;}
.y98{bottom:733.894533pt;}
.y27{bottom:740.584000pt;}
.y9f{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.ybb{bottom:740.600533pt;}
.y11c{bottom:740.601600pt;}
.y73{bottom:740.604800pt;}
.y97{bottom:746.564533pt;}
.y91{bottom:746.584533pt;}
.y26{bottom:758.588800pt;}
.y4c{bottom:758.598400pt;}
.y11b{bottom:758.600000pt;}
.y72{bottom:758.602667pt;}
.y96{bottom:759.234533pt;}
.y90{bottom:759.254533pt;}
.y25{bottom:776.593600pt;}
.y4b{bottom:776.598400pt;}
.y71{bottom:776.600533pt;}
.y24{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.yba{bottom:846.973333pt;}
.y4a{bottom:847.033333pt;}
.y23{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h9{height:20.935763pt;}
.h18{height:31.060267pt;}
.h13{height:32.435200pt;}
.he{height:34.896000pt;}
.ha{height:34.944000pt;}
.hf{height:34.955733pt;}
.h1b{height:35.257600pt;}
.h2{height:35.441067pt;}
.h10{height:35.920000pt;}
.hb{height:36.940800pt;}
.h11{height:37.440000pt;}
.h1a{height:38.720000pt;}
.h1d{height:40.230400pt;}
.hd{height:40.752000pt;}
.h7{height:41.188267pt;}
.h1c{height:41.932800pt;}
.h6{height:41.973333pt;}
.h8{height:42.110400pt;}
.hc{height:42.563200pt;}
.h12{height:42.812800pt;}
.h19{height:44.928000pt;}
.h17{height:46.924800pt;}
.h3{height:49.014400pt;}
.h14{height:50.918400pt;}
.h5{height:52.858667pt;}
.h16{height:54.912000pt;}
.h15{height:71.354667pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x9{left:79.370767pt;}
.x6{left:83.149600pt;}
.x3{left:88.903067pt;}
.xd{left:92.707200pt;}
.xc{left:94.488133pt;}
.x7{left:134.058800pt;}
.x8{left:152.919733pt;}
.x4{left:313.082000pt;}
.x5{left:316.907600pt;}
.xa{left:319.368167pt;}
.xb{left:330.707467pt;}
.xe{left:529.956800pt;}
.x2{left:531.281867pt;}
}




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