
    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_57fe2410fdc603c3d2a18fbd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003418;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_f4f43bb15f9bdc7527b08c6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011230;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_30bc6152da9559aa9654b47e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_b45dfd28f4ba093e52f0cde8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_9859284b5b9a8a2c8b181879.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000488;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_00f90f96feee3d28d2d0efb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_d67090186973222ca1bf3c83.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_9859284b5b9a8a2c8b181879.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_6e7829c91d0e3ce06d0057a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054688;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_cac6cc1fdbd262571f91275e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:41.568000px;}
.v1{vertical-align:56.640000px;}
.ls2{letter-spacing:-2.400000px;}
.ls1{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.810000px;}
.ls15{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.080000px;}
.ls4{letter-spacing:4.055400px;}
.lsc{letter-spacing:49.776000px;}
.lsb{letter-spacing:61.824000px;}
.ls8{letter-spacing:67.920000px;}
.ls11{letter-spacing:72.384000px;}
.ls9{letter-spacing:85.296000px;}
.ls10{letter-spacing:85.824000px;}
.lsa{letter-spacing:97.824000px;}
.ls13{letter-spacing:98.688000px;}
.ls12{letter-spacing:98.923200px;}
.lsf{letter-spacing:108.384000px;}
.lsd{letter-spacing:115.152000px;}
.lse{letter-spacing:121.824000px;}
.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;}
}
.ws28{word-spacing:-13.500000px;}
.ws4b{word-spacing:-12.000000px;}
.ws91{word-spacing:-2.970000px;}
.wsd{word-spacing:-2.376000px;}
.ws22{word-spacing:-2.160000px;}
.ws94{word-spacing:-1.998000px;}
.ws1d{word-spacing:-1.944000px;}
.ws31{word-spacing:-1.836000px;}
.wsf{word-spacing:-1.782000px;}
.ws7d{word-spacing:-1.728000px;}
.ws9{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.458000px;}
.ws8c{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.080000px;}
.ws93{word-spacing:-1.026000px;}
.ws13{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.810000px;}
.ws2b{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.378000px;}
.ws46{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.108000px;}
.ws8f{word-spacing:0.162000px;}
.wse{word-spacing:0.270000px;}
.ws15{word-spacing:0.432000px;}
.ws60{word-spacing:0.540000px;}
.ws44{word-spacing:0.648000px;}
.ws12{word-spacing:0.864000px;}
.ws5e{word-spacing:0.918000px;}
.wsb{word-spacing:0.972000px;}
.ws30{word-spacing:1.026000px;}
.ws3{word-spacing:1.080000px;}
.ws43{word-spacing:1.134000px;}
.ws8d{word-spacing:1.188000px;}
.ws26{word-spacing:1.242000px;}
.ws7{word-spacing:1.350000px;}
.ws24{word-spacing:1.404000px;}
.ws5f{word-spacing:1.458000px;}
.ws34{word-spacing:1.512000px;}
.ws92{word-spacing:1.674000px;}
.ws88{word-spacing:1.782000px;}
.ws1{word-spacing:1.836000px;}
.ws87{word-spacing:1.890000px;}
.ws65{word-spacing:2.106000px;}
.ws1e{word-spacing:2.160000px;}
.ws1a{word-spacing:2.214000px;}
.wsa{word-spacing:2.268000px;}
.ws4{word-spacing:2.400000px;}
.ws4a{word-spacing:2.592000px;}
.ws8a{word-spacing:2.700000px;}
.ws2d{word-spacing:2.808000px;}
.ws35{word-spacing:2.862000px;}
.ws86{word-spacing:2.916000px;}
.ws2f{word-spacing:3.240000px;}
.ws5d{word-spacing:3.294000px;}
.ws19{word-spacing:3.348000px;}
.ws48{word-spacing:3.456000px;}
.ws8e{word-spacing:3.618000px;}
.ws2{word-spacing:3.672000px;}
.ws18{word-spacing:3.834000px;}
.ws89{word-spacing:3.942000px;}
.ws2e{word-spacing:4.104000px;}
.ws2c{word-spacing:4.158000px;}
.ws8b{word-spacing:4.212000px;}
.ws2a{word-spacing:4.374000px;}
.ws25{word-spacing:4.698000px;}
.ws61{word-spacing:5.130000px;}
.ws38{word-spacing:5.292000px;}
.ws36{word-spacing:5.508000px;}
.ws63{word-spacing:5.562000px;}
.ws1c{word-spacing:5.778000px;}
.ws47{word-spacing:5.886000px;}
.ws64{word-spacing:5.994000px;}
.ws85{word-spacing:6.048000px;}
.ws29{word-spacing:6.534000px;}
.ws27{word-spacing:6.966000px;}
.ws62{word-spacing:7.020000px;}
.wsc{word-spacing:7.074000px;}
.ws7c{word-spacing:7.128000px;}
.ws42{word-spacing:7.236000px;}
.ws90{word-spacing:7.776000px;}
.ws6{word-spacing:8.154000px;}
.ws37{word-spacing:8.640000px;}
.ws1f{word-spacing:9.126000px;}
.ws8{word-spacing:9.450000px;}
.ws23{word-spacing:9.720000px;}
.ws16{word-spacing:9.774000px;}
.ws20{word-spacing:10.530000px;}
.ws17{word-spacing:11.070000px;}
.ws33{word-spacing:11.178000px;}
.ws14{word-spacing:11.394000px;}
.ws39{word-spacing:11.502000px;}
.ws45{word-spacing:16.524000px;}
.ws49{word-spacing:17.550000px;}
.ws4e{word-spacing:37.776000px;}
.ws54{word-spacing:40.080000px;}
.ws57{word-spacing:41.280000px;}
.ws69{word-spacing:44.064000px;}
.ws6a{word-spacing:47.328000px;}
.ws52{word-spacing:52.992000px;}
.ws55{word-spacing:55.920000px;}
.ws67{word-spacing:56.112000px;}
.ws51{word-spacing:59.472000px;}
.ws53{word-spacing:64.080000px;}
.ws4f{word-spacing:67.104000px;}
.ws59{word-spacing:73.296000px;}
.ws56{word-spacing:81.312000px;}
.ws5c{word-spacing:81.350400px;}
.ws4c{word-spacing:81.360000px;}
.ws50{word-spacing:85.440000px;}
.ws58{word-spacing:96.384000px;}
.ws4d{word-spacing:101.280000px;}
.ws66{word-spacing:106.560000px;}
.ws5a{word-spacing:109.296000px;}
.ws68{word-spacing:132.432000px;}
.ws5b{word-spacing:135.168000px;}
.ws40{word-spacing:192.528000px;}
.ws81{word-spacing:246.048000px;}
.ws3d{word-spacing:255.216000px;}
.ws84{word-spacing:270.048000px;}
.ws3f{word-spacing:272.544000px;}
.ws7e{word-spacing:277.104000px;}
.ws3a{word-spacing:293.904000px;}
.ws41{word-spacing:305.184000px;}
.ws3e{word-spacing:365.664000px;}
.ws3c{word-spacing:372.720000px;}
.ws3b{word-spacing:469.056000px;}
.ws7f{word-spacing:486.912000px;}
.ws80{word-spacing:598.118400px;}
.ws82{word-spacing:650.832000px;}
.ws83{word-spacing:666.528000px;}
.ws73{word-spacing:668.462400px;}
.ws74{word-spacing:714.864000px;}
.ws72{word-spacing:723.710400px;}
.ws7a{word-spacing:726.484800px;}
.ws6e{word-spacing:726.624000px;}
.ws71{word-spacing:726.787200px;}
.ws6f{word-spacing:730.555200px;}
.ws79{word-spacing:747.744000px;}
.ws70{word-spacing:748.272000px;}
.ws78{word-spacing:762.384000px;}
.ws6b{word-spacing:769.104000px;}
.ws77{word-spacing:770.544000px;}
.ws6d{word-spacing:787.440000px;}
.ws75{word-spacing:791.971200px;}
.ws7b{word-spacing:807.984000px;}
.ws76{word-spacing:822.576000px;}
.ws6c{word-spacing:835.200000px;}
._7{margin-left:-14.277600px;}
._5{margin-left:-12.927600px;}
._d{margin-left:-8.499600px;}
._c{margin-left:-7.117200px;}
._6{margin-left:-4.926000px;}
._3{margin-left:-3.348000px;}
._1{margin-left:-1.452600px;}
._4{width:1.069200px;}
._0{width:2.235600px;}
._2{width:3.855600px;}
._8{width:5.508000px;}
._b{width:6.609600px;}
._a{width:7.840800px;}
._e{width:9.109800px;}
._9{width:10.416600px;}
._f{width:11.599200px;}
._12{width:14.655600px;}
._11{width:15.897600px;}
._10{width:17.550000px;}
._14{width:23.425200px;}
._15{width:26.908200px;}
._5a{width:28.528200px;}
._13{width:31.050000px;}
._4c{width:49.968000px;}
._3b{width:53.280000px;}
._47{width:57.504000px;}
._3f{width:59.040000px;}
._2d{width:60.240000px;}
._4a{width:61.920000px;}
._4b{width:63.840000px;}
._33{width:64.992000px;}
._26{width:66.432000px;}
._3a{width:67.680000px;}
._43{width:69.024000px;}
._2a{width:72.384000px;}
._49{width:74.400000px;}
._42{width:75.648000px;}
._39{width:77.280000px;}
._37{width:78.672000px;}
._30{width:80.064000px;}
._48{width:81.792000px;}
._44{width:83.328000px;}
._3c{width:84.384000px;}
._2e{width:85.584000px;}
._45{width:86.736000px;}
._34{width:87.840000px;}
._38{width:92.064000px;}
._2f{width:94.464000px;}
._27{width:96.240000px;}
._32{width:97.440000px;}
._23{width:98.688000px;}
._2b{width:102.384000px;}
._20{width:108.384000px;}
._2c{width:110.064000px;}
._29{width:113.280000px;}
._25{width:115.152000px;}
._35{width:116.544000px;}
._40{width:117.552000px;}
._36{width:118.560000px;}
._3e{width:120.240000px;}
._22{width:122.064000px;}
._28{width:123.840000px;}
._24{width:125.568000px;}
._46{width:132.384000px;}
._21{width:138.384000px;}
._41{width:143.040000px;}
._31{width:144.480000px;}
._3d{width:148.080000px;}
._19{width:160.944000px;}
._4f{width:168.960000px;}
._18{width:187.776000px;}
._17{width:201.552000px;}
._56{width:215.952000px;}
._54{width:246.048000px;}
._16{width:259.152000px;}
._4e{width:277.152000px;}
._57{width:282.048000px;}
._1f{width:284.304000px;}
._52{width:289.104000px;}
._1a{width:314.400000px;}
._1c{width:325.104000px;}
._1b{width:347.664000px;}
._1e{width:374.772000px;}
._51{width:398.460600px;}
._53{width:461.124000px;}
._55{width:469.440000px;}
._58{width:524.316600px;}
._4d{width:696.480000px;}
._50{width:970.080000px;}
._1d{width:998.016000px;}
._59{width:1260.912000px;}
.fc1{color:rgb(48,80,170);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:45.025050px;}
.y165{bottom:82.854300px;}
.y6c{bottom:83.534700px;}
.y93{bottom:84.601200px;}
.y13c{bottom:85.618050px;}
.yd6{bottom:87.501900px;}
.yd7{bottom:91.269900px;}
.ycc{bottom:91.485900px;}
.y109{bottom:91.955250px;}
.y164{bottom:99.054300px;}
.y6b{bottom:99.734700px;}
.y92{bottom:100.801200px;}
.y13b{bottom:101.818050px;}
.y108{bottom:102.347250px;}
.yd5{bottom:102.501900px;}
.ycb{bottom:107.685900px;}
.y163{bottom:115.254300px;}
.y6a{bottom:115.934700px;}
.y28{bottom:116.361450px;}
.yd4{bottom:117.501900px;}
.y13a{bottom:118.018050px;}
.yca{bottom:123.885900px;}
.y162{bottom:131.454300px;}
.y69{bottom:132.134700px;}
.y27{bottom:132.561450px;}
.y91{bottom:133.201200px;}
.y107{bottom:133.523250px;}
.y139{bottom:134.218050px;}
.y105{bottom:136.715250px;}
.yd3{bottom:138.285900px;}
.yc9{bottom:140.085900px;}
.y161{bottom:147.654300px;}
.y68{bottom:148.334700px;}
.y90{bottom:149.401200px;}
.y138{bottom:150.418050px;}
.y104{bottom:151.115250px;}
.y106{bottom:154.307250px;}
.yd2{bottom:154.485900px;}
.yc8{bottom:156.285900px;}
.y160{bottom:163.854300px;}
.y67{bottom:164.534700px;}
.y8f{bottom:165.601200px;}
.y137{bottom:166.618050px;}
.yc7{bottom:172.485900px;}
.y103{bottom:175.078200px;}
.y6{bottom:175.674750px;}
.yd1{bottom:179.681400px;}
.y15f{bottom:180.054300px;}
.y66{bottom:180.734700px;}
.y8e{bottom:181.801200px;}
.y136{bottom:182.818050px;}
.y102{bottom:185.470200px;}
.yc6{bottom:188.685900px;}
.y6d{bottom:191.059350px;}
.y5{bottom:191.874750px;}
.yd0{bottom:195.881400px;}
.y15e{bottom:196.254300px;}
.y65{bottom:196.934700px;}
.y8d{bottom:198.001200px;}
.y135{bottom:199.018050px;}
.yc5{bottom:204.885900px;}
.y4{bottom:208.074750px;}
.ycf{bottom:212.081400px;}
.y15d{bottom:212.454300px;}
.y64{bottom:213.134700px;}
.y8c{bottom:214.201200px;}
.y134{bottom:215.218050px;}
.y101{bottom:216.646200px;}
.yff{bottom:219.838200px;}
.yc4{bottom:221.085900px;}
.y3{bottom:224.274750px;}
.yce{bottom:228.281400px;}
.y15c{bottom:228.654300px;}
.y63{bottom:229.334700px;}
.y8b{bottom:230.401200px;}
.y133{bottom:231.418050px;}
.yfe{bottom:234.238200px;}
.yc3{bottom:237.285900px;}
.y100{bottom:237.430200px;}
.y2{bottom:240.474750px;}
.y15b{bottom:244.854300px;}
.y62{bottom:245.534700px;}
.y8a{bottom:246.601200px;}
.ycd{bottom:253.485900px;}
.y7{bottom:256.674750px;}
.yfd{bottom:258.214200px;}
.y15a{bottom:261.054300px;}
.y61{bottom:261.734700px;}
.y89{bottom:262.801200px;}
.y132{bottom:266.105400px;}
.yfc{bottom:268.606200px;}
.yc2{bottom:269.685900px;}
.y1{bottom:272.874750px;}
.y159{bottom:277.254300px;}
.y60{bottom:277.934700px;}
.y88{bottom:279.001200px;}
.y131{bottom:286.889400px;}
.y158{bottom:293.454300px;}
.y5f{bottom:294.134700px;}
.y87{bottom:295.201200px;}
.yfb{bottom:299.782200px;}
.yf9{bottom:302.974200px;}
.y130{bottom:307.673400px;}
.y157{bottom:309.654300px;}
.y5e{bottom:310.334700px;}
.y86{bottom:311.401200px;}
.yc1{bottom:314.703450px;}
.yf8{bottom:317.374200px;}
.yfa{bottom:320.566200px;}
.y156{bottom:325.854300px;}
.y5d{bottom:326.534700px;}
.y85{bottom:327.601200px;}
.y12f{bottom:328.457400px;}
.yc0{bottom:335.487450px;}
.yf7{bottom:341.350200px;}
.y155{bottom:342.054300px;}
.y5c{bottom:342.734700px;}
.y84{bottom:343.801200px;}
.y26{bottom:346.104450px;}
.y12e{bottom:349.241400px;}
.yf6{bottom:351.742200px;}
.ybf{bottom:357.039450px;}
.y154{bottom:358.254300px;}
.y5b{bottom:358.934700px;}
.y83{bottom:360.001200px;}
.y12d{bottom:370.025400px;}
.y153{bottom:374.454300px;}
.y5a{bottom:375.134700px;}
.y82{bottom:376.201200px;}
.y25{bottom:378.504450px;}
.ybe{bottom:380.955450px;}
.yf5{bottom:382.918200px;}
.y152{bottom:390.654300px;}
.y12c{bottom:390.809400px;}
.y59{bottom:391.334700px;}
.y81{bottom:392.401200px;}
.yf4{bottom:393.310200px;}
.y24{bottom:394.704450px;}
.ybd{bottom:404.343450px;}
.y151{bottom:406.854300px;}
.y58{bottom:407.534700px;}
.y80{bottom:408.601200px;}
.y23{bottom:410.904450px;}
.y12b{bottom:411.593400px;}
.y150{bottom:423.054300px;}
.y57{bottom:423.734700px;}
.yf3{bottom:424.486200px;}
.y7f{bottom:424.801200px;}
.y22{bottom:427.104450px;}
.ybc{bottom:430.251450px;}
.y12a{bottom:432.377400px;}
.yf2{bottom:434.878200px;}
.y14f{bottom:439.254300px;}
.y56{bottom:439.934700px;}
.y7e{bottom:441.001200px;}
.y21{bottom:443.304450px;}
.y129{bottom:453.161400px;}
.y14e{bottom:455.454300px;}
.y55{bottom:456.134700px;}
.y7d{bottom:457.201200px;}
.y20{bottom:459.504450px;}
.yf1{bottom:466.054200px;}
.y14d{bottom:471.654300px;}
.y54{bottom:472.334700px;}
.ybb{bottom:472.497150px;}
.y7c{bottom:473.401200px;}
.y128{bottom:473.945400px;}
.y1f{bottom:475.704450px;}
.yf0{bottom:476.446200px;}
.y53{bottom:488.534700px;}
.yba{bottom:488.697150px;}
.y7b{bottom:489.601200px;}
.y1e{bottom:491.904450px;}
.y127{bottom:494.729400px;}
.y52{bottom:504.734700px;}
.y7a{bottom:505.801200px;}
.yef{bottom:507.622200px;}
.y1d{bottom:508.104450px;}
.y14c{bottom:511.533600px;}
.y126{bottom:515.513400px;}
.yee{bottom:518.014200px;}
.y51{bottom:520.934700px;}
.yb7{bottom:520.936950px;}
.y79{bottom:522.001200px;}
.y1c{bottom:524.304450px;}
.y14b{bottom:532.317600px;}
.y125{bottom:536.297400px;}
.y50{bottom:537.134700px;}
.yb6{bottom:537.136950px;}
.y78{bottom:538.201200px;}
.y1b{bottom:540.504450px;}
.y14a{bottom:553.101600px;}
.y4f{bottom:553.334700px;}
.yb5{bottom:553.336950px;}
.ye2{bottom:554.333250px;}
.y77{bottom:554.401200px;}
.y124{bottom:557.081400px;}
.y1a{bottom:565.208400px;}
.ye9{bottom:565.313250px;}
.yed{bottom:567.269250px;}
.y4e{bottom:569.534700px;}
.yb4{bottom:569.536950px;}
.ye3{bottom:569.861250px;}
.y76{bottom:570.601200px;}
.ydb{bottom:572.753250px;}
.y149{bottom:573.885600px;}
.yde{bottom:575.693250px;}
.y123{bottom:577.865400px;}
.yda{bottom:581.969250px;}
.y19{bottom:585.008400px;}
.ye7{bottom:585.017250px;}
.y4d{bottom:585.734700px;}
.yb3{bottom:585.736950px;}
.ye8{bottom:586.241250px;}
.y75{bottom:586.801200px;}
.ye0{bottom:588.725250px;}
.yec{bottom:589.001250px;}
.ye1{bottom:590.597250px;}
.yeb{bottom:590.621250px;}
.ye4{bottom:592.733250px;}
.ye6{bottom:593.201250px;}
.y148{bottom:594.669600px;}
.ye5{bottom:597.065250px;}
.ydc{bottom:597.653250px;}
.y122{bottom:598.649400px;}
.yea{bottom:599.873250px;}
.ydd{bottom:600.389250px;}
.y4c{bottom:601.934700px;}
.yb2{bottom:601.936950px;}
.y74{bottom:603.001200px;}
.ydf{bottom:611.393250px;}
.y147{bottom:615.453600px;}
.y4b{bottom:618.134700px;}
.yb1{bottom:618.136950px;}
.y73{bottom:619.201200px;}
.y121{bottom:619.433400px;}
.y18{bottom:621.008400px;}
.y4a{bottom:634.334700px;}
.yb0{bottom:634.336950px;}
.y72{bottom:635.401200px;}
.y146{bottom:636.237600px;}
.y11f{bottom:637.433400px;}
.y49{bottom:650.534700px;}
.yaf{bottom:650.536950px;}
.y71{bottom:651.601200px;}
.y17{bottom:653.408400px;}
.y120{bottom:655.433400px;}
.y145{bottom:657.021600px;}
.yd9{bottom:660.783750px;}
.y48{bottom:666.734700px;}
.yae{bottom:666.736950px;}
.y70{bottom:667.801200px;}
.y16{bottom:669.608400px;}
.yd8{bottom:675.783750px;}
.y11e{bottom:676.577850px;}
.y144{bottom:677.805600px;}
.y47{bottom:682.934700px;}
.yad{bottom:682.936950px;}
.y6f{bottom:684.001200px;}
.y15{bottom:685.808400px;}
.y11d{bottom:692.777850px;}
.y143{bottom:698.589600px;}
.y46{bottom:699.134700px;}
.yac{bottom:699.136950px;}
.y6e{bottom:700.201200px;}
.y14{bottom:702.008400px;}
.y45{bottom:715.334700px;}
.yab{bottom:715.336950px;}
.y13{bottom:718.208400px;}
.y142{bottom:719.373600px;}
.y110{bottom:724.179450px;}
.y94{bottom:729.996300px;}
.y44{bottom:731.534700px;}
.yaa{bottom:731.536950px;}
.y12{bottom:734.408400px;}
.y10f{bottom:740.379450px;}
.y141{bottom:744.273600px;}
.y43{bottom:747.734700px;}
.ya9{bottom:747.736950px;}
.y11{bottom:750.608400px;}
.y13f{bottom:754.773600px;}
.y10e{bottom:756.579450px;}
.y42{bottom:763.934700px;}
.ya8{bottom:763.936950px;}
.y10{bottom:766.808400px;}
.y140{bottom:769.173600px;}
.y10d{bottom:772.779450px;}
.y41{bottom:780.134700px;}
.ya7{bottom:780.136950px;}
.yf{bottom:783.008400px;}
.y10c{bottom:788.979450px;}
.y40{bottom:796.334700px;}
.ya6{bottom:796.336950px;}
.y13e{bottom:798.835800px;}
.ye{bottom:799.208400px;}
.y10b{bottom:805.179450px;}
.y3f{bottom:812.534700px;}
.ya5{bottom:812.536950px;}
.y13d{bottom:815.035800px;}
.yd{bottom:815.408400px;}
.y10a{bottom:821.379450px;}
.y3e{bottom:828.734700px;}
.ya4{bottom:828.736950px;}
.y3d{bottom:844.934700px;}
.ya3{bottom:844.936950px;}
.yc{bottom:853.208400px;}
.y3c{bottom:861.134700px;}
.yb9{bottom:861.136950px;}
.y11c{bottom:870.233850px;}
.y3b{bottom:877.334700px;}
.ya2{bottom:877.336950px;}
.yb{bottom:883.312350px;}
.y11b{bottom:891.017850px;}
.y3a{bottom:893.534700px;}
.yb8{bottom:893.536950px;}
.y39{bottom:909.734700px;}
.ya1{bottom:909.736950px;}
.y11a{bottom:911.801850px;}
.ya{bottom:913.416300px;}
.y119{bottom:922.193850px;}
.y38{bottom:925.934700px;}
.ya0{bottom:925.936950px;}
.y37{bottom:942.134700px;}
.y9f{bottom:942.136950px;}
.y9{bottom:942.216300px;}
.y118{bottom:953.369850px;}
.y36{bottom:958.334700px;}
.y9e{bottom:958.336950px;}
.y117{bottom:963.761850px;}
.y8{bottom:971.016300px;}
.y35{bottom:974.534700px;}
.y9d{bottom:974.536950px;}
.y34{bottom:990.734700px;}
.y9c{bottom:990.736950px;}
.y116{bottom:994.937850px;}
.y115{bottom:1005.329850px;}
.y33{bottom:1006.934700px;}
.y9b{bottom:1006.936950px;}
.y32{bottom:1023.134700px;}
.y9a{bottom:1023.136950px;}
.y114{bottom:1036.505850px;}
.y31{bottom:1039.334700px;}
.y99{bottom:1039.336950px;}
.y29{bottom:1044.301200px;}
.y113{bottom:1046.897850px;}
.y30{bottom:1055.534700px;}
.y98{bottom:1055.536950px;}
.y2f{bottom:1071.734700px;}
.y97{bottom:1071.736950px;}
.y112{bottom:1078.073850px;}
.y2e{bottom:1087.934700px;}
.y96{bottom:1087.936950px;}
.y111{bottom:1088.465850px;}
.y2d{bottom:1104.134700px;}
.y95{bottom:1104.136950px;}
.y2c{bottom:1139.182950px;}
.y2a{bottom:1139.902050px;}
.hd{height:34.546875px;}
.he{height:35.039062px;}
.h12{height:35.203125px;}
.hb{height:38.865234px;}
.h3{height:39.418945px;}
.h2{height:39.603516px;}
.hc{height:41.897461px;}
.ha{height:42.600000px;}
.h8{height:44.390625px;}
.h11{height:44.442825px;}
.h9{height:48.404297px;}
.h4{height:49.939453px;}
.h7{height:61.037109px;}
.h6{height:70.078125px;}
.h10{height:85.958625px;}
.h5{height:88.781250px;}
.hf{height:101.030625px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:46.771650px;}
.x2b{left:65.595150px;}
.x2{left:68.034150px;}
.x32{left:70.324050px;}
.x2c{left:71.931150px;}
.x2f{left:75.423150px;}
.x30{left:77.749950px;}
.x2a{left:83.295150px;}
.x31{left:86.269950px;}
.xa{left:89.293950px;}
.x2d{left:101.307150px;}
.x33{left:102.520050px;}
.x34{left:128.608050px;}
.x2e{left:139.071150px;}
.xc{left:140.494200px;}
.xf{left:153.238200px;}
.xd{left:154.786200px;}
.xe{left:162.070200px;}
.x29{left:165.795150px;}
.x35{left:171.063900px;}
.x3e{left:173.019900px;}
.x3d{left:175.947900px;}
.x3b{left:180.555900px;}
.x41{left:184.899900px;}
.x3f{left:186.291900px;}
.x3c{left:191.139900px;}
.x40{left:193.947900px;}
.x42{left:196.299900px;}
.x46{left:202.584450px;}
.x17{left:212.583300px;}
.x6{left:219.609900px;}
.x43{left:241.488450px;}
.x18{left:249.291300px;}
.x7{left:270.869400px;}
.x19{left:289.131300px;}
.x37{left:312.723900px;}
.x1a{left:330.687300px;}
.x36{left:338.451900px;}
.x1b{left:364.167300px;}
.x38{left:369.567900px;}
.x45{left:371.616450px;}
.x1c{left:394.731300px;}
.x44{left:408.216450px;}
.x1d{left:430.767300px;}
.x1e{left:460.683300px;}
.x3{left:463.462650px;}
.x13{left:478.524600px;}
.x4{left:484.725150px;}
.x12{left:487.104600px;}
.x14{left:494.064600px;}
.x8{left:505.989600px;}
.x5{left:524.821050px;}
.x1f{left:528.207300px;}
.x3a{left:549.231900px;}
.x20{left:557.211300px;}
.xb{left:560.010150px;}
.x39{left:574.959900px;}
.x11{left:583.018200px;}
.x15{left:587.148600px;}
.x10{left:588.706200px;}
.x21{left:604.887300px;}
.x22{left:625.983300px;}
.x16{left:642.060600px;}
.x23{left:653.955300px;}
.x24{left:684.123300px;}
.x25{left:715.011300px;}
.x26{left:751.155300px;}
.x27{left:787.551300px;}
.x28{left:823.035300px;}
.x9{left:825.891600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.949333pt;}
.v1{vertical-align:50.346667pt;}
.ls2{letter-spacing:-2.133333pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.720000pt;}
.ls15{letter-spacing:0.912000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls4{letter-spacing:3.604800pt;}
.lsc{letter-spacing:44.245333pt;}
.lsb{letter-spacing:54.954667pt;}
.ls8{letter-spacing:60.373333pt;}
.ls11{letter-spacing:64.341333pt;}
.ls9{letter-spacing:75.818667pt;}
.ls10{letter-spacing:76.288000pt;}
.lsa{letter-spacing:86.954667pt;}
.ls13{letter-spacing:87.722667pt;}
.ls12{letter-spacing:87.931733pt;}
.lsf{letter-spacing:96.341333pt;}
.lsd{letter-spacing:102.357333pt;}
.lse{letter-spacing:108.288000pt;}
.ws28{word-spacing:-12.000000pt;}
.ws4b{word-spacing:-10.666667pt;}
.ws91{word-spacing:-2.640000pt;}
.wsd{word-spacing:-2.112000pt;}
.ws22{word-spacing:-1.920000pt;}
.ws94{word-spacing:-1.776000pt;}
.ws1d{word-spacing:-1.728000pt;}
.ws31{word-spacing:-1.632000pt;}
.wsf{word-spacing:-1.584000pt;}
.ws7d{word-spacing:-1.536000pt;}
.ws9{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.296000pt;}
.ws8c{word-spacing:-1.152000pt;}
.ws32{word-spacing:-0.960000pt;}
.ws93{word-spacing:-0.912000pt;}
.ws13{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.720000pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.336000pt;}
.ws46{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.096000pt;}
.ws8f{word-spacing:0.144000pt;}
.wse{word-spacing:0.240000pt;}
.ws15{word-spacing:0.384000pt;}
.ws60{word-spacing:0.480000pt;}
.ws44{word-spacing:0.576000pt;}
.ws12{word-spacing:0.768000pt;}
.ws5e{word-spacing:0.816000pt;}
.wsb{word-spacing:0.864000pt;}
.ws30{word-spacing:0.912000pt;}
.ws3{word-spacing:0.960000pt;}
.ws43{word-spacing:1.008000pt;}
.ws8d{word-spacing:1.056000pt;}
.ws26{word-spacing:1.104000pt;}
.ws7{word-spacing:1.200000pt;}
.ws24{word-spacing:1.248000pt;}
.ws5f{word-spacing:1.296000pt;}
.ws34{word-spacing:1.344000pt;}
.ws92{word-spacing:1.488000pt;}
.ws88{word-spacing:1.584000pt;}
.ws1{word-spacing:1.632000pt;}
.ws87{word-spacing:1.680000pt;}
.ws65{word-spacing:1.872000pt;}
.ws1e{word-spacing:1.920000pt;}
.ws1a{word-spacing:1.968000pt;}
.wsa{word-spacing:2.016000pt;}
.ws4{word-spacing:2.133333pt;}
.ws4a{word-spacing:2.304000pt;}
.ws8a{word-spacing:2.400000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws35{word-spacing:2.544000pt;}
.ws86{word-spacing:2.592000pt;}
.ws2f{word-spacing:2.880000pt;}
.ws5d{word-spacing:2.928000pt;}
.ws19{word-spacing:2.976000pt;}
.ws48{word-spacing:3.072000pt;}
.ws8e{word-spacing:3.216000pt;}
.ws2{word-spacing:3.264000pt;}
.ws18{word-spacing:3.408000pt;}
.ws89{word-spacing:3.504000pt;}
.ws2e{word-spacing:3.648000pt;}
.ws2c{word-spacing:3.696000pt;}
.ws8b{word-spacing:3.744000pt;}
.ws2a{word-spacing:3.888000pt;}
.ws25{word-spacing:4.176000pt;}
.ws61{word-spacing:4.560000pt;}
.ws38{word-spacing:4.704000pt;}
.ws36{word-spacing:4.896000pt;}
.ws63{word-spacing:4.944000pt;}
.ws1c{word-spacing:5.136000pt;}
.ws47{word-spacing:5.232000pt;}
.ws64{word-spacing:5.328000pt;}
.ws85{word-spacing:5.376000pt;}
.ws29{word-spacing:5.808000pt;}
.ws27{word-spacing:6.192000pt;}
.ws62{word-spacing:6.240000pt;}
.wsc{word-spacing:6.288000pt;}
.ws7c{word-spacing:6.336000pt;}
.ws42{word-spacing:6.432000pt;}
.ws90{word-spacing:6.912000pt;}
.ws6{word-spacing:7.248000pt;}
.ws37{word-spacing:7.680000pt;}
.ws1f{word-spacing:8.112000pt;}
.ws8{word-spacing:8.400000pt;}
.ws23{word-spacing:8.640000pt;}
.ws16{word-spacing:8.688000pt;}
.ws20{word-spacing:9.360000pt;}
.ws17{word-spacing:9.840000pt;}
.ws33{word-spacing:9.936000pt;}
.ws14{word-spacing:10.128000pt;}
.ws39{word-spacing:10.224000pt;}
.ws45{word-spacing:14.688000pt;}
.ws49{word-spacing:15.600000pt;}
.ws4e{word-spacing:33.578667pt;}
.ws54{word-spacing:35.626667pt;}
.ws57{word-spacing:36.693333pt;}
.ws69{word-spacing:39.168000pt;}
.ws6a{word-spacing:42.069333pt;}
.ws52{word-spacing:47.104000pt;}
.ws55{word-spacing:49.706667pt;}
.ws67{word-spacing:49.877333pt;}
.ws51{word-spacing:52.864000pt;}
.ws53{word-spacing:56.960000pt;}
.ws4f{word-spacing:59.648000pt;}
.ws59{word-spacing:65.152000pt;}
.ws56{word-spacing:72.277333pt;}
.ws5c{word-spacing:72.311467pt;}
.ws4c{word-spacing:72.320000pt;}
.ws50{word-spacing:75.946667pt;}
.ws58{word-spacing:85.674667pt;}
.ws4d{word-spacing:90.026667pt;}
.ws66{word-spacing:94.720000pt;}
.ws5a{word-spacing:97.152000pt;}
.ws68{word-spacing:117.717333pt;}
.ws5b{word-spacing:120.149333pt;}
.ws40{word-spacing:171.136000pt;}
.ws81{word-spacing:218.709333pt;}
.ws3d{word-spacing:226.858667pt;}
.ws84{word-spacing:240.042667pt;}
.ws3f{word-spacing:242.261333pt;}
.ws7e{word-spacing:246.314667pt;}
.ws3a{word-spacing:261.248000pt;}
.ws41{word-spacing:271.274667pt;}
.ws3e{word-spacing:325.034667pt;}
.ws3c{word-spacing:331.306667pt;}
.ws3b{word-spacing:416.938667pt;}
.ws7f{word-spacing:432.810667pt;}
.ws80{word-spacing:531.660800pt;}
.ws82{word-spacing:578.517333pt;}
.ws83{word-spacing:592.469333pt;}
.ws73{word-spacing:594.188800pt;}
.ws74{word-spacing:635.434667pt;}
.ws72{word-spacing:643.298133pt;}
.ws7a{word-spacing:645.764267pt;}
.ws6e{word-spacing:645.888000pt;}
.ws71{word-spacing:646.033067pt;}
.ws6f{word-spacing:649.382400pt;}
.ws79{word-spacing:664.661333pt;}
.ws70{word-spacing:665.130667pt;}
.ws78{word-spacing:677.674667pt;}
.ws6b{word-spacing:683.648000pt;}
.ws77{word-spacing:684.928000pt;}
.ws6d{word-spacing:699.946667pt;}
.ws75{word-spacing:703.974400pt;}
.ws7b{word-spacing:718.208000pt;}
.ws76{word-spacing:731.178667pt;}
.ws6c{word-spacing:742.400000pt;}
._7{margin-left:-12.691200pt;}
._5{margin-left:-11.491200pt;}
._d{margin-left:-7.555200pt;}
._c{margin-left:-6.326400pt;}
._6{margin-left:-4.378667pt;}
._3{margin-left:-2.976000pt;}
._1{margin-left:-1.291200pt;}
._4{width:0.950400pt;}
._0{width:1.987200pt;}
._2{width:3.427200pt;}
._8{width:4.896000pt;}
._b{width:5.875200pt;}
._a{width:6.969600pt;}
._e{width:8.097600pt;}
._9{width:9.259200pt;}
._f{width:10.310400pt;}
._12{width:13.027200pt;}
._11{width:14.131200pt;}
._10{width:15.600000pt;}
._14{width:20.822400pt;}
._15{width:23.918400pt;}
._5a{width:25.358400pt;}
._13{width:27.600000pt;}
._4c{width:44.416000pt;}
._3b{width:47.360000pt;}
._47{width:51.114667pt;}
._3f{width:52.480000pt;}
._2d{width:53.546667pt;}
._4a{width:55.040000pt;}
._4b{width:56.746667pt;}
._33{width:57.770667pt;}
._26{width:59.050667pt;}
._3a{width:60.160000pt;}
._43{width:61.354667pt;}
._2a{width:64.341333pt;}
._49{width:66.133333pt;}
._42{width:67.242667pt;}
._39{width:68.693333pt;}
._37{width:69.930667pt;}
._30{width:71.168000pt;}
._48{width:72.704000pt;}
._44{width:74.069333pt;}
._3c{width:75.008000pt;}
._2e{width:76.074667pt;}
._45{width:77.098667pt;}
._34{width:78.080000pt;}
._38{width:81.834667pt;}
._2f{width:83.968000pt;}
._27{width:85.546667pt;}
._32{width:86.613333pt;}
._23{width:87.722667pt;}
._2b{width:91.008000pt;}
._20{width:96.341333pt;}
._2c{width:97.834667pt;}
._29{width:100.693333pt;}
._25{width:102.357333pt;}
._35{width:103.594667pt;}
._40{width:104.490667pt;}
._36{width:105.386667pt;}
._3e{width:106.880000pt;}
._22{width:108.501333pt;}
._28{width:110.080000pt;}
._24{width:111.616000pt;}
._46{width:117.674667pt;}
._21{width:123.008000pt;}
._41{width:127.146667pt;}
._31{width:128.426667pt;}
._3d{width:131.626667pt;}
._19{width:143.061333pt;}
._4f{width:150.186667pt;}
._18{width:166.912000pt;}
._17{width:179.157333pt;}
._56{width:191.957333pt;}
._54{width:218.709333pt;}
._16{width:230.357333pt;}
._4e{width:246.357333pt;}
._57{width:250.709333pt;}
._1f{width:252.714667pt;}
._52{width:256.981333pt;}
._1a{width:279.466667pt;}
._1c{width:288.981333pt;}
._1b{width:309.034667pt;}
._1e{width:333.130667pt;}
._51{width:354.187200pt;}
._53{width:409.888000pt;}
._55{width:417.280000pt;}
._58{width:466.059200pt;}
._4d{width:619.093333pt;}
._50{width:862.293333pt;}
._1d{width:887.125333pt;}
._59{width:1120.810667pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:40.022267pt;}
.y165{bottom:73.648267pt;}
.y6c{bottom:74.253067pt;}
.y93{bottom:75.201067pt;}
.y13c{bottom:76.104933pt;}
.yd6{bottom:77.779467pt;}
.yd7{bottom:81.128800pt;}
.ycc{bottom:81.320800pt;}
.y109{bottom:81.738000pt;}
.y164{bottom:88.048267pt;}
.y6b{bottom:88.653067pt;}
.y92{bottom:89.601067pt;}
.y13b{bottom:90.504933pt;}
.y108{bottom:90.975333pt;}
.yd5{bottom:91.112800pt;}
.ycb{bottom:95.720800pt;}
.y163{bottom:102.448267pt;}
.y6a{bottom:103.053067pt;}
.y28{bottom:103.432400pt;}
.yd4{bottom:104.446133pt;}
.y13a{bottom:104.904933pt;}
.yca{bottom:110.120800pt;}
.y162{bottom:116.848267pt;}
.y69{bottom:117.453067pt;}
.y27{bottom:117.832400pt;}
.y91{bottom:118.401067pt;}
.y107{bottom:118.687333pt;}
.y139{bottom:119.304933pt;}
.y105{bottom:121.524667pt;}
.yd3{bottom:122.920800pt;}
.yc9{bottom:124.520800pt;}
.y161{bottom:131.248267pt;}
.y68{bottom:131.853067pt;}
.y90{bottom:132.801067pt;}
.y138{bottom:133.704933pt;}
.y104{bottom:134.324667pt;}
.y106{bottom:137.162000pt;}
.yd2{bottom:137.320800pt;}
.yc8{bottom:138.920800pt;}
.y160{bottom:145.648267pt;}
.y67{bottom:146.253067pt;}
.y8f{bottom:147.201067pt;}
.y137{bottom:148.104933pt;}
.yc7{bottom:153.320800pt;}
.y103{bottom:155.625067pt;}
.y6{bottom:156.155333pt;}
.yd1{bottom:159.716800pt;}
.y15f{bottom:160.048267pt;}
.y66{bottom:160.653067pt;}
.y8e{bottom:161.601067pt;}
.y136{bottom:162.504933pt;}
.y102{bottom:164.862400pt;}
.yc6{bottom:167.720800pt;}
.y6d{bottom:169.830533pt;}
.y5{bottom:170.555333pt;}
.yd0{bottom:174.116800pt;}
.y15e{bottom:174.448267pt;}
.y65{bottom:175.053067pt;}
.y8d{bottom:176.001067pt;}
.y135{bottom:176.904933pt;}
.yc5{bottom:182.120800pt;}
.y4{bottom:184.955333pt;}
.ycf{bottom:188.516800pt;}
.y15d{bottom:188.848267pt;}
.y64{bottom:189.453067pt;}
.y8c{bottom:190.401067pt;}
.y134{bottom:191.304933pt;}
.y101{bottom:192.574400pt;}
.yff{bottom:195.411733pt;}
.yc4{bottom:196.520800pt;}
.y3{bottom:199.355333pt;}
.yce{bottom:202.916800pt;}
.y15c{bottom:203.248267pt;}
.y63{bottom:203.853067pt;}
.y8b{bottom:204.801067pt;}
.y133{bottom:205.704933pt;}
.yfe{bottom:208.211733pt;}
.yc3{bottom:210.920800pt;}
.y100{bottom:211.049067pt;}
.y2{bottom:213.755333pt;}
.y15b{bottom:217.648267pt;}
.y62{bottom:218.253067pt;}
.y8a{bottom:219.201067pt;}
.ycd{bottom:225.320800pt;}
.y7{bottom:228.155333pt;}
.yfd{bottom:229.523733pt;}
.y15a{bottom:232.048267pt;}
.y61{bottom:232.653067pt;}
.y89{bottom:233.601067pt;}
.y132{bottom:236.538133pt;}
.yfc{bottom:238.761067pt;}
.yc2{bottom:239.720800pt;}
.y1{bottom:242.555333pt;}
.y159{bottom:246.448267pt;}
.y60{bottom:247.053067pt;}
.y88{bottom:248.001067pt;}
.y131{bottom:255.012800pt;}
.y158{bottom:260.848267pt;}
.y5f{bottom:261.453067pt;}
.y87{bottom:262.401067pt;}
.yfb{bottom:266.473067pt;}
.yf9{bottom:269.310400pt;}
.y130{bottom:273.487467pt;}
.y157{bottom:275.248267pt;}
.y5e{bottom:275.853067pt;}
.y86{bottom:276.801067pt;}
.yc1{bottom:279.736400pt;}
.yf8{bottom:282.110400pt;}
.yfa{bottom:284.947733pt;}
.y156{bottom:289.648267pt;}
.y5d{bottom:290.253067pt;}
.y85{bottom:291.201067pt;}
.y12f{bottom:291.962133pt;}
.yc0{bottom:298.211067pt;}
.yf7{bottom:303.422400pt;}
.y155{bottom:304.048267pt;}
.y5c{bottom:304.653067pt;}
.y84{bottom:305.601067pt;}
.y26{bottom:307.648400pt;}
.y12e{bottom:310.436800pt;}
.yf6{bottom:312.659733pt;}
.ybf{bottom:317.368400pt;}
.y154{bottom:318.448267pt;}
.y5b{bottom:319.053067pt;}
.y83{bottom:320.001067pt;}
.y12d{bottom:328.911467pt;}
.y153{bottom:332.848267pt;}
.y5a{bottom:333.453067pt;}
.y82{bottom:334.401067pt;}
.y25{bottom:336.448400pt;}
.ybe{bottom:338.627067pt;}
.yf5{bottom:340.371733pt;}
.y152{bottom:347.248267pt;}
.y12c{bottom:347.386133pt;}
.y59{bottom:347.853067pt;}
.y81{bottom:348.801067pt;}
.yf4{bottom:349.609067pt;}
.y24{bottom:350.848400pt;}
.ybd{bottom:359.416400pt;}
.y151{bottom:361.648267pt;}
.y58{bottom:362.253067pt;}
.y80{bottom:363.201067pt;}
.y23{bottom:365.248400pt;}
.y12b{bottom:365.860800pt;}
.y150{bottom:376.048267pt;}
.y57{bottom:376.653067pt;}
.yf3{bottom:377.321067pt;}
.y7f{bottom:377.601067pt;}
.y22{bottom:379.648400pt;}
.ybc{bottom:382.445733pt;}
.y12a{bottom:384.335467pt;}
.yf2{bottom:386.558400pt;}
.y14f{bottom:390.448267pt;}
.y56{bottom:391.053067pt;}
.y7e{bottom:392.001067pt;}
.y21{bottom:394.048400pt;}
.y129{bottom:402.810133pt;}
.y14e{bottom:404.848267pt;}
.y55{bottom:405.453067pt;}
.y7d{bottom:406.401067pt;}
.y20{bottom:408.448400pt;}
.yf1{bottom:414.270400pt;}
.y14d{bottom:419.248267pt;}
.y54{bottom:419.853067pt;}
.ybb{bottom:419.997467pt;}
.y7c{bottom:420.801067pt;}
.y128{bottom:421.284800pt;}
.y1f{bottom:422.848400pt;}
.yf0{bottom:423.507733pt;}
.y53{bottom:434.253067pt;}
.yba{bottom:434.397467pt;}
.y7b{bottom:435.201067pt;}
.y1e{bottom:437.248400pt;}
.y127{bottom:439.759467pt;}
.y52{bottom:448.653067pt;}
.y7a{bottom:449.601067pt;}
.yef{bottom:451.219733pt;}
.y1d{bottom:451.648400pt;}
.y14c{bottom:454.696533pt;}
.y126{bottom:458.234133pt;}
.yee{bottom:460.457067pt;}
.y51{bottom:463.053067pt;}
.yb7{bottom:463.055067pt;}
.y79{bottom:464.001067pt;}
.y1c{bottom:466.048400pt;}
.y14b{bottom:473.171200pt;}
.y125{bottom:476.708800pt;}
.y50{bottom:477.453067pt;}
.yb6{bottom:477.455067pt;}
.y78{bottom:478.401067pt;}
.y1b{bottom:480.448400pt;}
.y14a{bottom:491.645867pt;}
.y4f{bottom:491.853067pt;}
.yb5{bottom:491.855067pt;}
.ye2{bottom:492.740667pt;}
.y77{bottom:492.801067pt;}
.y124{bottom:495.183467pt;}
.y1a{bottom:502.407467pt;}
.ye9{bottom:502.500667pt;}
.yed{bottom:504.239333pt;}
.y4e{bottom:506.253067pt;}
.yb4{bottom:506.255067pt;}
.ye3{bottom:506.543333pt;}
.y76{bottom:507.201067pt;}
.ydb{bottom:509.114000pt;}
.y149{bottom:510.120533pt;}
.yde{bottom:511.727333pt;}
.y123{bottom:513.658133pt;}
.yda{bottom:517.306000pt;}
.y19{bottom:520.007467pt;}
.ye7{bottom:520.015333pt;}
.y4d{bottom:520.653067pt;}
.yb3{bottom:520.655067pt;}
.ye8{bottom:521.103333pt;}
.y75{bottom:521.601067pt;}
.ye0{bottom:523.311333pt;}
.yec{bottom:523.556667pt;}
.ye1{bottom:524.975333pt;}
.yeb{bottom:524.996667pt;}
.ye4{bottom:526.874000pt;}
.ye6{bottom:527.290000pt;}
.y148{bottom:528.595200pt;}
.ye5{bottom:530.724667pt;}
.ydc{bottom:531.247333pt;}
.y122{bottom:532.132800pt;}
.yea{bottom:533.220667pt;}
.ydd{bottom:533.679333pt;}
.y4c{bottom:535.053067pt;}
.yb2{bottom:535.055067pt;}
.y74{bottom:536.001067pt;}
.ydf{bottom:543.460667pt;}
.y147{bottom:547.069867pt;}
.y4b{bottom:549.453067pt;}
.yb1{bottom:549.455067pt;}
.y73{bottom:550.401067pt;}
.y121{bottom:550.607467pt;}
.y18{bottom:552.007467pt;}
.y4a{bottom:563.853067pt;}
.yb0{bottom:563.855067pt;}
.y72{bottom:564.801067pt;}
.y146{bottom:565.544533pt;}
.y11f{bottom:566.607467pt;}
.y49{bottom:578.253067pt;}
.yaf{bottom:578.255067pt;}
.y71{bottom:579.201067pt;}
.y17{bottom:580.807467pt;}
.y120{bottom:582.607467pt;}
.y145{bottom:584.019200pt;}
.yd9{bottom:587.363333pt;}
.y48{bottom:592.653067pt;}
.yae{bottom:592.655067pt;}
.y70{bottom:593.601067pt;}
.y16{bottom:595.207467pt;}
.yd8{bottom:600.696667pt;}
.y11e{bottom:601.402533pt;}
.y144{bottom:602.493867pt;}
.y47{bottom:607.053067pt;}
.yad{bottom:607.055067pt;}
.y6f{bottom:608.001067pt;}
.y15{bottom:609.607467pt;}
.y11d{bottom:615.802533pt;}
.y143{bottom:620.968533pt;}
.y46{bottom:621.453067pt;}
.yac{bottom:621.455067pt;}
.y6e{bottom:622.401067pt;}
.y14{bottom:624.007467pt;}
.y45{bottom:635.853067pt;}
.yab{bottom:635.855067pt;}
.y13{bottom:638.407467pt;}
.y142{bottom:639.443200pt;}
.y110{bottom:643.715067pt;}
.y94{bottom:648.885600pt;}
.y44{bottom:650.253067pt;}
.yaa{bottom:650.255067pt;}
.y12{bottom:652.807467pt;}
.y10f{bottom:658.115067pt;}
.y141{bottom:661.576533pt;}
.y43{bottom:664.653067pt;}
.ya9{bottom:664.655067pt;}
.y11{bottom:667.207467pt;}
.y13f{bottom:670.909867pt;}
.y10e{bottom:672.515067pt;}
.y42{bottom:679.053067pt;}
.ya8{bottom:679.055067pt;}
.y10{bottom:681.607467pt;}
.y140{bottom:683.709867pt;}
.y10d{bottom:686.915067pt;}
.y41{bottom:693.453067pt;}
.ya7{bottom:693.455067pt;}
.yf{bottom:696.007467pt;}
.y10c{bottom:701.315067pt;}
.y40{bottom:707.853067pt;}
.ya6{bottom:707.855067pt;}
.y13e{bottom:710.076267pt;}
.ye{bottom:710.407467pt;}
.y10b{bottom:715.715067pt;}
.y3f{bottom:722.253067pt;}
.ya5{bottom:722.255067pt;}
.y13d{bottom:724.476267pt;}
.yd{bottom:724.807467pt;}
.y10a{bottom:730.115067pt;}
.y3e{bottom:736.653067pt;}
.ya4{bottom:736.655067pt;}
.y3d{bottom:751.053067pt;}
.ya3{bottom:751.055067pt;}
.yc{bottom:758.407467pt;}
.y3c{bottom:765.453067pt;}
.yb9{bottom:765.455067pt;}
.y11c{bottom:773.541200pt;}
.y3b{bottom:779.853067pt;}
.ya2{bottom:779.855067pt;}
.yb{bottom:785.166533pt;}
.y11b{bottom:792.015867pt;}
.y3a{bottom:794.253067pt;}
.yb8{bottom:794.255067pt;}
.y39{bottom:808.653067pt;}
.ya1{bottom:808.655067pt;}
.y11a{bottom:810.490533pt;}
.ya{bottom:811.925600pt;}
.y119{bottom:819.727867pt;}
.y38{bottom:823.053067pt;}
.ya0{bottom:823.055067pt;}
.y37{bottom:837.453067pt;}
.y9f{bottom:837.455067pt;}
.y9{bottom:837.525600pt;}
.y118{bottom:847.439867pt;}
.y36{bottom:851.853067pt;}
.y9e{bottom:851.855067pt;}
.y117{bottom:856.677200pt;}
.y8{bottom:863.125600pt;}
.y35{bottom:866.253067pt;}
.y9d{bottom:866.255067pt;}
.y34{bottom:880.653067pt;}
.y9c{bottom:880.655067pt;}
.y116{bottom:884.389200pt;}
.y115{bottom:893.626533pt;}
.y33{bottom:895.053067pt;}
.y9b{bottom:895.055067pt;}
.y32{bottom:909.453067pt;}
.y9a{bottom:909.455067pt;}
.y114{bottom:921.338533pt;}
.y31{bottom:923.853067pt;}
.y99{bottom:923.855067pt;}
.y29{bottom:928.267733pt;}
.y113{bottom:930.575867pt;}
.y30{bottom:938.253067pt;}
.y98{bottom:938.255067pt;}
.y2f{bottom:952.653067pt;}
.y97{bottom:952.655067pt;}
.y112{bottom:958.287867pt;}
.y2e{bottom:967.053067pt;}
.y96{bottom:967.055067pt;}
.y111{bottom:967.525200pt;}
.y2d{bottom:981.453067pt;}
.y95{bottom:981.455067pt;}
.y2c{bottom:1012.607067pt;}
.y2a{bottom:1013.246267pt;}
.hd{height:30.708333pt;}
.he{height:31.145833pt;}
.h12{height:31.291667pt;}
.hb{height:34.546875pt;}
.h3{height:35.039062pt;}
.h2{height:35.203125pt;}
.hc{height:37.242188pt;}
.ha{height:37.866667pt;}
.h8{height:39.458333pt;}
.h11{height:39.504733pt;}
.h9{height:43.026042pt;}
.h4{height:44.390625pt;}
.h7{height:54.255208pt;}
.h6{height:62.291667pt;}
.h10{height:76.407667pt;}
.h5{height:78.916667pt;}
.hf{height:89.805000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.574800pt;}
.x2b{left:58.306800pt;}
.x2{left:60.474800pt;}
.x32{left:62.510267pt;}
.x2c{left:63.938800pt;}
.x2f{left:67.042800pt;}
.x30{left:69.111067pt;}
.x2a{left:74.040133pt;}
.x31{left:76.684400pt;}
.xa{left:79.372400pt;}
.x2d{left:90.050800pt;}
.x33{left:91.128933pt;}
.x34{left:114.318267pt;}
.x2e{left:123.618800pt;}
.xc{left:124.883733pt;}
.xf{left:136.211733pt;}
.xd{left:137.587733pt;}
.xe{left:144.062400pt;}
.x29{left:147.373467pt;}
.x35{left:152.056800pt;}
.x3e{left:153.795467pt;}
.x3d{left:156.398133pt;}
.x3b{left:160.494133pt;}
.x41{left:164.355467pt;}
.x3f{left:165.592800pt;}
.x3c{left:169.902133pt;}
.x40{left:172.398133pt;}
.x42{left:174.488800pt;}
.x46{left:180.075067pt;}
.x17{left:188.962933pt;}
.x6{left:195.208800pt;}
.x43{left:214.656400pt;}
.x18{left:221.592267pt;}
.x7{left:240.772800pt;}
.x19{left:257.005600pt;}
.x37{left:277.976800pt;}
.x1a{left:293.944267pt;}
.x36{left:300.846133pt;}
.x1b{left:323.704267pt;}
.x38{left:328.504800pt;}
.x45{left:330.325733pt;}
.x1c{left:350.872267pt;}
.x44{left:362.859067pt;}
.x1d{left:382.904267pt;}
.x1e{left:409.496267pt;}
.x3{left:411.966800pt;}
.x13{left:425.355200pt;}
.x4{left:430.866800pt;}
.x12{left:432.981867pt;}
.x14{left:439.168533pt;}
.x8{left:449.768533pt;}
.x5{left:466.507600pt;}
.x1f{left:469.517600pt;}
.x3a{left:488.206133pt;}
.x20{left:495.298933pt;}
.xb{left:497.786800pt;}
.x39{left:511.075467pt;}
.x11{left:518.238400pt;}
.x15{left:521.909867pt;}
.x10{left:523.294400pt;}
.x21{left:537.677600pt;}
.x22{left:556.429600pt;}
.x16{left:570.720533pt;}
.x23{left:581.293600pt;}
.x24{left:608.109600pt;}
.x25{left:635.565600pt;}
.x26{left:667.693600pt;}
.x27{left:700.045600pt;}
.x28{left:731.586933pt;}
.x9{left:734.125867pt;}
}




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