
    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_b886024eeb3531d95ceb8004.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_f014aad528c0e84e109673af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.184000;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_23dc54a134cc93f61a914a9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_ab9a0c182159484024c7ae88.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.732000;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_3c10accaa9586f0ebf4a0b1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123000;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_d4b66b9e91ac66cffe36f85c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.175000;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_f014aad528c0e84e109673af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184000;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_fee718eaf4a4317c12cd2ad6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.175000;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_505ab06824b6efb1e1628a39.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.123000;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_9ddc131037951c4cb5527b5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.123000;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_5179edf923997d25e54a26ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_f553a509fc345c135cd94529.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c91b548fdf7ae458f81edee1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.931000;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;}
.m1{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,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);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.932600px;}
.ls3{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.420000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000096px;}
.lsb{letter-spacing:0.000120px;}
.ls5{letter-spacing:0.000600px;}
.ls14{letter-spacing:0.001200px;}
.ls12{letter-spacing:0.002400px;}
.ls13{letter-spacing:0.012600px;}
.ls15{letter-spacing:0.013200px;}
.lsf{letter-spacing:0.019800px;}
.ls16{letter-spacing:0.021000px;}
.ls11{letter-spacing:0.028200px;}
.ls17{letter-spacing:0.030000px;}
.ls10{letter-spacing:0.030600px;}
.lsd{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.600000px;}
.ls9{letter-spacing:1.200000px;}
.ls6{letter-spacing:11.028600px;}
.ls1{letter-spacing:685.920000px;}
.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;}
}
.ws90{word-spacing:-17.280000px;}
.ws35{word-spacing:-16.680000px;}
.wsab{word-spacing:-15.960000px;}
.ws2{word-spacing:-15.012000px;}
.wsd8{word-spacing:-11.676000px;}
.ws3{word-spacing:-10.508400px;}
.ws1{word-spacing:-9.936000px;}
.wsd0{word-spacing:-9.724440px;}
.ws17{word-spacing:-7.020000px;}
.ws24{word-spacing:-5.520000px;}
.wsde{word-spacing:-5.160000px;}
.wsdc{word-spacing:-4.740000px;}
.wsdf{word-spacing:-4.620000px;}
.wse6{word-spacing:-4.440000px;}
.ws4c{word-spacing:-3.300000px;}
.ws6b{word-spacing:-3.240000px;}
.ws13{word-spacing:-3.180000px;}
.ws63{word-spacing:-3.120000px;}
.wsc6{word-spacing:-3.060000px;}
.ws32{word-spacing:-3.000000px;}
.ws2f{word-spacing:-2.940000px;}
.wsa6{word-spacing:-2.820000px;}
.ws81{word-spacing:-2.640000px;}
.wsce{word-spacing:-2.580000px;}
.ws37{word-spacing:-2.520000px;}
.ws98{word-spacing:-2.460000px;}
.ws4f{word-spacing:-2.400000px;}
.ws3b{word-spacing:-2.340000px;}
.ws7{word-spacing:-2.280000px;}
.ws84{word-spacing:-2.220000px;}
.ws25{word-spacing:-2.160000px;}
.ws8b{word-spacing:-2.100000px;}
.ws7c{word-spacing:-2.040000px;}
.ws6e{word-spacing:-1.980000px;}
.ws94{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.860000px;}
.ws56{word-spacing:-1.800000px;}
.ws49{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws6a{word-spacing:-1.620000px;}
.ws9b{word-spacing:-1.560000px;}
.ws5{word-spacing:-1.500000px;}
.ws99{word-spacing:-1.440000px;}
.ws79{word-spacing:-1.380000px;}
.ws5d{word-spacing:-1.320000px;}
.ws4{word-spacing:-1.260000px;}
.ws73{word-spacing:-1.200000px;}
.ws39{word-spacing:-1.140000px;}
.ws92{word-spacing:-1.080000px;}
.wsd1{word-spacing:-1.020000px;}
.ws6{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.900000px;}
.ws80{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.780000px;}
.ws2c{word-spacing:-0.720000px;}
.ws91{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.540000px;}
.ws15{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.420000px;}
.ws71{word-spacing:-0.360000px;}
.ws16{word-spacing:-0.336000px;}
.wse{word-spacing:-0.300000px;}
.ws76{word-spacing:-0.240000px;}
.ws70{word-spacing:-0.180000px;}
.wsc4{word-spacing:-0.120000px;}
.ws48{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsa7{word-spacing:0.060000px;}
.wsd9{word-spacing:0.096000px;}
.ws95{word-spacing:0.120000px;}
.ws78{word-spacing:0.180000px;}
.ws28{word-spacing:0.240000px;}
.ws3c{word-spacing:0.300000px;}
.ws30{word-spacing:0.360000px;}
.ws66{word-spacing:0.420000px;}
.ws64{word-spacing:0.480000px;}
.ws5e{word-spacing:0.540000px;}
.ws57{word-spacing:0.600000px;}
.ws46{word-spacing:0.660000px;}
.ws12{word-spacing:0.780000px;}
.ws5c{word-spacing:0.840000px;}
.wsaa{word-spacing:0.900000px;}
.ws2a{word-spacing:0.960000px;}
.wsf{word-spacing:1.020000px;}
.ws19{word-spacing:1.080000px;}
.ws65{word-spacing:1.140000px;}
.ws23{word-spacing:1.200000px;}
.ws58{word-spacing:1.260000px;}
.ws82{word-spacing:1.320000px;}
.wsc9{word-spacing:1.380000px;}
.ws14{word-spacing:1.440000px;}
.ws45{word-spacing:1.500000px;}
.ws86{word-spacing:1.560000px;}
.ws41{word-spacing:1.620000px;}
.ws77{word-spacing:1.680000px;}
.wsc2{word-spacing:1.740000px;}
.ws10{word-spacing:1.800000px;}
.ws59{word-spacing:1.860000px;}
.ws3e{word-spacing:1.920000px;}
.ws47{word-spacing:1.980000px;}
.ws67{word-spacing:2.040000px;}
.ws1f{word-spacing:2.100000px;}
.ws52{word-spacing:2.160000px;}
.ws22{word-spacing:2.280000px;}
.ws75{word-spacing:2.340000px;}
.ws72{word-spacing:2.400000px;}
.ws1b{word-spacing:2.460000px;}
.ws38{word-spacing:2.520000px;}
.wsa8{word-spacing:2.580000px;}
.wsb6{word-spacing:2.640000px;}
.ws8{word-spacing:2.700000px;}
.ws42{word-spacing:2.760000px;}
.ws2d{word-spacing:2.820000px;}
.ws5b{word-spacing:2.880000px;}
.ws68{word-spacing:2.940000px;}
.ws83{word-spacing:3.000000px;}
.ws29{word-spacing:3.060000px;}
.ws7f{word-spacing:3.120000px;}
.ws50{word-spacing:3.180000px;}
.ws62{word-spacing:3.240000px;}
.wsc{word-spacing:3.300000px;}
.ws20{word-spacing:3.360000px;}
.ws2e{word-spacing:3.420000px;}
.ws97{word-spacing:3.480000px;}
.ws51{word-spacing:3.540000px;}
.ws7a{word-spacing:3.600000px;}
.wscd{word-spacing:3.660000px;}
.ws7b{word-spacing:3.720000px;}
.wsb5{word-spacing:3.780000px;}
.ws53{word-spacing:3.840000px;}
.ws6c{word-spacing:3.900000px;}
.ws5f{word-spacing:3.960000px;}
.ws55{word-spacing:4.020000px;}
.ws8f{word-spacing:4.080000px;}
.ws6d{word-spacing:4.140000px;}
.wsb{word-spacing:4.200000px;}
.ws5a{word-spacing:4.260000px;}
.ws69{word-spacing:4.320000px;}
.ws34{word-spacing:4.380000px;}
.ws36{word-spacing:4.440000px;}
.ws21{word-spacing:4.500000px;}
.ws61{word-spacing:4.560000px;}
.ws8e{word-spacing:4.620000px;}
.ws4a{word-spacing:4.740000px;}
.wsa9{word-spacing:4.800000px;}
.ws8c{word-spacing:4.920000px;}
.wsca{word-spacing:4.980000px;}
.ws1c{word-spacing:5.040000px;}
.ws8d{word-spacing:5.100000px;}
.ws6f{word-spacing:5.160000px;}
.wsbe{word-spacing:5.220000px;}
.ws1a{word-spacing:5.280000px;}
.ws26{word-spacing:5.340000px;}
.ws4d{word-spacing:5.400000px;}
.ws3a{word-spacing:5.460000px;}
.ws88{word-spacing:5.580000px;}
.wsc5{word-spacing:5.640000px;}
.wsb8{word-spacing:5.700000px;}
.ws4e{word-spacing:5.760000px;}
.wsc1{word-spacing:5.820000px;}
.ws74{word-spacing:5.880000px;}
.ws4b{word-spacing:5.940000px;}
.wsd4{word-spacing:6.000000px;}
.ws44{word-spacing:6.060000px;}
.ws11{word-spacing:6.180000px;}
.wsba{word-spacing:6.240000px;}
.ws93{word-spacing:6.420000px;}
.ws43{word-spacing:6.480000px;}
.ws96{word-spacing:6.600000px;}
.wsda{word-spacing:6.720000px;}
.ws31{word-spacing:6.840000px;}
.ws9a{word-spacing:6.900000px;}
.wsd3{word-spacing:7.080000px;}
.ws3f{word-spacing:7.140000px;}
.ws40{word-spacing:7.200000px;}
.ws2b{word-spacing:7.260000px;}
.wsd5{word-spacing:7.320000px;}
.wsc3{word-spacing:7.380000px;}
.wsb7{word-spacing:7.440000px;}
.ws8a{word-spacing:7.500000px;}
.wsd7{word-spacing:7.560000px;}
.wsd2{word-spacing:7.680000px;}
.wsc8{word-spacing:7.740000px;}
.wscc{word-spacing:7.920000px;}
.wse2{word-spacing:8.040000px;}
.ws9{word-spacing:8.160000px;}
.ws54{word-spacing:8.220000px;}
.wsa5{word-spacing:8.400000px;}
.ws60{word-spacing:8.580000px;}
.ws87{word-spacing:8.640000px;}
.wsb3{word-spacing:8.760000px;}
.wsc0{word-spacing:8.820000px;}
.wsd6{word-spacing:8.940000px;}
.wsa0{word-spacing:9.060000px;}
.wscf{word-spacing:9.180000px;}
.wsc7{word-spacing:9.240000px;}
.wse1{word-spacing:9.300000px;}
.ws7e{word-spacing:9.360000px;}
.ws85{word-spacing:9.420000px;}
.ws9e{word-spacing:9.540000px;}
.wsa1{word-spacing:9.600000px;}
.ws89{word-spacing:9.660000px;}
.wsbf{word-spacing:9.900000px;}
.ws7d{word-spacing:9.960000px;}
.wsaf{word-spacing:10.200000px;}
.wsb2{word-spacing:10.260000px;}
.wsb4{word-spacing:10.560000px;}
.wse0{word-spacing:10.620000px;}
.wsac{word-spacing:10.920000px;}
.wsa4{word-spacing:11.220000px;}
.wsbc{word-spacing:12.660000px;}
.wsdb{word-spacing:12.960000px;}
.wsbb{word-spacing:13.680000px;}
.wse3{word-spacing:13.740000px;}
.wsb9{word-spacing:14.100000px;}
.wscb{word-spacing:14.460000px;}
.wse4{word-spacing:14.700000px;}
.wse5{word-spacing:16.200000px;}
.wsdd{word-spacing:16.620000px;}
.wsb1{word-spacing:17.160000px;}
.wsae{word-spacing:18.420000px;}
.ws9c{word-spacing:19.380000px;}
.wsa2{word-spacing:19.500000px;}
.wsb0{word-spacing:20.100000px;}
.ws9f{word-spacing:20.460000px;}
.ws9d{word-spacing:26.160000px;}
.wsa3{word-spacing:27.180000px;}
.wsbd{word-spacing:30.840000px;}
.ws18{word-spacing:31.320000px;}
.wsad{word-spacing:33.960000px;}
._a{margin-left:-56.496000px;}
._1{margin-left:-9.914400px;}
._c{margin-left:-7.948800px;}
._d{margin-left:-6.496800px;}
._3{margin-left:-5.260800px;}
._5{margin-left:-4.065600px;}
._0{margin-left:-2.592000px;}
._4{margin-left:-1.147200px;}
._7{width:1.778400px;}
._e{width:3.840600px;}
._9{width:5.691600px;}
._2{width:9.936000px;}
._b{width:39.024000px;}
._6{width:63.168000px;}
._8{width:685.895400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(88,88,90);}
.fsa{font-size:27.984000px;}
.fs8{font-size:34.980000px;}
.fs6{font-size:37.800000px;}
.fsb{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:55.504200px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:69.852300px;}
.y1{bottom:122.812350px;}
.y1de{bottom:127.468200px;}
.y205{bottom:127.618200px;}
.y281{bottom:128.954700px;}
.ycf{bottom:130.258200px;}
.y55{bottom:131.236350px;}
.ye7{bottom:131.278200px;}
.y79{bottom:132.221550px;}
.y1a8{bottom:134.381850px;}
.y11b{bottom:135.502350px;}
.y178{bottom:135.508200px;}
.yfa{bottom:135.523200px;}
.y27{bottom:136.388700px;}
.y146{bottom:136.625850px;}
.y9a{bottom:137.688900px;}
.y248{bottom:137.826750px;}
.y1b5{bottom:138.751950px;}
.y206{bottom:139.814850px;}
.y190{bottom:141.748200px;}
.y237{bottom:144.703200px;}
.y134{bottom:144.998250px;}
.y1dd{bottom:145.768200px;}
.y204{bottom:146.053200px;}
.y280{bottom:146.961600px;}
.yce{bottom:148.258200px;}
.y54{bottom:149.236350px;}
.ye6{bottom:149.278200px;}
.y1a7{bottom:149.381850px;}
.y78{bottom:150.221550px;}
.y26{bottom:151.388700px;}
.y11a{bottom:153.502350px;}
.y177{bottom:153.508200px;}
.yf9{bottom:153.523200px;}
.y164{bottom:154.528200px;}
.y247{bottom:156.822750px;}
.y18f{bottom:159.748200px;}
.y7{bottom:161.292000px;}
.y236{bottom:162.703200px;}
.y1dc{bottom:164.068200px;}
.ycd{bottom:166.258200px;}
.y53{bottom:167.236350px;}
.y133{bottom:167.243250px;}
.ye5{bottom:167.278200px;}
.y77{bottom:168.221550px;}
.y203{bottom:168.733200px;}
.y27f{bottom:169.206600px;}
.y119{bottom:171.502350px;}
.y163{bottom:172.528200px;}
.y176{bottom:175.753200px;}
.yf8{bottom:175.768200px;}
.y235{bottom:180.703200px;}
.y18e{bottom:181.993200px;}
.y1db{bottom:182.368200px;}
.y52{bottom:185.236350px;}
.y132{bottom:185.243250px;}
.y76{bottom:186.221550px;}
.y202{bottom:187.168200px;}
.y27e{bottom:187.206600px;}
.ycc{bottom:188.503200px;}
.y145{bottom:189.481350px;}
.y118{bottom:189.502350px;}
.ye4{bottom:189.523200px;}
.y21b{bottom:190.485300px;}
.y162{bottom:190.528200px;}
.y175{bottom:193.753200px;}
.yf7{bottom:193.768200px;}
.y25f{bottom:195.710550px;}
.y1b4{bottom:197.992200px;}
.y6{bottom:198.600000px;}
.y234{bottom:198.703200px;}
.yb2{bottom:198.997200px;}
.y18d{bottom:199.993200px;}
.y51{bottom:203.236350px;}
.y75{bottom:204.221550px;}
.y1da{bottom:204.913200px;}
.y27d{bottom:205.213650px;}
.y201{bottom:205.603200px;}
.ycb{bottom:206.503200px;}
.y99{bottom:207.481350px;}
.y131{bottom:207.488250px;}
.y117{bottom:207.502350px;}
.ye3{bottom:207.523200px;}
.y21a{bottom:208.485300px;}
.y25{bottom:208.690950px;}
.y174{bottom:211.753200px;}
.yf6{bottom:211.768200px;}
.y161{bottom:212.773200px;}
.y25e{bottom:213.710550px;}
.y1b3{bottom:215.992200px;}
.y233{bottom:216.703200px;}
.yb1{bottom:216.997200px;}
.y18c{bottom:217.993200px;}
.y50{bottom:221.236350px;}
.y1d9{bottom:223.213200px;}
.y200{bottom:224.038200px;}
.yca{bottom:224.503200px;}
.y98{bottom:225.481350px;}
.y130{bottom:225.488250px;}
.y116{bottom:225.502350px;}
.ye2{bottom:225.523200px;}
.y74{bottom:226.466550px;}
.y219{bottom:226.485300px;}
.y24{bottom:226.690950px;}
.y27c{bottom:227.458650px;}
.yf5{bottom:229.768200px;}
.y160{bottom:230.773200px;}
.y25d{bottom:231.710550px;}
.y1b2{bottom:233.992200px;}
.y173{bottom:233.998200px;}
.y232{bottom:234.703200px;}
.yb0{bottom:234.997200px;}
.y5{bottom:235.908000px;}
.y18b{bottom:235.993200px;}
.y4f{bottom:239.236350px;}
.y1d8{bottom:241.513200px;}
.y1ff{bottom:242.473200px;}
.yc9{bottom:242.503200px;}
.y97{bottom:243.481350px;}
.y12f{bottom:243.488250px;}
.y115{bottom:243.502350px;}
.ye1{bottom:243.523200px;}
.y218{bottom:244.485300px;}
.y23{bottom:244.690950px;}
.y27b{bottom:245.465550px;}
.y144{bottom:247.753200px;}
.yf4{bottom:247.768200px;}
.y73{bottom:248.743200px;}
.y1a6{bottom:248.773200px;}
.y25c{bottom:249.717450px;}
.y1b1{bottom:251.992200px;}
.y172{bottom:251.998200px;}
.y231{bottom:252.703200px;}
.yaf{bottom:252.997200px;}
.y15f{bottom:253.018200px;}
.y18a{bottom:253.993200px;}
.y4e{bottom:257.236350px;}
.y1d7{bottom:259.813200px;}
.yc8{bottom:260.503200px;}
.y1fe{bottom:260.908200px;}
.y96{bottom:261.481350px;}
.y12e{bottom:261.488250px;}
.y114{bottom:261.502350px;}
.y246{bottom:261.523200px;}
.y217{bottom:262.485300px;}
.y22{bottom:262.690950px;}
.y143{bottom:265.753200px;}
.ye0{bottom:265.768200px;}
.y1a5{bottom:266.773200px;}
.yd{bottom:267.077100px;}
.y27a{bottom:267.710550px;}
.y1b0{bottom:269.992200px;}
.y171{bottom:269.998200px;}
.y15e{bottom:271.018200px;}
.y25b{bottom:271.962450px;}
.y189{bottom:271.993200px;}
.y4d{bottom:275.236350px;}
.yae{bottom:275.242200px;}
.y1d6{bottom:278.113200px;}
.yc7{bottom:278.503200px;}
.y1fd{bottom:279.343200px;}
.y95{bottom:279.481350px;}
.y12d{bottom:279.488250px;}
.y113{bottom:279.502350px;}
.y245{bottom:279.523200px;}
.y216{bottom:280.485300px;}
.y21{bottom:280.690950px;}
.y142{bottom:283.753200px;}
.ydf{bottom:283.768200px;}
.y1a4{bottom:284.773200px;}
.y279{bottom:285.717450px;}
.y1af{bottom:287.992200px;}
.y170{bottom:287.998200px;}
.yf3{bottom:288.013200px;}
.y15d{bottom:289.018200px;}
.y25a{bottom:289.962450px;}
.yc{bottom:292.929000px;}
.y4c{bottom:293.236350px;}
.yad{bottom:293.242200px;}
.y72{bottom:293.248200px;}
.y188{bottom:294.238200px;}
.y1d5{bottom:296.413200px;}
.yc6{bottom:296.503200px;}
.y230{bottom:297.208200px;}
.y94{bottom:297.481350px;}
.y12c{bottom:297.488250px;}
.y244{bottom:297.523200px;}
.y1fc{bottom:297.778200px;}
.y20{bottom:298.690950px;}
.y112{bottom:301.747350px;}
.y141{bottom:301.753200px;}
.yde{bottom:301.768200px;}
.y1a3{bottom:302.773200px;}
.y16f{bottom:305.998200px;}
.yf2{bottom:306.013200px;}
.y215{bottom:306.990300px;}
.y15c{bottom:307.018200px;}
.y259{bottom:307.962450px;}
.y1ae{bottom:310.237200px;}
.y4b{bottom:311.236350px;}
.yac{bottom:311.242200px;}
.y71{bottom:311.248200px;}
.y187{bottom:312.238200px;}
.yc5{bottom:314.503200px;}
.y1d4{bottom:314.713200px;}
.y93{bottom:315.481350px;}
.y12b{bottom:315.488250px;}
.y1fb{bottom:316.213200px;}
.y1f{bottom:316.690950px;}
.yb{bottom:318.781050px;}
.y111{bottom:319.747350px;}
.y140{bottom:319.753200px;}
.ydd{bottom:319.768200px;}
.y16e{bottom:323.998200px;}
.yf1{bottom:324.013200px;}
.y15b{bottom:325.018200px;}
.y258{bottom:325.969500px;}
.y278{bottom:325.976550px;}
.y1ad{bottom:328.237200px;}
.y214{bottom:329.235300px;}
.y70{bottom:329.248200px;}
.yc4{bottom:332.503200px;}
.y1d3{bottom:333.013200px;}
.y4a{bottom:333.481350px;}
.y12a{bottom:333.488250px;}
.y186{bottom:334.483200px;}
.y1fa{bottom:334.648200px;}
.y1e{bottom:334.690950px;}
.y92{bottom:337.726350px;}
.y110{bottom:337.747350px;}
.ydc{bottom:337.768200px;}
.y22f{bottom:341.713200px;}
.y13f{bottom:341.998200px;}
.yf0{bottom:342.013200px;}
.y15a{bottom:343.018200px;}
.ya{bottom:344.632950px;}
.y213{bottom:347.235300px;}
.y6f{bottom:347.248200px;}
.y257{bottom:348.214500px;}
.y277{bottom:348.221550px;}
.y1ac{bottom:350.503200px;}
.y1d2{bottom:351.313200px;}
.y49{bottom:351.481350px;}
.y129{bottom:351.488250px;}
.y185{bottom:352.483200px;}
.yc3{bottom:354.748200px;}
.yab{bottom:355.747200px;}
.y10f{bottom:355.747350px;}
.y243{bottom:355.768200px;}
.y1d{bottom:356.935950px;}
.y1f9{bottom:357.328200px;}
.y22e{bottom:359.713200px;}
.ydb{bottom:360.013200px;}
.y159{bottom:361.018200px;}
.y13e{bottom:364.243200px;}
.yef{bottom:364.258200px;}
.y212{bottom:365.235300px;}
.y6e{bottom:365.248200px;}
.y256{bottom:366.221550px;}
.y1ab{bottom:368.503200px;}
.y48{bottom:369.481350px;}
.y128{bottom:369.488250px;}
.y9{bottom:370.476000px;}
.y184{bottom:370.483200px;}
.yc2{bottom:372.748200px;}
.yaa{bottom:373.747200px;}
.y10e{bottom:373.747350px;}
.y242{bottom:373.768200px;}
.y1d1{bottom:373.858200px;}
.y1c{bottom:374.935950px;}
.y1f8{bottom:375.763200px;}
.y22d{bottom:377.713200px;}
.yda{bottom:378.013200px;}
.y158{bottom:379.018200px;}
.y91{bottom:382.237200px;}
.y13d{bottom:382.243200px;}
.yee{bottom:382.258200px;}
.y6d{bottom:383.248200px;}
.y1aa{bottom:386.503200px;}
.y211{bottom:387.480300px;}
.y47{bottom:387.481350px;}
.y255{bottom:388.466550px;}
.yc1{bottom:390.748200px;}
.y8{bottom:390.924000px;}
.y127{bottom:391.733250px;}
.ya9{bottom:391.747200px;}
.y10d{bottom:391.747350px;}
.y241{bottom:391.768200px;}
.y1d0{bottom:392.158200px;}
.y183{bottom:392.728200px;}
.y1b{bottom:392.935950px;}
.y1f7{bottom:394.198200px;}
.y22c{bottom:395.713200px;}
.yd9{bottom:396.013200px;}
.y157{bottom:397.018200px;}
.y90{bottom:400.237200px;}
.yed{bottom:400.258200px;}
.y6c{bottom:401.248200px;}
.y13c{bottom:404.488200px;}
.y1a9{bottom:404.503200px;}
.y210{bottom:405.480300px;}
.y46{bottom:405.481350px;}
.y254{bottom:406.466550px;}
.y276{bottom:406.473450px;}
.yc0{bottom:408.748200px;}
.y126{bottom:409.733250px;}
.ya8{bottom:409.747200px;}
.y10c{bottom:409.747350px;}
.y240{bottom:409.768200px;}
.y1cf{bottom:410.458200px;}
.y182{bottom:410.728200px;}
.y1a{bottom:410.935950px;}
.y1f6{bottom:412.633200px;}
.y22b{bottom:413.713200px;}
.yd8{bottom:414.013200px;}
.y156{bottom:415.018200px;}
.y8f{bottom:418.237200px;}
.y6b{bottom:419.248200px;}
.yec{bottom:422.503200px;}
.y20f{bottom:423.480300px;}
.y45{bottom:423.481350px;}
.y253{bottom:424.473450px;}
.ybf{bottom:426.748200px;}
.y125{bottom:427.733250px;}
.ya7{bottom:427.747200px;}
.y10b{bottom:427.747350px;}
.y275{bottom:428.718450px;}
.y1ce{bottom:428.758200px;}
.y19{bottom:428.935950px;}
.y22a{bottom:431.713200px;}
.y23f{bottom:432.013200px;}
.y181{bottom:432.973200px;}
.y155{bottom:433.018200px;}
.y1f5{bottom:435.313200px;}
.y8e{bottom:436.237200px;}
.yd7{bottom:436.258200px;}
.y6a{bottom:437.248200px;}
.yeb{bottom:440.503200px;}
.y20e{bottom:441.480300px;}
.y44{bottom:441.481350px;}
.ybe{bottom:444.748200px;}
.y124{bottom:445.733250px;}
.ya6{bottom:445.747200px;}
.y10a{bottom:445.747350px;}
.y252{bottom:446.718450px;}
.y274{bottom:446.725350px;}
.y18{bottom:446.935950px;}
.y13b{bottom:448.993200px;}
.y229{bottom:449.713200px;}
.y23e{bottom:450.013200px;}
.y180{bottom:450.973200px;}
.y1cd{bottom:451.303200px;}
.y1f4{bottom:453.748200px;}
.y8d{bottom:454.237200px;}
.yd6{bottom:454.258200px;}
.y69{bottom:455.248200px;}
.y154{bottom:455.263200px;}
.yea{bottom:458.503200px;}
.y20d{bottom:459.480300px;}
.y43{bottom:459.481350px;}
.ybd{bottom:462.748200px;}
.ya5{bottom:463.747200px;}
.y109{bottom:463.747350px;}
.y251{bottom:464.718450px;}
.y17{bottom:464.935950px;}
.y13a{bottom:466.993200px;}
.y123{bottom:467.978250px;}
.y23d{bottom:468.013200px;}
.y17f{bottom:468.973200px;}
.y273{bottom:468.977400px;}
.y1cc{bottom:469.603200px;}
.y1f3{bottom:472.183200px;}
.y8c{bottom:472.237200px;}
.yd5{bottom:472.258200px;}
.y68{bottom:473.248200px;}
.y153{bottom:473.263200px;}
.ye9{bottom:476.503200px;}
.y20c{bottom:477.480300px;}
.y42{bottom:477.481350px;}
.ybc{bottom:480.748200px;}
.y250{bottom:482.725350px;}
.y228{bottom:484.723200px;}
.y139{bottom:484.993200px;}
.ya4{bottom:485.992200px;}
.y108{bottom:485.992350px;}
.y23c{bottom:486.013200px;}
.y17e{bottom:486.973200px;}
.y16{bottom:487.180950px;}
.y1cb{bottom:487.903200px;}
.y8b{bottom:490.237200px;}
.yd4{bottom:490.258200px;}
.y1f2{bottom:490.618200px;}
.y272{bottom:491.222400px;}
.y67{bottom:491.248200px;}
.y152{bottom:491.263200px;}
.ye8{bottom:494.503200px;}
.y20b{bottom:495.480300px;}
.y41{bottom:495.481350px;}
.y1a2{bottom:495.508200px;}
.ybb{bottom:498.748200px;}
.y227{bottom:502.723200px;}
.y138{bottom:502.993200px;}
.y107{bottom:503.992350px;}
.y23b{bottom:504.013200px;}
.y24f{bottom:504.970350px;}
.y15{bottom:505.180950px;}
.y1ca{bottom:506.203200px;}
.y8a{bottom:508.237200px;}
.y1f1{bottom:509.053200px;}
.y271{bottom:509.229300px;}
.yd3{bottom:512.503200px;}
.y20a{bottom:513.480300px;}
.y40{bottom:513.481350px;}
.y66{bottom:513.493200px;}
.y151{bottom:513.508200px;}
.yba{bottom:516.748200px;}
.y137{bottom:520.993200px;}
.y17d{bottom:521.983200px;}
.y106{bottom:521.992350px;}
.y23a{bottom:522.013200px;}
.y24e{bottom:522.984300px;}
.y14{bottom:523.180950px;}
.y1c9{bottom:524.503200px;}
.ya3{bottom:526.237200px;}
.y1f0{bottom:527.488200px;}
.y89{bottom:530.482200px;}
.yd2{bottom:530.503200px;}
.y270{bottom:531.474300px;}
.y3f{bottom:531.481350px;}
.y65{bottom:531.493200px;}
.y226{bottom:533.473200px;}
.yb9{bottom:534.748200px;}
.y150{bottom:535.753200px;}
.y136{bottom:538.993200px;}
.y17c{bottom:539.983200px;}
.y105{bottom:539.992350px;}
.y239{bottom:540.013200px;}
.y1c8{bottom:542.803200px;}
.ya2{bottom:544.237200px;}
.y209{bottom:544.243200px;}
.y24d{bottom:545.229300px;}
.yd1{bottom:548.503200px;}
.y26f{bottom:549.474300px;}
.y64{bottom:549.493200px;}
.y1ef{bottom:550.168200px;}
.y225{bottom:551.473200px;}
.yb8{bottom:552.748200px;}
.y3e{bottom:553.726350px;}
.y135{bottom:556.993200px;}
.y104{bottom:557.992350px;}
.y1a1{bottom:557.998200px;}
.y17b{bottom:560.916450px;}
.y1c7{bottom:561.103200px;}
.ya1{bottom:562.237200px;}
.y208{bottom:562.243200px;}
.y238{bottom:562.258200px;}
.y24c{bottom:563.229300px;}
.yd0{bottom:566.503200px;}
.y26e{bottom:567.481350px;}
.y63{bottom:567.493200px;}
.y13{bottom:567.685950px;}
.y1ee{bottom:568.603200px;}
.yb7{bottom:570.748200px;}
.y3d{bottom:571.738200px;}
.y88{bottom:574.993200px;}
.y17a{bottom:575.316450px;}
.y103{bottom:575.992350px;}
.y1a0{bottom:575.998200px;}
.y16d{bottom:579.238200px;}
.y207{bottom:580.243200px;}
.y14f{bottom:580.258200px;}
.y1c6{bottom:583.648200px;}
.ya0{bottom:584.503200px;}
.y24b{bottom:585.474300px;}
.y62{bottom:585.493200px;}
.y12{bottom:585.685950px;}
.y224{bottom:586.483200px;}
.y1ed{bottom:587.038200px;}
.yb6{bottom:588.748200px;}
.y179{bottom:589.716450px;}
.y26d{bottom:589.726350px;}
.y87{bottom:592.993200px;}
.y102{bottom:593.992350px;}
.y16c{bottom:597.238200px;}
.y19f{bottom:598.243200px;}
.y14e{bottom:598.258200px;}
.y1c5{bottom:601.948200px;}
.y9f{bottom:602.503200px;}
.y24a{bottom:603.479100px;}
.y61{bottom:603.493200px;}
.y11{bottom:603.685950px;}
.y223{bottom:604.483200px;}
.y148{bottom:605.080350px;}
.yb5{bottom:606.748200px;}
.y26c{bottom:607.726350px;}
.y1ec{bottom:609.718200px;}
.y86{bottom:610.993200px;}
.y16b{bottom:615.238200px;}
.y101{bottom:616.237350px;}
.y3c{bottom:616.243200px;}
.y14d{bottom:616.258200px;}
.y147{bottom:619.480350px;}
.y1c4{bottom:620.248200px;}
.y9e{bottom:620.503200px;}
.y10{bottom:621.685950px;}
.y222{bottom:622.483200px;}
.yb4{bottom:624.748200px;}
.y26b{bottom:625.726350px;}
.y60{bottom:625.738200px;}
.y4{bottom:627.324750px;}
.y85{bottom:628.993200px;}
.y16a{bottom:633.238200px;}
.y100{bottom:634.237350px;}
.y19e{bottom:634.243200px;}
.y14c{bottom:634.258200px;}
.y9d{bottom:638.503200px;}
.y1c3{bottom:638.548200px;}
.y221{bottom:640.483200px;}
.yb3{bottom:642.748200px;}
.y26a{bottom:643.733250px;}
.y5f{bottom:643.738200px;}
.y84{bottom:646.993200px;}
.y249{bottom:647.984100px;}
.y169{bottom:651.238200px;}
.yff{bottom:652.237350px;}
.y19d{bottom:652.243200px;}
.y14b{bottom:652.258200px;}
.y1eb{bottom:655.093200px;}
.y122{bottom:656.503200px;}
.y1c2{bottom:656.848200px;}
.y3b{bottom:660.748200px;}
.y192{bottom:661.418850px;}
.y5e{bottom:661.738200px;}
.y83{bottom:664.993200px;}
.y269{bottom:665.978250px;}
.yf{bottom:666.190950px;}
.y168{bottom:669.238200px;}
.yfe{bottom:670.237350px;}
.y19c{bottom:670.243200px;}
.y220{bottom:671.233200px;}
.y1ea{bottom:673.528200px;}
.y121{bottom:674.503200px;}
.y1c1{bottom:675.148200px;}
.y191{bottom:675.818850px;}
.y3a{bottom:678.748200px;}
.y5d{bottom:679.738200px;}
.y82{bottom:682.993200px;}
.y268{bottom:683.985300px;}
.y3{bottom:684.924750px;}
.y167{bottom:687.238200px;}
.yfd{bottom:688.237350px;}
.y19b{bottom:688.243200px;}
.y21f{bottom:689.233200px;}
.y1e9{bottom:691.963200px;}
.y14a{bottom:692.503200px;}
.y1c0{bottom:693.448200px;}
.y39{bottom:696.748200px;}
.y5c{bottom:697.738200px;}
.y81{bottom:700.993200px;}
.y2c{bottom:704.405700px;}
.y166{bottom:705.238200px;}
.y267{bottom:706.230300px;}
.yfc{bottom:706.237350px;}
.y19a{bottom:706.243200px;}
.y21e{bottom:707.233200px;}
.y1e8{bottom:710.398200px;}
.y149{bottom:710.503200px;}
.y38{bottom:714.748200px;}
.y1bf{bottom:715.993200px;}
.y2{bottom:717.324750px;}
.y80{bottom:718.993200px;}
.y5b{bottom:719.983200px;}
.y165{bottom:723.238200px;}
.y266{bottom:724.237200px;}
.y199{bottom:724.243200px;}
.y2b{bottom:726.650700px;}
.yfb{bottom:728.482350px;}
.y1e7{bottom:728.833200px;}
.y37{bottom:732.748200px;}
.y1be{bottom:734.293200px;}
.y9c{bottom:736.993200px;}
.y21d{bottom:737.983200px;}
.y7f{bottom:741.238200px;}
.y5a{bottom:742.228200px;}
.y265{bottom:746.482200px;}
.y198{bottom:746.488200px;}
.y1e6{bottom:747.268200px;}
.y36{bottom:750.748200px;}
.y1bd{bottom:752.593200px;}
.y9b{bottom:754.993200px;}
.y21c{bottom:755.983200px;}
.y7e{bottom:759.238200px;}
.y197{bottom:764.488200px;}
.y264{bottom:764.489100px;}
.y2a{bottom:765.910500px;}
.y120{bottom:768.748200px;}
.y1e5{bottom:769.948200px;}
.y1bc{bottom:770.893200px;}
.y35{bottom:772.993200px;}
.y7d{bottom:777.238200px;}
.y196{bottom:782.488200px;}
.y59{bottom:786.733200px;}
.y263{bottom:786.741150px;}
.y11f{bottom:786.748200px;}
.y1e4{bottom:788.383200px;}
.y1bb{bottom:789.193200px;}
.y34{bottom:790.993200px;}
.y7c{bottom:795.238200px;}
.y29{bottom:798.310500px;}
.y195{bottom:800.488200px;}
.y58{bottom:804.733200px;}
.y11e{bottom:804.748200px;}
.y1e3{bottom:806.818200px;}
.y1ba{bottom:807.493200px;}
.y262{bottom:808.986150px;}
.y33{bottom:808.993200px;}
.y7b{bottom:813.238200px;}
.y194{bottom:822.733200px;}
.y11d{bottom:822.748200px;}
.y1e2{bottom:825.253200px;}
.y1b9{bottom:825.793200px;}
.y261{bottom:826.986150px;}
.y32{bottom:826.993200px;}
.y28{bottom:830.710500px;}
.y7a{bottom:831.238200px;}
.y193{bottom:840.733200px;}
.y1e1{bottom:843.688200px;}
.y1b8{bottom:844.093200px;}
.y260{bottom:844.986150px;}
.y31{bottom:844.993200px;}
.y57{bottom:849.238200px;}
.y1b7{bottom:862.393200px;}
.y30{bottom:862.993200px;}
.y1e0{bottom:866.368200px;}
.y56{bottom:867.238200px;}
.y11c{bottom:880.993200px;}
.y1df{bottom:884.803200px;}
.y1b6{bottom:884.938200px;}
.y2f{bottom:885.238200px;}
.y2e{bottom:903.238200px;}
.y2d{bottom:955.355250px;}
.hc{height:27.407400px;}
.hb{height:27.408000px;}
.h2{height:39.019453px;}
.h5{height:43.392000px;}
.ha{height:48.816000px;}
.h6{height:50.400000px;}
.h7{height:54.240000px;}
.h8{height:54.780000px;}
.h4{height:86.784000px;}
.h9{height:97.632000px;}
.h3{height:98.604000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:85.039350px;}
.x2{left:89.803800px;}
.x10{left:94.315350px;}
.x5{left:106.299150px;}
.x14{left:117.184650px;}
.x7{left:119.059350px;}
.xc{left:129.053850px;}
.xa{left:140.319150px;}
.xd{left:150.313800px;}
.x8{left:160.850700px;}
.xb{left:163.370100px;}
.x3{left:165.754800px;}
.x4{left:186.672450px;}
.x9{left:306.377700px;}
.x11{left:338.377350px;}
.x12{left:373.777350px;}
.x1{left:388.945650px;}
.x13{left:393.901350px;}
.xf{left:421.102200px;}
.xe{left:455.122200px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.717867pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.373333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000085pt;}
.lsb{letter-spacing:0.000107pt;}
.ls5{letter-spacing:0.000533pt;}
.ls14{letter-spacing:0.001067pt;}
.ls12{letter-spacing:0.002133pt;}
.ls13{letter-spacing:0.011200pt;}
.ls15{letter-spacing:0.011733pt;}
.lsf{letter-spacing:0.017600pt;}
.ls16{letter-spacing:0.018667pt;}
.ls11{letter-spacing:0.025067pt;}
.ls17{letter-spacing:0.026667pt;}
.ls10{letter-spacing:0.027200pt;}
.lsd{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.533333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls6{letter-spacing:9.803200pt;}
.ls1{letter-spacing:609.706667pt;}
.ws90{word-spacing:-15.360000pt;}
.ws35{word-spacing:-14.826667pt;}
.wsab{word-spacing:-14.186667pt;}
.ws2{word-spacing:-13.344000pt;}
.wsd8{word-spacing:-10.378667pt;}
.ws3{word-spacing:-9.340800pt;}
.ws1{word-spacing:-8.832000pt;}
.wsd0{word-spacing:-8.643947pt;}
.ws17{word-spacing:-6.240000pt;}
.ws24{word-spacing:-4.906667pt;}
.wsde{word-spacing:-4.586667pt;}
.wsdc{word-spacing:-4.213333pt;}
.wsdf{word-spacing:-4.106667pt;}
.wse6{word-spacing:-3.946667pt;}
.ws4c{word-spacing:-2.933333pt;}
.ws6b{word-spacing:-2.880000pt;}
.ws13{word-spacing:-2.826667pt;}
.ws63{word-spacing:-2.773333pt;}
.wsc6{word-spacing:-2.720000pt;}
.ws32{word-spacing:-2.666667pt;}
.ws2f{word-spacing:-2.613333pt;}
.wsa6{word-spacing:-2.506667pt;}
.ws81{word-spacing:-2.346667pt;}
.wsce{word-spacing:-2.293333pt;}
.ws37{word-spacing:-2.240000pt;}
.ws98{word-spacing:-2.186667pt;}
.ws4f{word-spacing:-2.133333pt;}
.ws3b{word-spacing:-2.080000pt;}
.ws7{word-spacing:-2.026667pt;}
.ws84{word-spacing:-1.973333pt;}
.ws25{word-spacing:-1.920000pt;}
.ws8b{word-spacing:-1.866667pt;}
.ws7c{word-spacing:-1.813333pt;}
.ws6e{word-spacing:-1.760000pt;}
.ws94{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.653333pt;}
.ws56{word-spacing:-1.600000pt;}
.ws49{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws6a{word-spacing:-1.440000pt;}
.ws9b{word-spacing:-1.386667pt;}
.ws5{word-spacing:-1.333333pt;}
.ws99{word-spacing:-1.280000pt;}
.ws79{word-spacing:-1.226667pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws4{word-spacing:-1.120000pt;}
.ws73{word-spacing:-1.066667pt;}
.ws39{word-spacing:-1.013333pt;}
.ws92{word-spacing:-0.960000pt;}
.wsd1{word-spacing:-0.906667pt;}
.ws6{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.800000pt;}
.ws80{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.693333pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws91{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws15{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws71{word-spacing:-0.320000pt;}
.ws16{word-spacing:-0.298667pt;}
.wse{word-spacing:-0.266667pt;}
.ws76{word-spacing:-0.213333pt;}
.ws70{word-spacing:-0.160000pt;}
.wsc4{word-spacing:-0.106667pt;}
.ws48{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.053333pt;}
.wsd9{word-spacing:0.085333pt;}
.ws95{word-spacing:0.106667pt;}
.ws78{word-spacing:0.160000pt;}
.ws28{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.266667pt;}
.ws30{word-spacing:0.320000pt;}
.ws66{word-spacing:0.373333pt;}
.ws64{word-spacing:0.426667pt;}
.ws5e{word-spacing:0.480000pt;}
.ws57{word-spacing:0.533333pt;}
.ws46{word-spacing:0.586667pt;}
.ws12{word-spacing:0.693333pt;}
.ws5c{word-spacing:0.746667pt;}
.wsaa{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.853333pt;}
.wsf{word-spacing:0.906667pt;}
.ws19{word-spacing:0.960000pt;}
.ws65{word-spacing:1.013333pt;}
.ws23{word-spacing:1.066667pt;}
.ws58{word-spacing:1.120000pt;}
.ws82{word-spacing:1.173333pt;}
.wsc9{word-spacing:1.226667pt;}
.ws14{word-spacing:1.280000pt;}
.ws45{word-spacing:1.333333pt;}
.ws86{word-spacing:1.386667pt;}
.ws41{word-spacing:1.440000pt;}
.ws77{word-spacing:1.493333pt;}
.wsc2{word-spacing:1.546667pt;}
.ws10{word-spacing:1.600000pt;}
.ws59{word-spacing:1.653333pt;}
.ws3e{word-spacing:1.706667pt;}
.ws47{word-spacing:1.760000pt;}
.ws67{word-spacing:1.813333pt;}
.ws1f{word-spacing:1.866667pt;}
.ws52{word-spacing:1.920000pt;}
.ws22{word-spacing:2.026667pt;}
.ws75{word-spacing:2.080000pt;}
.ws72{word-spacing:2.133333pt;}
.ws1b{word-spacing:2.186667pt;}
.ws38{word-spacing:2.240000pt;}
.wsa8{word-spacing:2.293333pt;}
.wsb6{word-spacing:2.346667pt;}
.ws8{word-spacing:2.400000pt;}
.ws42{word-spacing:2.453333pt;}
.ws2d{word-spacing:2.506667pt;}
.ws5b{word-spacing:2.560000pt;}
.ws68{word-spacing:2.613333pt;}
.ws83{word-spacing:2.666667pt;}
.ws29{word-spacing:2.720000pt;}
.ws7f{word-spacing:2.773333pt;}
.ws50{word-spacing:2.826667pt;}
.ws62{word-spacing:2.880000pt;}
.wsc{word-spacing:2.933333pt;}
.ws20{word-spacing:2.986667pt;}
.ws2e{word-spacing:3.040000pt;}
.ws97{word-spacing:3.093333pt;}
.ws51{word-spacing:3.146667pt;}
.ws7a{word-spacing:3.200000pt;}
.wscd{word-spacing:3.253333pt;}
.ws7b{word-spacing:3.306667pt;}
.wsb5{word-spacing:3.360000pt;}
.ws53{word-spacing:3.413333pt;}
.ws6c{word-spacing:3.466667pt;}
.ws5f{word-spacing:3.520000pt;}
.ws55{word-spacing:3.573333pt;}
.ws8f{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.680000pt;}
.wsb{word-spacing:3.733333pt;}
.ws5a{word-spacing:3.786667pt;}
.ws69{word-spacing:3.840000pt;}
.ws34{word-spacing:3.893333pt;}
.ws36{word-spacing:3.946667pt;}
.ws21{word-spacing:4.000000pt;}
.ws61{word-spacing:4.053333pt;}
.ws8e{word-spacing:4.106667pt;}
.ws4a{word-spacing:4.213333pt;}
.wsa9{word-spacing:4.266667pt;}
.ws8c{word-spacing:4.373333pt;}
.wsca{word-spacing:4.426667pt;}
.ws1c{word-spacing:4.480000pt;}
.ws8d{word-spacing:4.533333pt;}
.ws6f{word-spacing:4.586667pt;}
.wsbe{word-spacing:4.640000pt;}
.ws1a{word-spacing:4.693333pt;}
.ws26{word-spacing:4.746667pt;}
.ws4d{word-spacing:4.800000pt;}
.ws3a{word-spacing:4.853333pt;}
.ws88{word-spacing:4.960000pt;}
.wsc5{word-spacing:5.013333pt;}
.wsb8{word-spacing:5.066667pt;}
.ws4e{word-spacing:5.120000pt;}
.wsc1{word-spacing:5.173333pt;}
.ws74{word-spacing:5.226667pt;}
.ws4b{word-spacing:5.280000pt;}
.wsd4{word-spacing:5.333333pt;}
.ws44{word-spacing:5.386667pt;}
.ws11{word-spacing:5.493333pt;}
.wsba{word-spacing:5.546667pt;}
.ws93{word-spacing:5.706667pt;}
.ws43{word-spacing:5.760000pt;}
.ws96{word-spacing:5.866667pt;}
.wsda{word-spacing:5.973333pt;}
.ws31{word-spacing:6.080000pt;}
.ws9a{word-spacing:6.133333pt;}
.wsd3{word-spacing:6.293333pt;}
.ws3f{word-spacing:6.346667pt;}
.ws40{word-spacing:6.400000pt;}
.ws2b{word-spacing:6.453333pt;}
.wsd5{word-spacing:6.506667pt;}
.wsc3{word-spacing:6.560000pt;}
.wsb7{word-spacing:6.613333pt;}
.ws8a{word-spacing:6.666667pt;}
.wsd7{word-spacing:6.720000pt;}
.wsd2{word-spacing:6.826667pt;}
.wsc8{word-spacing:6.880000pt;}
.wscc{word-spacing:7.040000pt;}
.wse2{word-spacing:7.146667pt;}
.ws9{word-spacing:7.253333pt;}
.ws54{word-spacing:7.306667pt;}
.wsa5{word-spacing:7.466667pt;}
.ws60{word-spacing:7.626667pt;}
.ws87{word-spacing:7.680000pt;}
.wsb3{word-spacing:7.786667pt;}
.wsc0{word-spacing:7.840000pt;}
.wsd6{word-spacing:7.946667pt;}
.wsa0{word-spacing:8.053333pt;}
.wscf{word-spacing:8.160000pt;}
.wsc7{word-spacing:8.213333pt;}
.wse1{word-spacing:8.266667pt;}
.ws7e{word-spacing:8.320000pt;}
.ws85{word-spacing:8.373333pt;}
.ws9e{word-spacing:8.480000pt;}
.wsa1{word-spacing:8.533333pt;}
.ws89{word-spacing:8.586667pt;}
.wsbf{word-spacing:8.800000pt;}
.ws7d{word-spacing:8.853333pt;}
.wsaf{word-spacing:9.066667pt;}
.wsb2{word-spacing:9.120000pt;}
.wsb4{word-spacing:9.386667pt;}
.wse0{word-spacing:9.440000pt;}
.wsac{word-spacing:9.706667pt;}
.wsa4{word-spacing:9.973333pt;}
.wsbc{word-spacing:11.253333pt;}
.wsdb{word-spacing:11.520000pt;}
.wsbb{word-spacing:12.160000pt;}
.wse3{word-spacing:12.213333pt;}
.wsb9{word-spacing:12.533333pt;}
.wscb{word-spacing:12.853333pt;}
.wse4{word-spacing:13.066667pt;}
.wse5{word-spacing:14.400000pt;}
.wsdd{word-spacing:14.773333pt;}
.wsb1{word-spacing:15.253333pt;}
.wsae{word-spacing:16.373333pt;}
.ws9c{word-spacing:17.226667pt;}
.wsa2{word-spacing:17.333333pt;}
.wsb0{word-spacing:17.866667pt;}
.ws9f{word-spacing:18.186667pt;}
.ws9d{word-spacing:23.253333pt;}
.wsa3{word-spacing:24.160000pt;}
.wsbd{word-spacing:27.413333pt;}
.ws18{word-spacing:27.840000pt;}
.wsad{word-spacing:30.186667pt;}
._a{margin-left:-50.218667pt;}
._1{margin-left:-8.812800pt;}
._c{margin-left:-7.065600pt;}
._d{margin-left:-5.774933pt;}
._3{margin-left:-4.676267pt;}
._5{margin-left:-3.613867pt;}
._0{margin-left:-2.304000pt;}
._4{margin-left:-1.019733pt;}
._7{width:1.580800pt;}
._e{width:3.413867pt;}
._9{width:5.059200pt;}
._2{width:8.832000pt;}
._b{width:34.688000pt;}
._6{width:56.149333pt;}
._8{width:609.684800pt;}
.fsa{font-size:24.874667pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:33.600000pt;}
.fsb{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:49.337067pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:62.090933pt;}
.y1{bottom:109.166533pt;}
.y1de{bottom:113.305067pt;}
.y205{bottom:113.438400pt;}
.y281{bottom:114.626400pt;}
.ycf{bottom:115.785067pt;}
.y55{bottom:116.654533pt;}
.ye7{bottom:116.691733pt;}
.y79{bottom:117.530267pt;}
.y1a8{bottom:119.450533pt;}
.y11b{bottom:120.446533pt;}
.y178{bottom:120.451733pt;}
.yfa{bottom:120.465067pt;}
.y27{bottom:121.234400pt;}
.y146{bottom:121.445200pt;}
.y9a{bottom:122.390133pt;}
.y248{bottom:122.512667pt;}
.y1b5{bottom:123.335067pt;}
.y206{bottom:124.279867pt;}
.y190{bottom:125.998400pt;}
.y237{bottom:128.625067pt;}
.y134{bottom:128.887333pt;}
.y1dd{bottom:129.571733pt;}
.y204{bottom:129.825067pt;}
.y280{bottom:130.632533pt;}
.yce{bottom:131.785067pt;}
.y54{bottom:132.654533pt;}
.ye6{bottom:132.691733pt;}
.y1a7{bottom:132.783867pt;}
.y78{bottom:133.530267pt;}
.y26{bottom:134.567733pt;}
.y11a{bottom:136.446533pt;}
.y177{bottom:136.451733pt;}
.yf9{bottom:136.465067pt;}
.y164{bottom:137.358400pt;}
.y247{bottom:139.398000pt;}
.y18f{bottom:141.998400pt;}
.y7{bottom:143.370667pt;}
.y236{bottom:144.625067pt;}
.y1dc{bottom:145.838400pt;}
.ycd{bottom:147.785067pt;}
.y53{bottom:148.654533pt;}
.y133{bottom:148.660667pt;}
.ye5{bottom:148.691733pt;}
.y77{bottom:149.530267pt;}
.y203{bottom:149.985067pt;}
.y27f{bottom:150.405867pt;}
.y119{bottom:152.446533pt;}
.y163{bottom:153.358400pt;}
.y176{bottom:156.225067pt;}
.yf8{bottom:156.238400pt;}
.y235{bottom:160.625067pt;}
.y18e{bottom:161.771733pt;}
.y1db{bottom:162.105067pt;}
.y52{bottom:164.654533pt;}
.y132{bottom:164.660667pt;}
.y76{bottom:165.530267pt;}
.y202{bottom:166.371733pt;}
.y27e{bottom:166.405867pt;}
.ycc{bottom:167.558400pt;}
.y145{bottom:168.427867pt;}
.y118{bottom:168.446533pt;}
.ye4{bottom:168.465067pt;}
.y21b{bottom:169.320267pt;}
.y162{bottom:169.358400pt;}
.y175{bottom:172.225067pt;}
.yf7{bottom:172.238400pt;}
.y25f{bottom:173.964933pt;}
.y1b4{bottom:175.993067pt;}
.y6{bottom:176.533333pt;}
.y234{bottom:176.625067pt;}
.yb2{bottom:176.886400pt;}
.y18d{bottom:177.771733pt;}
.y51{bottom:180.654533pt;}
.y75{bottom:181.530267pt;}
.y1da{bottom:182.145067pt;}
.y27d{bottom:182.412133pt;}
.y201{bottom:182.758400pt;}
.ycb{bottom:183.558400pt;}
.y99{bottom:184.427867pt;}
.y131{bottom:184.434000pt;}
.y117{bottom:184.446533pt;}
.ye3{bottom:184.465067pt;}
.y21a{bottom:185.320267pt;}
.y25{bottom:185.503067pt;}
.y174{bottom:188.225067pt;}
.yf6{bottom:188.238400pt;}
.y161{bottom:189.131733pt;}
.y25e{bottom:189.964933pt;}
.y1b3{bottom:191.993067pt;}
.y233{bottom:192.625067pt;}
.yb1{bottom:192.886400pt;}
.y18c{bottom:193.771733pt;}
.y50{bottom:196.654533pt;}
.y1d9{bottom:198.411733pt;}
.y200{bottom:199.145067pt;}
.yca{bottom:199.558400pt;}
.y98{bottom:200.427867pt;}
.y130{bottom:200.434000pt;}
.y116{bottom:200.446533pt;}
.ye2{bottom:200.465067pt;}
.y74{bottom:201.303600pt;}
.y219{bottom:201.320267pt;}
.y24{bottom:201.503067pt;}
.y27c{bottom:202.185467pt;}
.yf5{bottom:204.238400pt;}
.y160{bottom:205.131733pt;}
.y25d{bottom:205.964933pt;}
.y1b2{bottom:207.993067pt;}
.y173{bottom:207.998400pt;}
.y232{bottom:208.625067pt;}
.yb0{bottom:208.886400pt;}
.y5{bottom:209.696000pt;}
.y18b{bottom:209.771733pt;}
.y4f{bottom:212.654533pt;}
.y1d8{bottom:214.678400pt;}
.y1ff{bottom:215.531733pt;}
.yc9{bottom:215.558400pt;}
.y97{bottom:216.427867pt;}
.y12f{bottom:216.434000pt;}
.y115{bottom:216.446533pt;}
.ye1{bottom:216.465067pt;}
.y218{bottom:217.320267pt;}
.y23{bottom:217.503067pt;}
.y27b{bottom:218.191600pt;}
.y144{bottom:220.225067pt;}
.yf4{bottom:220.238400pt;}
.y73{bottom:221.105067pt;}
.y1a6{bottom:221.131733pt;}
.y25c{bottom:221.971067pt;}
.y1b1{bottom:223.993067pt;}
.y172{bottom:223.998400pt;}
.y231{bottom:224.625067pt;}
.yaf{bottom:224.886400pt;}
.y15f{bottom:224.905067pt;}
.y18a{bottom:225.771733pt;}
.y4e{bottom:228.654533pt;}
.y1d7{bottom:230.945067pt;}
.yc8{bottom:231.558400pt;}
.y1fe{bottom:231.918400pt;}
.y96{bottom:232.427867pt;}
.y12e{bottom:232.434000pt;}
.y114{bottom:232.446533pt;}
.y246{bottom:232.465067pt;}
.y217{bottom:233.320267pt;}
.y22{bottom:233.503067pt;}
.y143{bottom:236.225067pt;}
.ye0{bottom:236.238400pt;}
.y1a5{bottom:237.131733pt;}
.yd{bottom:237.401867pt;}
.y27a{bottom:237.964933pt;}
.y1b0{bottom:239.993067pt;}
.y171{bottom:239.998400pt;}
.y15e{bottom:240.905067pt;}
.y25b{bottom:241.744400pt;}
.y189{bottom:241.771733pt;}
.y4d{bottom:244.654533pt;}
.yae{bottom:244.659733pt;}
.y1d6{bottom:247.211733pt;}
.yc7{bottom:247.558400pt;}
.y1fd{bottom:248.305067pt;}
.y95{bottom:248.427867pt;}
.y12d{bottom:248.434000pt;}
.y113{bottom:248.446533pt;}
.y245{bottom:248.465067pt;}
.y216{bottom:249.320267pt;}
.y21{bottom:249.503067pt;}
.y142{bottom:252.225067pt;}
.ydf{bottom:252.238400pt;}
.y1a4{bottom:253.131733pt;}
.y279{bottom:253.971067pt;}
.y1af{bottom:255.993067pt;}
.y170{bottom:255.998400pt;}
.yf3{bottom:256.011733pt;}
.y15d{bottom:256.905067pt;}
.y25a{bottom:257.744400pt;}
.yc{bottom:260.381333pt;}
.y4c{bottom:260.654533pt;}
.yad{bottom:260.659733pt;}
.y72{bottom:260.665067pt;}
.y188{bottom:261.545067pt;}
.y1d5{bottom:263.478400pt;}
.yc6{bottom:263.558400pt;}
.y230{bottom:264.185067pt;}
.y94{bottom:264.427867pt;}
.y12c{bottom:264.434000pt;}
.y244{bottom:264.465067pt;}
.y1fc{bottom:264.691733pt;}
.y20{bottom:265.503067pt;}
.y112{bottom:268.219867pt;}
.y141{bottom:268.225067pt;}
.yde{bottom:268.238400pt;}
.y1a3{bottom:269.131733pt;}
.y16f{bottom:271.998400pt;}
.yf2{bottom:272.011733pt;}
.y215{bottom:272.880267pt;}
.y15c{bottom:272.905067pt;}
.y259{bottom:273.744400pt;}
.y1ae{bottom:275.766400pt;}
.y4b{bottom:276.654533pt;}
.yac{bottom:276.659733pt;}
.y71{bottom:276.665067pt;}
.y187{bottom:277.545067pt;}
.yc5{bottom:279.558400pt;}
.y1d4{bottom:279.745067pt;}
.y93{bottom:280.427867pt;}
.y12b{bottom:280.434000pt;}
.y1fb{bottom:281.078400pt;}
.y1f{bottom:281.503067pt;}
.yb{bottom:283.360933pt;}
.y111{bottom:284.219867pt;}
.y140{bottom:284.225067pt;}
.ydd{bottom:284.238400pt;}
.y16e{bottom:287.998400pt;}
.yf1{bottom:288.011733pt;}
.y15b{bottom:288.905067pt;}
.y258{bottom:289.750667pt;}
.y278{bottom:289.756933pt;}
.y1ad{bottom:291.766400pt;}
.y214{bottom:292.653600pt;}
.y70{bottom:292.665067pt;}
.yc4{bottom:295.558400pt;}
.y1d3{bottom:296.011733pt;}
.y4a{bottom:296.427867pt;}
.y12a{bottom:296.434000pt;}
.y186{bottom:297.318400pt;}
.y1fa{bottom:297.465067pt;}
.y1e{bottom:297.503067pt;}
.y92{bottom:300.201200pt;}
.y110{bottom:300.219867pt;}
.ydc{bottom:300.238400pt;}
.y22f{bottom:303.745067pt;}
.y13f{bottom:303.998400pt;}
.yf0{bottom:304.011733pt;}
.y15a{bottom:304.905067pt;}
.ya{bottom:306.340400pt;}
.y213{bottom:308.653600pt;}
.y6f{bottom:308.665067pt;}
.y257{bottom:309.524000pt;}
.y277{bottom:309.530267pt;}
.y1ac{bottom:311.558400pt;}
.y1d2{bottom:312.278400pt;}
.y49{bottom:312.427867pt;}
.y129{bottom:312.434000pt;}
.y185{bottom:313.318400pt;}
.yc3{bottom:315.331733pt;}
.yab{bottom:316.219733pt;}
.y10f{bottom:316.219867pt;}
.y243{bottom:316.238400pt;}
.y1d{bottom:317.276400pt;}
.y1f9{bottom:317.625067pt;}
.y22e{bottom:319.745067pt;}
.ydb{bottom:320.011733pt;}
.y159{bottom:320.905067pt;}
.y13e{bottom:323.771733pt;}
.yef{bottom:323.785067pt;}
.y212{bottom:324.653600pt;}
.y6e{bottom:324.665067pt;}
.y256{bottom:325.530267pt;}
.y1ab{bottom:327.558400pt;}
.y48{bottom:328.427867pt;}
.y128{bottom:328.434000pt;}
.y9{bottom:329.312000pt;}
.y184{bottom:329.318400pt;}
.yc2{bottom:331.331733pt;}
.yaa{bottom:332.219733pt;}
.y10e{bottom:332.219867pt;}
.y242{bottom:332.238400pt;}
.y1d1{bottom:332.318400pt;}
.y1c{bottom:333.276400pt;}
.y1f8{bottom:334.011733pt;}
.y22d{bottom:335.745067pt;}
.yda{bottom:336.011733pt;}
.y158{bottom:336.905067pt;}
.y91{bottom:339.766400pt;}
.y13d{bottom:339.771733pt;}
.yee{bottom:339.785067pt;}
.y6d{bottom:340.665067pt;}
.y1aa{bottom:343.558400pt;}
.y211{bottom:344.426933pt;}
.y47{bottom:344.427867pt;}
.y255{bottom:345.303600pt;}
.yc1{bottom:347.331733pt;}
.y8{bottom:347.488000pt;}
.y127{bottom:348.207333pt;}
.ya9{bottom:348.219733pt;}
.y10d{bottom:348.219867pt;}
.y241{bottom:348.238400pt;}
.y1d0{bottom:348.585067pt;}
.y183{bottom:349.091733pt;}
.y1b{bottom:349.276400pt;}
.y1f7{bottom:350.398400pt;}
.y22c{bottom:351.745067pt;}
.yd9{bottom:352.011733pt;}
.y157{bottom:352.905067pt;}
.y90{bottom:355.766400pt;}
.yed{bottom:355.785067pt;}
.y6c{bottom:356.665067pt;}
.y13c{bottom:359.545067pt;}
.y1a9{bottom:359.558400pt;}
.y210{bottom:360.426933pt;}
.y46{bottom:360.427867pt;}
.y254{bottom:361.303600pt;}
.y276{bottom:361.309733pt;}
.yc0{bottom:363.331733pt;}
.y126{bottom:364.207333pt;}
.ya8{bottom:364.219733pt;}
.y10c{bottom:364.219867pt;}
.y240{bottom:364.238400pt;}
.y1cf{bottom:364.851733pt;}
.y182{bottom:365.091733pt;}
.y1a{bottom:365.276400pt;}
.y1f6{bottom:366.785067pt;}
.y22b{bottom:367.745067pt;}
.yd8{bottom:368.011733pt;}
.y156{bottom:368.905067pt;}
.y8f{bottom:371.766400pt;}
.y6b{bottom:372.665067pt;}
.yec{bottom:375.558400pt;}
.y20f{bottom:376.426933pt;}
.y45{bottom:376.427867pt;}
.y253{bottom:377.309733pt;}
.ybf{bottom:379.331733pt;}
.y125{bottom:380.207333pt;}
.ya7{bottom:380.219733pt;}
.y10b{bottom:380.219867pt;}
.y275{bottom:381.083067pt;}
.y1ce{bottom:381.118400pt;}
.y19{bottom:381.276400pt;}
.y22a{bottom:383.745067pt;}
.y23f{bottom:384.011733pt;}
.y181{bottom:384.865067pt;}
.y155{bottom:384.905067pt;}
.y1f5{bottom:386.945067pt;}
.y8e{bottom:387.766400pt;}
.yd7{bottom:387.785067pt;}
.y6a{bottom:388.665067pt;}
.yeb{bottom:391.558400pt;}
.y20e{bottom:392.426933pt;}
.y44{bottom:392.427867pt;}
.ybe{bottom:395.331733pt;}
.y124{bottom:396.207333pt;}
.ya6{bottom:396.219733pt;}
.y10a{bottom:396.219867pt;}
.y252{bottom:397.083067pt;}
.y274{bottom:397.089200pt;}
.y18{bottom:397.276400pt;}
.y13b{bottom:399.105067pt;}
.y229{bottom:399.745067pt;}
.y23e{bottom:400.011733pt;}
.y180{bottom:400.865067pt;}
.y1cd{bottom:401.158400pt;}
.y1f4{bottom:403.331733pt;}
.y8d{bottom:403.766400pt;}
.yd6{bottom:403.785067pt;}
.y69{bottom:404.665067pt;}
.y154{bottom:404.678400pt;}
.yea{bottom:407.558400pt;}
.y20d{bottom:408.426933pt;}
.y43{bottom:408.427867pt;}
.ybd{bottom:411.331733pt;}
.ya5{bottom:412.219733pt;}
.y109{bottom:412.219867pt;}
.y251{bottom:413.083067pt;}
.y17{bottom:413.276400pt;}
.y13a{bottom:415.105067pt;}
.y123{bottom:415.980667pt;}
.y23d{bottom:416.011733pt;}
.y17f{bottom:416.865067pt;}
.y273{bottom:416.868800pt;}
.y1cc{bottom:417.425067pt;}
.y1f3{bottom:419.718400pt;}
.y8c{bottom:419.766400pt;}
.yd5{bottom:419.785067pt;}
.y68{bottom:420.665067pt;}
.y153{bottom:420.678400pt;}
.ye9{bottom:423.558400pt;}
.y20c{bottom:424.426933pt;}
.y42{bottom:424.427867pt;}
.ybc{bottom:427.331733pt;}
.y250{bottom:429.089200pt;}
.y228{bottom:430.865067pt;}
.y139{bottom:431.105067pt;}
.ya4{bottom:431.993067pt;}
.y108{bottom:431.993200pt;}
.y23c{bottom:432.011733pt;}
.y17e{bottom:432.865067pt;}
.y16{bottom:433.049733pt;}
.y1cb{bottom:433.691733pt;}
.y8b{bottom:435.766400pt;}
.yd4{bottom:435.785067pt;}
.y1f2{bottom:436.105067pt;}
.y272{bottom:436.642133pt;}
.y67{bottom:436.665067pt;}
.y152{bottom:436.678400pt;}
.ye8{bottom:439.558400pt;}
.y20b{bottom:440.426933pt;}
.y41{bottom:440.427867pt;}
.y1a2{bottom:440.451733pt;}
.ybb{bottom:443.331733pt;}
.y227{bottom:446.865067pt;}
.y138{bottom:447.105067pt;}
.y107{bottom:447.993200pt;}
.y23b{bottom:448.011733pt;}
.y24f{bottom:448.862533pt;}
.y15{bottom:449.049733pt;}
.y1ca{bottom:449.958400pt;}
.y8a{bottom:451.766400pt;}
.y1f1{bottom:452.491733pt;}
.y271{bottom:452.648267pt;}
.yd3{bottom:455.558400pt;}
.y20a{bottom:456.426933pt;}
.y40{bottom:456.427867pt;}
.y66{bottom:456.438400pt;}
.y151{bottom:456.451733pt;}
.yba{bottom:459.331733pt;}
.y137{bottom:463.105067pt;}
.y17d{bottom:463.985067pt;}
.y106{bottom:463.993200pt;}
.y23a{bottom:464.011733pt;}
.y24e{bottom:464.874933pt;}
.y14{bottom:465.049733pt;}
.y1c9{bottom:466.225067pt;}
.ya3{bottom:467.766400pt;}
.y1f0{bottom:468.878400pt;}
.y89{bottom:471.539733pt;}
.yd2{bottom:471.558400pt;}
.y270{bottom:472.421600pt;}
.y3f{bottom:472.427867pt;}
.y65{bottom:472.438400pt;}
.y226{bottom:474.198400pt;}
.yb9{bottom:475.331733pt;}
.y150{bottom:476.225067pt;}
.y136{bottom:479.105067pt;}
.y17c{bottom:479.985067pt;}
.y105{bottom:479.993200pt;}
.y239{bottom:480.011733pt;}
.y1c8{bottom:482.491733pt;}
.ya2{bottom:483.766400pt;}
.y209{bottom:483.771733pt;}
.y24d{bottom:484.648267pt;}
.yd1{bottom:487.558400pt;}
.y26f{bottom:488.421600pt;}
.y64{bottom:488.438400pt;}
.y1ef{bottom:489.038400pt;}
.y225{bottom:490.198400pt;}
.yb8{bottom:491.331733pt;}
.y3e{bottom:492.201200pt;}
.y135{bottom:495.105067pt;}
.y104{bottom:495.993200pt;}
.y1a1{bottom:495.998400pt;}
.y17b{bottom:498.592400pt;}
.y1c7{bottom:498.758400pt;}
.ya1{bottom:499.766400pt;}
.y208{bottom:499.771733pt;}
.y238{bottom:499.785067pt;}
.y24c{bottom:500.648267pt;}
.yd0{bottom:503.558400pt;}
.y26e{bottom:504.427867pt;}
.y63{bottom:504.438400pt;}
.y13{bottom:504.609733pt;}
.y1ee{bottom:505.425067pt;}
.yb7{bottom:507.331733pt;}
.y3d{bottom:508.211733pt;}
.y88{bottom:511.105067pt;}
.y17a{bottom:511.392400pt;}
.y103{bottom:511.993200pt;}
.y1a0{bottom:511.998400pt;}
.y16d{bottom:514.878400pt;}
.y207{bottom:515.771733pt;}
.y14f{bottom:515.785067pt;}
.y1c6{bottom:518.798400pt;}
.ya0{bottom:519.558400pt;}
.y24b{bottom:520.421600pt;}
.y62{bottom:520.438400pt;}
.y12{bottom:520.609733pt;}
.y224{bottom:521.318400pt;}
.y1ed{bottom:521.811733pt;}
.yb6{bottom:523.331733pt;}
.y179{bottom:524.192400pt;}
.y26d{bottom:524.201200pt;}
.y87{bottom:527.105067pt;}
.y102{bottom:527.993200pt;}
.y16c{bottom:530.878400pt;}
.y19f{bottom:531.771733pt;}
.y14e{bottom:531.785067pt;}
.y1c5{bottom:535.065067pt;}
.y9f{bottom:535.558400pt;}
.y24a{bottom:536.425867pt;}
.y61{bottom:536.438400pt;}
.y11{bottom:536.609733pt;}
.y223{bottom:537.318400pt;}
.y148{bottom:537.849200pt;}
.yb5{bottom:539.331733pt;}
.y26c{bottom:540.201200pt;}
.y1ec{bottom:541.971733pt;}
.y86{bottom:543.105067pt;}
.y16b{bottom:546.878400pt;}
.y101{bottom:547.766533pt;}
.y3c{bottom:547.771733pt;}
.y14d{bottom:547.785067pt;}
.y147{bottom:550.649200pt;}
.y1c4{bottom:551.331733pt;}
.y9e{bottom:551.558400pt;}
.y10{bottom:552.609733pt;}
.y222{bottom:553.318400pt;}
.yb4{bottom:555.331733pt;}
.y26b{bottom:556.201200pt;}
.y60{bottom:556.211733pt;}
.y4{bottom:557.622000pt;}
.y85{bottom:559.105067pt;}
.y16a{bottom:562.878400pt;}
.y100{bottom:563.766533pt;}
.y19e{bottom:563.771733pt;}
.y14c{bottom:563.785067pt;}
.y9d{bottom:567.558400pt;}
.y1c3{bottom:567.598400pt;}
.y221{bottom:569.318400pt;}
.yb3{bottom:571.331733pt;}
.y26a{bottom:572.207333pt;}
.y5f{bottom:572.211733pt;}
.y84{bottom:575.105067pt;}
.y249{bottom:575.985867pt;}
.y169{bottom:578.878400pt;}
.yff{bottom:579.766533pt;}
.y19d{bottom:579.771733pt;}
.y14b{bottom:579.785067pt;}
.y1eb{bottom:582.305067pt;}
.y122{bottom:583.558400pt;}
.y1c2{bottom:583.865067pt;}
.y3b{bottom:587.331733pt;}
.y192{bottom:587.927867pt;}
.y5e{bottom:588.211733pt;}
.y83{bottom:591.105067pt;}
.y269{bottom:591.980667pt;}
.yf{bottom:592.169733pt;}
.y168{bottom:594.878400pt;}
.yfe{bottom:595.766533pt;}
.y19c{bottom:595.771733pt;}
.y220{bottom:596.651733pt;}
.y1ea{bottom:598.691733pt;}
.y121{bottom:599.558400pt;}
.y1c1{bottom:600.131733pt;}
.y191{bottom:600.727867pt;}
.y3a{bottom:603.331733pt;}
.y5d{bottom:604.211733pt;}
.y82{bottom:607.105067pt;}
.y268{bottom:607.986933pt;}
.y3{bottom:608.822000pt;}
.y167{bottom:610.878400pt;}
.yfd{bottom:611.766533pt;}
.y19b{bottom:611.771733pt;}
.y21f{bottom:612.651733pt;}
.y1e9{bottom:615.078400pt;}
.y14a{bottom:615.558400pt;}
.y1c0{bottom:616.398400pt;}
.y39{bottom:619.331733pt;}
.y5c{bottom:620.211733pt;}
.y81{bottom:623.105067pt;}
.y2c{bottom:626.138400pt;}
.y166{bottom:626.878400pt;}
.y267{bottom:627.760267pt;}
.yfc{bottom:627.766533pt;}
.y19a{bottom:627.771733pt;}
.y21e{bottom:628.651733pt;}
.y1e8{bottom:631.465067pt;}
.y149{bottom:631.558400pt;}
.y38{bottom:635.331733pt;}
.y1bf{bottom:636.438400pt;}
.y2{bottom:637.622000pt;}
.y80{bottom:639.105067pt;}
.y5b{bottom:639.985067pt;}
.y165{bottom:642.878400pt;}
.y266{bottom:643.766400pt;}
.y199{bottom:643.771733pt;}
.y2b{bottom:645.911733pt;}
.yfb{bottom:647.539867pt;}
.y1e7{bottom:647.851733pt;}
.y37{bottom:651.331733pt;}
.y1be{bottom:652.705067pt;}
.y9c{bottom:655.105067pt;}
.y21d{bottom:655.985067pt;}
.y7f{bottom:658.878400pt;}
.y5a{bottom:659.758400pt;}
.y265{bottom:663.539733pt;}
.y198{bottom:663.545067pt;}
.y1e6{bottom:664.238400pt;}
.y36{bottom:667.331733pt;}
.y1bd{bottom:668.971733pt;}
.y9b{bottom:671.105067pt;}
.y21c{bottom:671.985067pt;}
.y7e{bottom:674.878400pt;}
.y197{bottom:679.545067pt;}
.y264{bottom:679.545867pt;}
.y2a{bottom:680.809333pt;}
.y120{bottom:683.331733pt;}
.y1e5{bottom:684.398400pt;}
.y1bc{bottom:685.238400pt;}
.y35{bottom:687.105067pt;}
.y7d{bottom:690.878400pt;}
.y196{bottom:695.545067pt;}
.y59{bottom:699.318400pt;}
.y263{bottom:699.325467pt;}
.y11f{bottom:699.331733pt;}
.y1e4{bottom:700.785067pt;}
.y1bb{bottom:701.505067pt;}
.y34{bottom:703.105067pt;}
.y7c{bottom:706.878400pt;}
.y29{bottom:709.609333pt;}
.y195{bottom:711.545067pt;}
.y58{bottom:715.318400pt;}
.y11e{bottom:715.331733pt;}
.y1e3{bottom:717.171733pt;}
.y1ba{bottom:717.771733pt;}
.y262{bottom:719.098800pt;}
.y33{bottom:719.105067pt;}
.y7b{bottom:722.878400pt;}
.y194{bottom:731.318400pt;}
.y11d{bottom:731.331733pt;}
.y1e2{bottom:733.558400pt;}
.y1b9{bottom:734.038400pt;}
.y261{bottom:735.098800pt;}
.y32{bottom:735.105067pt;}
.y28{bottom:738.409333pt;}
.y7a{bottom:738.878400pt;}
.y193{bottom:747.318400pt;}
.y1e1{bottom:749.945067pt;}
.y1b8{bottom:750.305067pt;}
.y260{bottom:751.098800pt;}
.y31{bottom:751.105067pt;}
.y57{bottom:754.878400pt;}
.y1b7{bottom:766.571733pt;}
.y30{bottom:767.105067pt;}
.y1e0{bottom:770.105067pt;}
.y56{bottom:770.878400pt;}
.y11c{bottom:783.105067pt;}
.y1df{bottom:786.491733pt;}
.y1b6{bottom:786.611733pt;}
.y2f{bottom:786.878400pt;}
.y2e{bottom:802.878400pt;}
.y2d{bottom:849.204667pt;}
.hc{height:24.362133pt;}
.hb{height:24.362667pt;}
.h2{height:34.683958pt;}
.h5{height:38.570667pt;}
.ha{height:43.392000pt;}
.h6{height:44.800000pt;}
.h7{height:48.213333pt;}
.h8{height:48.693333pt;}
.h4{height:77.141333pt;}
.h9{height:86.784000pt;}
.h3{height:87.648000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:75.590533pt;}
.x2{left:79.825600pt;}
.x10{left:83.835867pt;}
.x5{left:94.488133pt;}
.x14{left:104.164133pt;}
.x7{left:105.830533pt;}
.xc{left:114.714533pt;}
.xa{left:124.728133pt;}
.xd{left:133.612267pt;}
.x8{left:142.978400pt;}
.xb{left:145.217867pt;}
.x3{left:147.337600pt;}
.x4{left:165.931067pt;}
.x9{left:272.335733pt;}
.x11{left:300.779867pt;}
.x12{left:332.246533pt;}
.x1{left:345.729467pt;}
.x13{left:350.134533pt;}
.xf{left:374.313067pt;}
.xe{left:404.553067pt;}
}




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