
    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_cf3f1e14720e67fa54d5c3b1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_cef2358cbac9bf99b35e2b8a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_f530d02ff331b08d5c9b7a7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958630;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_6e6d058055131d8b3edf6e6c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_c9785ee9b0607eb60188abb4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.137207;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_282fbbe4eed2b05370f94660.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_52dd4afb0f3d85d30e0f4085.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_4fb6aed62ad9a41210d274cd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_ef4cfb19c05e6cae7a072e8b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_c649f2038fd4723a3d661ce9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_4f4974c9020892684b3f18d7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.961048;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_87a0df96f61ae824e9f55541.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916000;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_5cae0363f62a06cf54be7b83.woff')format("woff");}.ffd{font-family:ffd;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5cae0363f62a06cf54be7b83.woff')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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:fff;src:url('chunks/assets/font_44b1daf08855425b7a00022e.woff')format("woff");}.fff{font-family:fff;line-height:0.976092;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:ff10;src:url('chunks/assets/font_2bda01887c4677c102541833.woff')format("woff");}.ff10{font-family:ff10;line-height:0.925781;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:ff11;src:url('chunks/assets/font_1a58e9e12477123d6f33a919.woff')format("woff");}.ff11{font-family:ff11;line-height:0.950195;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:ff12;src:url('chunks/assets/font_d839abcdf7ace86895ee5605.woff')format("woff");}.ff12{font-family:ff12;line-height:0.918945;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:ff13;src:url('chunks/assets/font_9b1dbb1e8f8d672d14e433ee.woff')format("woff");}.ff13{font-family:ff13;line-height:0.970370;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:ff14;src:url('chunks/assets/font_46eb99c54cece41b0163bffe.woff')format("woff");}.ff14{font-family:ff14;line-height:0.770020;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.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:42.559200px;}
.lsd{letter-spacing:-4.920000px;}
.lsb{letter-spacing:-3.540000px;}
.ls13{letter-spacing:-2.640000px;}
.lse{letter-spacing:-1.260000px;}
.ls20{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-1.020000px;}
.ls15{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.918000px;}
.ls1c{letter-spacing:-0.900000px;}
.ls8{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.840000px;}
.ls18{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.528000px;}
.ls16{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.454740px;}
.ls12{letter-spacing:-0.314820px;}
.ls6{letter-spacing:-0.306000px;}
.ls1d{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.204000px;}
.ls1e{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.102000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.007200px;}
.ls1a{letter-spacing:0.010800px;}
.ls4{letter-spacing:0.204000px;}
.lsf{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.540000px;}
.ls11{letter-spacing:7.680000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.wsc0{word-spacing:-60.000000px;}
.wsd7{word-spacing:-59.220000px;}
.ws0{word-spacing:-25.398000px;}
.ws8{word-spacing:-17.928000px;}
.ws112{word-spacing:-16.434000px;}
.ws7{word-spacing:-14.940000px;}
.ws86{word-spacing:-14.880000px;}
.ws87{word-spacing:-14.820000px;}
.ws29{word-spacing:-14.700000px;}
.wsbf{word-spacing:-14.460000px;}
.ws2b{word-spacing:-14.280000px;}
.ws106{word-spacing:-14.040000px;}
.wsc1{word-spacing:-13.920000px;}
.ws107{word-spacing:-13.860000px;}
.ws2d{word-spacing:-13.680000px;}
.ws7c{word-spacing:-13.392000px;}
.ws125{word-spacing:-13.230000px;}
.ws9{word-spacing:-12.366000px;}
.wsd{word-spacing:-12.150000px;}
.wsc{word-spacing:-12.042000px;}
.ws80{word-spacing:-11.904000px;}
.ws83{word-spacing:-11.760000px;}
.wsa{word-spacing:-11.448000px;}
.ws2a{word-spacing:-11.400000px;}
.wsb{word-spacing:-11.232000px;}
.wse{word-spacing:-10.992000px;}
.ws5{word-spacing:-10.896000px;}
.ws27{word-spacing:-10.800000px;}
.ws28{word-spacing:-10.704000px;}
.ws2c{word-spacing:-10.020000px;}
.ws6{word-spacing:-9.892800px;}
.ws4{word-spacing:-9.618000px;}
.ws3{word-spacing:-9.542544px;}
.ws88{word-spacing:-8.675040px;}
.ws99{word-spacing:-8.360220px;}
.wsd8{word-spacing:-8.220300px;}
.ws10c{word-spacing:-4.140000px;}
.wscb{word-spacing:-3.960000px;}
.wscc{word-spacing:-3.900000px;}
.wsea{word-spacing:-3.840000px;}
.ws13{word-spacing:-3.828000px;}
.ws146{word-spacing:-3.780000px;}
.wsfd{word-spacing:-3.600000px;}
.wsfe{word-spacing:-3.540000px;}
.ws32{word-spacing:-3.360000px;}
.wsff{word-spacing:-3.300000px;}
.ws100{word-spacing:-3.240000px;}
.ws129{word-spacing:-3.186000px;}
.wsc9{word-spacing:-3.000000px;}
.wse5{word-spacing:-2.940000px;}
.wsd1{word-spacing:-2.820000px;}
.wsab{word-spacing:-2.760000px;}
.ws48{word-spacing:-2.700000px;}
.ws2e{word-spacing:-2.640000px;}
.wsc2{word-spacing:-2.538000px;}
.ws40{word-spacing:-2.520000px;}
.wsc3{word-spacing:-2.484000px;}
.ws3d{word-spacing:-2.460000px;}
.wsc7{word-spacing:-2.400000px;}
.ws13c{word-spacing:-2.376000px;}
.ws67{word-spacing:-2.340000px;}
.wsdf{word-spacing:-2.322000px;}
.ws10e{word-spacing:-2.280000px;}
.ws118{word-spacing:-2.268000px;}
.wsee{word-spacing:-2.220000px;}
.ws4a{word-spacing:-2.160000px;}
.ws50{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.wsec{word-spacing:-1.980000px;}
.ws5c{word-spacing:-1.920000px;}
.wsb3{word-spacing:-1.860000px;}
.wsdb{word-spacing:-1.800000px;}
.ws5e{word-spacing:-1.680000px;}
.ws5f{word-spacing:-1.620000px;}
.ws13a{word-spacing:-1.566000px;}
.wsf7{word-spacing:-1.560000px;}
.wsef{word-spacing:-1.500000px;}
.wsb1{word-spacing:-1.440000px;}
.ws8d{word-spacing:-1.380000px;}
.wsfc{word-spacing:-1.320000px;}
.wsf9{word-spacing:-1.260000px;}
.ws11c{word-spacing:-1.242000px;}
.wsa9{word-spacing:-1.200000px;}
.wse9{word-spacing:-1.140000px;}
.ws19{word-spacing:-1.134000px;}
.wsd3{word-spacing:-1.080000px;}
.wsf1{word-spacing:-1.020000px;}
.wse4{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.918000px;}
.ws7b{word-spacing:-0.912000px;}
.wsd9{word-spacing:-0.864000px;}
.ws12e{word-spacing:-0.810000px;}
.ws10d{word-spacing:-0.780000px;}
.ws128{word-spacing:-0.756000px;}
.ws44{word-spacing:-0.720000px;}
.ws148{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.486000px;}
.wsd2{word-spacing:-0.480000px;}
.wsac{word-spacing:-0.420000px;}
.ws131{word-spacing:-0.378000px;}
.ws60{word-spacing:-0.360000px;}
.ws11b{word-spacing:-0.324000px;}
.ws9e{word-spacing:-0.300000px;}
.ws97{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.060000px;}
.wsf{word-spacing:0.000000px;}
.ws45{word-spacing:0.060000px;}
.ws12{word-spacing:0.102000px;}
.ws8e{word-spacing:0.120000px;}
.ws16{word-spacing:0.162000px;}
.ws46{word-spacing:0.180000px;}
.ws10{word-spacing:0.204000px;}
.wsa5{word-spacing:0.240000px;}
.ws11{word-spacing:0.306000px;}
.wse3{word-spacing:0.360000px;}
.ws124{word-spacing:0.378000px;}
.wsc4{word-spacing:0.420000px;}
.ws12c{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.wsf4{word-spacing:0.540000px;}
.ws84{word-spacing:0.594000px;}
.ws47{word-spacing:0.600000px;}
.ws1c{word-spacing:0.648000px;}
.ws4f{word-spacing:0.660000px;}
.ws15{word-spacing:0.691200px;}
.ws17{word-spacing:0.702000px;}
.wsc6{word-spacing:0.720000px;}
.ws119{word-spacing:0.756000px;}
.ws41{word-spacing:0.780000px;}
.wsdc{word-spacing:0.810000px;}
.wsc5{word-spacing:0.840000px;}
.ws5d{word-spacing:0.900000px;}
.ws26{word-spacing:0.918000px;}
.wse7{word-spacing:0.960000px;}
.wse6{word-spacing:1.020000px;}
.wsad{word-spacing:1.080000px;}
.wsf6{word-spacing:1.140000px;}
.ws1d{word-spacing:1.188000px;}
.ws3f{word-spacing:1.200000px;}
.ws3c{word-spacing:1.260000px;}
.ws11d{word-spacing:1.296000px;}
.ws3b{word-spacing:1.320000px;}
.wsed{word-spacing:1.380000px;}
.ws12b{word-spacing:1.458000px;}
.ws91{word-spacing:1.560000px;}
.wscf{word-spacing:1.620000px;}
.ws90{word-spacing:1.680000px;}
.ws51{word-spacing:1.740000px;}
.ws9f{word-spacing:1.800000px;}
.ws24{word-spacing:1.860000px;}
.ws117{word-spacing:1.944000px;}
.ws30{word-spacing:1.980000px;}
.ws37{word-spacing:2.040000px;}
.ws105{word-spacing:2.052000px;}
.ws54{word-spacing:2.100000px;}
.ws104{word-spacing:2.106000px;}
.ws36{word-spacing:2.160000px;}
.ws58{word-spacing:2.220000px;}
.ws65{word-spacing:2.280000px;}
.ws130{word-spacing:2.322000px;}
.ws31{word-spacing:2.340000px;}
.ws127{word-spacing:2.376000px;}
.wsa4{word-spacing:2.400000px;}
.ws3a{word-spacing:2.460000px;}
.ws69{word-spacing:2.520000px;}
.ws12f{word-spacing:2.538000px;}
.wse2{word-spacing:2.580000px;}
.ws12a{word-spacing:2.592000px;}
.wsf0{word-spacing:2.640000px;}
.ws136{word-spacing:2.646000px;}
.wsf5{word-spacing:2.700000px;}
.ws8f{word-spacing:2.760000px;}
.ws121{word-spacing:2.808000px;}
.ws94{word-spacing:2.820000px;}
.ws42{word-spacing:2.880000px;}
.ws43{word-spacing:2.940000px;}
.wse1{word-spacing:3.000000px;}
.ws126{word-spacing:3.024000px;}
.wsb2{word-spacing:3.120000px;}
.wsda{word-spacing:3.180000px;}
.ws66{word-spacing:3.240000px;}
.ws111{word-spacing:3.300000px;}
.ws137{word-spacing:3.348000px;}
.ws3e{word-spacing:3.360000px;}
.ws8c{word-spacing:3.480000px;}
.ws55{word-spacing:3.540000px;}
.ws34{word-spacing:3.600000px;}
.ws134{word-spacing:3.618000px;}
.wseb{word-spacing:3.660000px;}
.ws4e{word-spacing:3.720000px;}
.ws56{word-spacing:3.780000px;}
.ws64{word-spacing:3.840000px;}
.wsa1{word-spacing:3.960000px;}
.ws11a{word-spacing:3.996000px;}
.ws92{word-spacing:4.020000px;}
.ws35{word-spacing:4.140000px;}
.ws33{word-spacing:4.200000px;}
.ws122{word-spacing:4.212000px;}
.ws11f{word-spacing:4.266000px;}
.ws120{word-spacing:4.320000px;}
.ws13d{word-spacing:4.374000px;}
.wsf8{word-spacing:4.380000px;}
.wsde{word-spacing:4.440000px;}
.wsa7{word-spacing:4.500000px;}
.ws110{word-spacing:4.560000px;}
.ws18{word-spacing:4.644000px;}
.ws59{word-spacing:4.680000px;}
.ws133{word-spacing:4.698000px;}
.ws52{word-spacing:4.740000px;}
.wsca{word-spacing:4.800000px;}
.wsd4{word-spacing:4.860000px;}
.ws1f{word-spacing:4.914000px;}
.wsce{word-spacing:4.920000px;}
.ws1e{word-spacing:4.968000px;}
.ws49{word-spacing:5.100000px;}
.wse8{word-spacing:5.160000px;}
.ws139{word-spacing:5.184000px;}
.wsa8{word-spacing:5.340000px;}
.ws96{word-spacing:5.400000px;}
.wsd0{word-spacing:5.520000px;}
.ws23{word-spacing:5.580000px;}
.ws63{word-spacing:5.640000px;}
.ws9c{word-spacing:5.760000px;}
.wsd5{word-spacing:5.820000px;}
.wsaf{word-spacing:5.880000px;}
.wsa6{word-spacing:5.940000px;}
.ws13f{word-spacing:5.994000px;}
.ws10b{word-spacing:6.000000px;}
.ws113{word-spacing:6.048000px;}
.ws8b{word-spacing:6.060000px;}
.ws12d{word-spacing:6.102000px;}
.ws93{word-spacing:6.120000px;}
.wsf3{word-spacing:6.180000px;}
.ws138{word-spacing:6.210000px;}
.ws7e{word-spacing:6.264000px;}
.wsb0{word-spacing:6.300000px;}
.ws11e{word-spacing:6.318000px;}
.ws62{word-spacing:6.360000px;}
.wsa0{word-spacing:6.420000px;}
.ws95{word-spacing:6.540000px;}
.wsc8{word-spacing:6.600000px;}
.ws9a{word-spacing:6.660000px;}
.ws9b{word-spacing:6.720000px;}
.ws115{word-spacing:6.750000px;}
.ws140{word-spacing:6.804000px;}
.ws5b{word-spacing:6.840000px;}
.ws5a{word-spacing:6.900000px;}
.ws61{word-spacing:6.960000px;}
.ws53{word-spacing:7.080000px;}
.ws4b{word-spacing:7.260000px;}
.ws102{word-spacing:7.380000px;}
.ws101{word-spacing:7.440000px;}
.ws141{word-spacing:7.452000px;}
.ws10a{word-spacing:7.620000px;}
.ws13b{word-spacing:7.668000px;}
.ws8a{word-spacing:7.680000px;}
.ws89{word-spacing:7.740000px;}
.ws13e{word-spacing:7.776000px;}
.ws20{word-spacing:7.800000px;}
.wsfa{word-spacing:7.860000px;}
.wse0{word-spacing:7.920000px;}
.wsa2{word-spacing:8.040000px;}
.wscd{word-spacing:8.100000px;}
.wsae{word-spacing:8.160000px;}
.ws9d{word-spacing:8.220000px;}
.wsa3{word-spacing:8.280000px;}
.ws103{word-spacing:8.340000px;}
.wsf2{word-spacing:8.580000px;}
.ws108{word-spacing:8.640000px;}
.ws21{word-spacing:8.700000px;}
.ws114{word-spacing:8.748000px;}
.ws25{word-spacing:8.760000px;}
.wsfb{word-spacing:9.240000px;}
.ws135{word-spacing:9.288000px;}
.wsaa{word-spacing:9.360000px;}
.wsdd{word-spacing:10.020000px;}
.ws98{word-spacing:10.260000px;}
.ws143{word-spacing:10.320000px;}
.ws38{word-spacing:10.620000px;}
.ws116{word-spacing:10.692000px;}
.ws39{word-spacing:10.740000px;}
.ws123{word-spacing:10.962000px;}
.wsd6{word-spacing:11.580000px;}
.ws142{word-spacing:11.820000px;}
.ws144{word-spacing:12.060000px;}
.ws4d{word-spacing:12.300000px;}
.ws57{word-spacing:12.360000px;}
.ws4c{word-spacing:12.420000px;}
.ws109{word-spacing:12.600000px;}
.ws10f{word-spacing:14.460000px;}
.ws14a{word-spacing:15.120000px;}
.ws147{word-spacing:15.420000px;}
.ws132{word-spacing:15.444000px;}
.ws149{word-spacing:18.900000px;}
.ws7d{word-spacing:19.866541px;}
.ws145{word-spacing:21.180000px;}
.ws14b{word-spacing:24.786000px;}
.ws81{word-spacing:31.152000px;}
.ws2{word-spacing:33.645441px;}
.ws1{word-spacing:33.657156px;}
.ws82{word-spacing:43.344000px;}
.ws85{word-spacing:70.128000px;}
.ws7f{word-spacing:97.392000px;}
.ws72{word-spacing:98.736000px;}
.ws7a{word-spacing:145.377600px;}
.ws6c{word-spacing:157.296000px;}
.ws6b{word-spacing:159.696000px;}
.ws6d{word-spacing:166.464000px;}
.ws75{word-spacing:174.480000px;}
.ws76{word-spacing:178.224000px;}
.ws77{word-spacing:187.392000px;}
.ws74{word-spacing:189.360000px;}
.ws70{word-spacing:189.888000px;}
.ws6e{word-spacing:197.136000px;}
.ws73{word-spacing:203.376000px;}
.ws79{word-spacing:205.406400px;}
.ws78{word-spacing:207.648000px;}
.ws71{word-spacing:210.384000px;}
.ws6f{word-spacing:213.984000px;}
.ws6a{word-spacing:246.350400px;}
.wsb9{word-spacing:269.280000px;}
.wsb8{word-spacing:279.244800px;}
.wsba{word-spacing:280.382400px;}
.wsb5{word-spacing:287.164800px;}
.wsbd{word-spacing:329.952000px;}
.wsbe{word-spacing:349.488000px;}
.wsb6{word-spacing:364.080000px;}
.wsb4{word-spacing:376.704000px;}
.wsbc{word-spacing:383.904000px;}
.wsbb{word-spacing:390.192000px;}
.wsb7{word-spacing:391.056000px;}
._8{margin-left:-11.199000px;}
._7{margin-left:-8.953200px;}
._9c{margin-left:-7.646400px;}
._4{margin-left:-6.415800px;}
._93{margin-left:-5.238000px;}
._1{margin-left:-3.763800px;}
._a{margin-left:-2.746200px;}
._0{margin-left:-1.377000px;}
._2{width:1.224000px;}
._1f{width:2.327400px;}
._3{width:3.396600px;}
._c{width:4.422000px;}
._1c{width:6.582000px;}
._94{width:7.686600px;}
._9b{width:8.727000px;}
._b{width:10.266000px;}
._6{width:15.619200px;}
._1e{width:16.764000px;}
._1d{width:17.875800px;}
._9{width:31.374000px;}
._5{width:36.369600px;}
._8d{width:38.920200px;}
._8a{width:41.136000px;}
._91{width:43.104000px;}
._88{width:44.352000px;}
._82{width:56.496000px;}
._8b{width:57.744000px;}
._83{width:64.992000px;}
._85{width:69.744000px;}
._7e{width:72.096000px;}
._7f{width:78.000000px;}
._8e{width:79.296000px;}
._15{width:81.120000px;}
._7c{width:83.040000px;}
._81{width:87.936000px;}
._87{width:90.144000px;}
._16{width:91.500000px;}
._80{width:94.320000px;}
._7b{width:95.712000px;}
._32{width:99.024000px;}
._d{width:101.681400px;}
._89{width:107.184000px;}
._2c{width:118.608000px;}
._86{width:122.832000px;}
._8f{width:124.992000px;}
._14{width:129.420000px;}
._77{width:131.760000px;}
._e{width:133.200000px;}
._4c{width:137.389200px;}
._8c{width:140.064000px;}
._10{width:142.020000px;}
._2f{width:143.184000px;}
._11{width:145.956000px;}
._1a{width:148.560000px;}
._19{width:154.200000px;}
._39{width:156.048000px;}
._7d{width:157.584000px;}
._1b{width:161.316000px;}
._46{width:164.304000px;}
._50{width:166.512000px;}
._4e{width:169.440000px;}
._5a{width:171.936000px;}
._57{width:175.344000px;}
._f{width:178.380000px;}
._31{width:180.384000px;}
._12{width:182.280000px;}
._74{width:183.552000px;}
._18{width:187.800000px;}
._17{width:189.060000px;}
._48{width:195.312000px;}
._28{width:198.643800px;}
._5e{width:201.777000px;}
._24{width:205.315800px;}
._13{width:207.180000px;}
._22{width:210.225000px;}
._49{width:212.448000px;}
._84{width:214.368000px;}
._3c{width:216.384000px;}
._4f{width:219.936000px;}
._61{width:229.872000px;}
._26{width:232.723800px;}
._42{width:234.528000px;}
._92{width:235.536000px;}
._40{width:238.752000px;}
._5c{width:245.697000px;}
._90{width:248.832000px;}
._6c{width:250.474200px;}
._23{width:258.384000px;}
._9a{width:260.832000px;}
._2b{width:267.408000px;}
._75{width:271.728000px;}
._6e{width:276.192000px;}
._4d{width:278.481000px;}
._29{width:282.816000px;}
._38{width:286.320000px;}
._3f{width:287.328000px;}
._25{width:289.536000px;}
._96{width:298.080000px;}
._35{width:299.664000px;}
._6b{width:303.648000px;}
._95{width:305.376000px;}
._97{width:307.536000px;}
._98{width:309.456000px;}
._34{width:312.912000px;}
._72{width:315.969000px;}
._27{width:317.812800px;}
._55{width:321.024000px;}
._7a{width:324.571200px;}
._4a{width:330.912000px;}
._69{width:338.064000px;}
._2e{width:348.465000px;}
._56{width:353.184000px;}
._5d{width:363.360000px;}
._99{width:368.832000px;}
._45{width:370.176000px;}
._36{width:373.008000px;}
._3e{width:374.496000px;}
._59{width:379.488000px;}
._30{width:383.232000px;}
._4b{width:384.336000px;}
._73{width:391.872000px;}
._41{width:404.016000px;}
._5b{width:407.664000px;}
._47{width:408.816000px;}
._52{width:410.304000px;}
._65{width:416.832000px;}
._51{width:420.096000px;}
._44{width:422.160000px;}
._60{width:425.856000px;}
._3b{width:433.104000px;}
._68{width:436.800000px;}
._6d{width:440.208000px;}
._33{width:451.728000px;}
._37{width:455.712000px;}
._20{width:465.120000px;}
._71{width:469.872000px;}
._53{width:473.424000px;}
._79{width:480.816000px;}
._21{width:488.400000px;}
._3d{width:491.568000px;}
._64{width:496.320000px;}
._2d{width:500.544000px;}
._2a{width:525.216000px;}
._76{width:530.112000px;}
._43{width:539.328000px;}
._63{width:545.952000px;}
._6f{width:547.536000px;}
._3a{width:550.752000px;}
._5f{width:556.992000px;}
._54{width:570.096000px;}
._58{width:577.872000px;}
._62{width:580.992000px;}
._66{width:587.808000px;}
._70{width:606.000000px;}
._6a{width:615.216000px;}
._67{width:643.584000px;}
._78{width:753.360000px;}
.fc5{color:rgb(16,15,13);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.070800px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:63.838800px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3f{bottom:71.212050px;}
.y40{bottom:75.040050px;}
.y3e{bottom:80.698950px;}
.y213{bottom:112.790850px;}
.y1e3{bottom:113.012850px;}
.y19c{bottom:113.078700px;}
.y1a3{bottom:113.078850px;}
.yd1{bottom:115.720950px;}
.y15{bottom:117.205050px;}
.y2c{bottom:117.212550px;}
.y19d{bottom:122.415150px;}
.y182{bottom:125.371950px;}
.y14{bottom:131.601450px;}
.y212{bottom:133.796850px;}
.y1e2{bottom:134.018850px;}
.y220{bottom:134.024850px;}
.y19b{bottom:134.078700px;}
.y1a2{bottom:134.078850px;}
.yd0{bottom:134.080950px;}
.y2b{bottom:138.212550px;}
.y1c0{bottom:139.937100px;}
.y13{bottom:145.997850px;}
.y181{bottom:148.399950px;}
.ycf{bottom:152.440950px;}
.y211{bottom:154.802850px;}
.y1e1{bottom:155.024850px;}
.y21f{bottom:155.030850px;}
.y6d{bottom:155.078700px;}
.y9a{bottom:155.078850px;}
.y2a{bottom:159.212550px;}
.y12{bottom:160.397850px;}
.y180{bottom:163.399950px;}
.y1bf{bottom:169.441050px;}
.yce{bottom:170.800950px;}
.y210{bottom:175.808850px;}
.y1e0{bottom:176.030850px;}
.y21e{bottom:176.036850px;}
.y6c{bottom:176.078700px;}
.y99{bottom:176.078850px;}
.yd4{bottom:176.627100px;}
.y29{bottom:180.212550px;}
.y17f{bottom:186.427950px;}
.ycd{bottom:189.160950px;}
.yd3{bottom:196.431600px;}
.y20f{bottom:196.814850px;}
.y1df{bottom:197.036850px;}
.y21d{bottom:197.042850px;}
.y6b{bottom:197.078700px;}
.y98{bottom:197.078850px;}
.y28{bottom:201.212550px;}
.y17e{bottom:201.427950px;}
.y3b{bottom:203.458800px;}
.ycc{bottom:207.520950px;}
.yd2{bottom:216.236100px;}
.y20e{bottom:217.820850px;}
.y1de{bottom:218.042850px;}
.y21c{bottom:218.048850px;}
.y6a{bottom:218.078700px;}
.y97{bottom:218.078850px;}
.y3a{bottom:221.454300px;}
.y27{bottom:222.212550px;}
.y17d{bottom:224.455950px;}
.ycb{bottom:225.880950px;}
.y19e{bottom:229.840050px;}
.y1bb{bottom:232.440900px;}
.yd5{bottom:236.566500px;}
.y20d{bottom:238.826850px;}
.y1dd{bottom:239.048850px;}
.y21b{bottom:239.054850px;}
.y69{bottom:239.078700px;}
.y96{bottom:239.078850px;}
.y39{bottom:239.449800px;}
.y12c{bottom:241.459200px;}
.y26{bottom:243.212550px;}
.yca{bottom:244.240950px;}
.y17c{bottom:247.483950px;}
.y1b8{bottom:253.009200px;}
.y38{bottom:257.445300px;}
.y12b{bottom:258.482850px;}
.y14e{bottom:259.543028px;}
.y20c{bottom:259.832850px;}
.y1dc{bottom:260.054850px;}
.y21a{bottom:260.060850px;}
.y68{bottom:260.078700px;}
.y95{bottom:260.078850px;}
.yc9{bottom:262.600950px;}
.y25{bottom:264.212550px;}
.y12d{bottom:270.186450px;}
.y17b{bottom:270.511950px;}
.y1b7{bottom:272.813700px;}
.y37{bottom:275.440800px;}
.y12a{bottom:275.506350px;}
.y20b{bottom:280.838850px;}
.yc8{bottom:280.960950px;}
.y1db{bottom:281.060850px;}
.y219{bottom:281.066850px;}
.y67{bottom:281.078700px;}
.y94{bottom:281.078850px;}
.y24{bottom:285.212550px;}
.y14f{bottom:289.330072px;}
.y129{bottom:292.530000px;}
.y36{bottom:293.436300px;}
.y17a{bottom:293.539950px;}
.y14d{bottom:293.594484px;}
.yc7{bottom:299.320950px;}
.y20a{bottom:301.844850px;}
.y1da{bottom:302.066850px;}
.y218{bottom:302.072850px;}
.y66{bottom:302.078700px;}
.y93{bottom:302.078850px;}
.y127{bottom:309.553650px;}
.y35{bottom:311.431800px;}
.y179{bottom:316.665900px;}
.yc6{bottom:317.680950px;}
.y23{bottom:320.752350px;}
.y209{bottom:322.850850px;}
.y1d9{bottom:323.072850px;}
.y65{bottom:323.078700px;}
.y92{bottom:323.078850px;}
.y126{bottom:326.577300px;}
.y34{bottom:329.427300px;}
.y178{bottom:331.665900px;}
.y150{bottom:334.017022px;}
.yc5{bottom:336.040950px;}
.y128{bottom:337.216950px;}
.y125{bottom:343.600800px;}
.y208{bottom:343.856850px;}
.y64{bottom:344.078700px;}
.y91{bottom:344.078850px;}
.y151{bottom:349.976647px;}
.yc4{bottom:354.400950px;}
.y177{bottom:354.693900px;}
.y217{bottom:357.513600px;}
.y1ba{bottom:359.609700px;}
.y124{bottom:360.624450px;}
.y33{bottom:364.432800px;}
.y207{bottom:364.862850px;}
.y63{bottom:365.078700px;}
.y90{bottom:365.078850px;}
.yc3{bottom:372.760950px;}
.y122{bottom:377.648100px;}
.y176{bottom:377.721900px;}
.y216{bottom:378.513600px;}
.y1b9{bottom:379.414200px;}
.y1d8{bottom:379.441050px;}
.y32{bottom:382.428300px;}
.y206{bottom:385.868850px;}
.y62{bottom:386.078700px;}
.y8f{bottom:386.078850px;}
.yc2{bottom:391.120950px;}
.y175{bottom:392.721900px;}
.y121{bottom:394.671600px;}
.y22{bottom:397.023450px;}
.y31{bottom:400.423800px;}
.y205{bottom:406.874850px;}
.y61{bottom:407.078700px;}
.y8e{bottom:407.078850px;}
.yc1{bottom:409.480950px;}
.y215{bottom:410.811150px;}
.y120{bottom:411.695250px;}
.y174{bottom:415.749900px;}
.y21{bottom:416.827950px;}
.y154{bottom:427.642566px;}
.yc0{bottom:427.840950px;}
.y204{bottom:427.880850px;}
.y1d7{bottom:428.072850px;}
.y60{bottom:428.078700px;}
.y8d{bottom:428.078850px;}
.y11f{bottom:428.718900px;}
.y30{bottom:435.429300px;}
.y173{bottom:438.777900px;}
.y11e{bottom:445.742550px;}
.ybf{bottom:446.200950px;}
.y203{bottom:448.886850px;}
.y5f{bottom:449.078700px;}
.y8c{bottom:449.078850px;}
.y2f{bottom:453.429300px;}
.y20{bottom:457.851900px;}
.y153{bottom:459.561816px;}
.y172{bottom:461.805900px;}
.y11d{bottom:462.766050px;}
.ybe{bottom:464.560950px;}
.y123{bottom:464.894100px;}
.y202{bottom:469.892850px;}
.y5e{bottom:470.078700px;}
.y8b{bottom:470.078850px;}
.y2e{bottom:471.429300px;}
.y1d6{bottom:475.529400px;}
.y1f{bottom:477.656400px;}
.y14c{bottom:477.666415px;}
.y11c{bottom:479.789700px;}
.ybd{bottom:482.920950px;}
.y1be{bottom:484.441050px;}
.y171{bottom:484.833900px;}
.y2d{bottom:489.429300px;}
.y201{bottom:490.898850px;}
.y5d{bottom:491.078700px;}
.y8a{bottom:491.078850px;}
.y11b{bottom:496.813350px;}
.y1e{bottom:497.460900px;}
.y152{bottom:497.864916px;}
.ybc{bottom:501.280950px;}
.y170{bottom:507.861900px;}
.y200{bottom:511.904850px;}
.y1d5{bottom:512.072850px;}
.y5c{bottom:512.078700px;}
.y89{bottom:512.078850px;}
.y11a{bottom:513.837000px;}
.y1d{bottom:517.265400px;}
.ybb{bottom:519.640950px;}
.y119{bottom:530.860500px;}
.y16f{bottom:530.889900px;}
.y1ff{bottom:532.910850px;}
.y1d4{bottom:533.072850px;}
.y5b{bottom:533.078700px;}
.y1a1{bottom:533.078850px;}
.y1bd{bottom:534.963750px;}
.y149{bottom:535.121065px;}
.y1c{bottom:537.069900px;}
.yba{bottom:538.000950px;}
.y88{bottom:547.441050px;}
.y118{bottom:547.884150px;}
.y1fe{bottom:553.916850px;}
.y16e{bottom:553.917900px;}
.y1d3{bottom:554.072850px;}
.y19a{bottom:554.078700px;}
.y1a0{bottom:554.078850px;}
.y1bc{bottom:554.768250px;}
.yb9{bottom:556.360950px;}
.y1b{bottom:556.874400px;}
.y116{bottom:564.907800px;}
.yb8{bottom:574.720950px;}
.y1fd{bottom:574.922850px;}
.y1d2{bottom:575.072850px;}
.y5a{bottom:575.078700px;}
.y19f{bottom:575.078850px;}
.y1a{bottom:576.678900px;}
.y16d{bottom:576.945900px;}
.y115{bottom:581.931450px;}
.y117{bottom:584.059350px;}
.y14b{bottom:587.251584px;}
.yb7{bottom:593.080950px;}
.y1fc{bottom:595.928850px;}
.y1d1{bottom:596.072850px;}
.y59{bottom:596.078700px;}
.y87{bottom:596.078850px;}
.y19{bottom:596.483400px;}
.y114{bottom:598.954950px;}
.y16c{bottom:599.973900px;}
.y199{bottom:609.112500px;}
.yb6{bottom:611.440950px;}
.y113{bottom:615.983860px;}
.y18{bottom:616.287900px;}
.y1fb{bottom:616.934850px;}
.y58{bottom:617.078700px;}
.y86{bottom:617.078850px;}
.y112{bottom:618.106500px;}
.y16b{bottom:623.001900px;}
.yb5{bottom:629.800950px;}
.y111{bottom:633.007510px;}
.y138{bottom:634.083507px;}
.y110{bottom:635.130150px;}
.y14a{bottom:637.262665px;}
.y1fa{bottom:637.940850px;}
.y16a{bottom:638.001900px;}
.y57{bottom:638.078700px;}
.y85{bottom:638.078850px;}
.y1d0{bottom:643.529400px;}
.y17{bottom:647.385300px;}
.y139{bottom:647.910926px;}
.yb4{bottom:648.160950px;}
.y10f{bottom:650.031160px;}
.y10e{bottom:652.153800px;}
.y1f9{bottom:658.946850px;}
.y56{bottom:659.078700px;}
.y84{bottom:659.078850px;}
.y169{bottom:661.029900px;}
.yb3{bottom:666.520950px;}
.y10d{bottom:667.054810px;}
.y137{bottom:668.134963px;}
.y10c{bottom:669.177450px;}
.y168{bottom:676.029900px;}
.y1f8{bottom:679.952850px;}
.y1cf{bottom:680.066850px;}
.y55{bottom:680.078700px;}
.y83{bottom:680.078850px;}
.y198{bottom:682.064850px;}
.y10b{bottom:684.078310px;}
.yb2{bottom:684.880950px;}
.y10a{bottom:686.200950px;}
.y167{bottom:699.057900px;}
.y1f7{bottom:700.958850px;}
.y1ce{bottom:701.072850px;}
.y82{bottom:701.078850px;}
.y109{bottom:701.101960px;}
.y108{bottom:703.224600px;}
.yb1{bottom:703.240950px;}
.y197{bottom:704.672850px;}
.y136{bottom:706.438063px;}
.y54{bottom:715.440900px;}
.y107{bottom:718.125610px;}
.y135{bottom:719.205763px;}
.y196{bottom:719.672850px;}
.y106{bottom:720.248250px;}
.yb0{bottom:721.600950px;}
.y1f6{bottom:721.964850px;}
.y81{bottom:722.078850px;}
.y166{bottom:722.085900px;}
.y11{bottom:726.666900px;}
.y105{bottom:735.149260px;}
.y104{bottom:737.271900px;}
.y13e{bottom:737.284826px;}
.yaf{bottom:739.960950px;}
.y1b6{bottom:741.581100px;}
.y195{bottom:742.280850px;}
.y1f5{bottom:742.970850px;}
.y80{bottom:743.078850px;}
.y10{bottom:744.666900px;}
.y165{bottom:745.113900px;}
.y1cd{bottom:748.529400px;}
.y13d{bottom:750.052526px;}
.y103{bottom:752.172760px;}
.y102{bottom:754.295400px;}
.y13a{bottom:756.436376px;}
.y194{bottom:757.280850px;}
.yae{bottom:758.320950px;}
.y1b5{bottom:759.941100px;}
.y164{bottom:760.113900px;}
.yf{bottom:762.666900px;}
.y1f4{bottom:763.976850px;}
.y53{bottom:764.078700px;}
.y7f{bottom:764.078850px;}
.y13c{bottom:764.952432px;}
.y101{bottom:769.196410px;}
.y100{bottom:771.319050px;}
.yad{bottom:776.680950px;}
.y1b4{bottom:778.301100px;}
.y193{bottom:779.888850px;}
.ye{bottom:780.666900px;}
.y163{bottom:783.141900px;}
.y1f3{bottom:784.982850px;}
.y1cc{bottom:785.024850px;}
.y52{bottom:785.078700px;}
.y7e{bottom:785.078850px;}
.yff{bottom:786.220060px;}
.yfe{bottom:788.342700px;}
.yac{bottom:795.040950px;}
.y1b3{bottom:796.661100px;}
.y13b{bottom:796.871682px;}
.y162{bottom:798.141900px;}
.yd{bottom:798.666900px;}
.y192{bottom:802.496850px;}
.yfd{bottom:803.243560px;}
.yfc{bottom:805.366200px;}
.y1f2{bottom:805.988850px;}
.y1cb{bottom:806.030850px;}
.y51{bottom:806.078700px;}
.y7d{bottom:806.078850px;}
.y134{bottom:810.711869px;}
.yab{bottom:813.400950px;}
.y1b2{bottom:815.021100px;}
.yc{bottom:816.666900px;}
.yfb{bottom:820.267210px;}
.y161{bottom:821.169900px;}
.yfa{bottom:822.389850px;}
.y191{bottom:825.104850px;}
.y13f{bottom:826.658726px;}
.y1f1{bottom:826.994850px;}
.y1ca{bottom:827.036850px;}
.y50{bottom:827.078700px;}
.y7c{bottom:827.078850px;}
.yaa{bottom:831.760950px;}
.y1b1{bottom:833.381100px;}
.yb{bottom:834.666900px;}
.yf9{bottom:837.290860px;}
.yf8{bottom:839.413500px;}
.y141{bottom:839.426426px;}
.y214{bottom:841.441050px;}
.y160{bottom:844.197900px;}
.y190{bottom:847.712850px;}
.y1f0{bottom:848.000850px;}
.y1c9{bottom:848.042850px;}
.y4f{bottom:848.078700px;}
.y7b{bottom:848.078850px;}
.ya9{bottom:850.120950px;}
.y1b0{bottom:851.741100px;}
.ya{bottom:852.666900px;}
.yf7{bottom:854.314510px;}
.yf6{bottom:856.437150px;}
.y140{bottom:856.445770px;}
.y15f{bottom:867.225900px;}
.ya8{bottom:868.480950px;}
.y1ef{bottom:869.006850px;}
.y1c8{bottom:869.048850px;}
.y4e{bottom:869.078700px;}
.y7a{bottom:869.078850px;}
.y1af{bottom:870.101100px;}
.y18f{bottom:870.320850px;}
.y9{bottom:870.666900px;}
.yf5{bottom:871.338010px;}
.yf4{bottom:873.460650px;}
.y142{bottom:883.053657px;}
.y18e{bottom:885.320850px;}
.ya7{bottom:886.840950px;}
.yf3{bottom:888.361660px;}
.y1ae{bottom:888.461100px;}
.y8{bottom:888.666900px;}
.y1ee{bottom:890.012850px;}
.y1c7{bottom:890.054850px;}
.y4d{bottom:890.078700px;}
.y79{bottom:890.078850px;}
.y15e{bottom:890.253900px;}
.yf2{bottom:890.484300px;}
.yd6{bottom:892.248750px;}
.ya6{bottom:905.200950px;}
.yf1{bottom:905.385310px;}
.y145{bottom:906.456851px;}
.y7{bottom:906.666900px;}
.y1ad{bottom:906.821100px;}
.yf0{bottom:907.507950px;}
.y18d{bottom:907.928850px;}
.y143{bottom:910.721263px;}
.y1ed{bottom:911.018850px;}
.y1c6{bottom:911.060850px;}
.y4c{bottom:911.078700px;}
.y78{bottom:911.078850px;}
.y15d{bottom:913.281900px;}
.y146{bottom:919.224551px;}
.yef{bottom:922.408960px;}
.ya5{bottom:923.560950px;}
.yee{bottom:924.531600px;}
.y6{bottom:924.666900px;}
.y1ac{bottom:925.181100px;}
.y18c{bottom:930.536850px;}
.y1ec{bottom:932.024850px;}
.y1c5{bottom:932.066850px;}
.y4b{bottom:932.078700px;}
.y77{bottom:932.078850px;}
.y12f{bottom:934.137225px;}
.y15c{bottom:936.309900px;}
.yed{bottom:939.432460px;}
.y144{bottom:940.508307px;}
.yec{bottom:941.555100px;}
.ya4{bottom:941.920950px;}
.y1ab{bottom:943.541100px;}
.y18b{bottom:945.536850px;}
.y1eb{bottom:953.030850px;}
.y1c4{bottom:953.072850px;}
.y4a{bottom:953.078700px;}
.y76{bottom:953.078850px;}
.yeb{bottom:956.456260px;}
.yea{bottom:958.578900px;}
.y15b{bottom:959.337900px;}
.y5{bottom:959.674800px;}
.ya3{bottom:960.280950px;}
.y148{bottom:961.779295px;}
.y1aa{bottom:961.901100px;}
.y18a{bottom:968.144850px;}
.ye9{bottom:973.479760px;}
.y1ea{bottom:974.036850px;}
.y49{bottom:974.078700px;}
.y75{bottom:974.078850px;}
.y147{bottom:974.546995px;}
.ye8{bottom:975.602400px;}
.ya2{bottom:978.640950px;}
.y4{bottom:979.474800px;}
.y1a9{bottom:980.261100px;}
.y15a{bottom:982.365900px;}
.ye7{bottom:990.503410px;}
.y189{bottom:990.752850px;}
.ye6{bottom:992.626050px;}
.y1e9{bottom:995.042850px;}
.y48{bottom:995.078700px;}
.y74{bottom:995.078850px;}
.ya1{bottom:997.000950px;}
.y1a8{bottom:998.621100px;}
.y1c3{bottom:1000.529250px;}
.y159{bottom:1005.393900px;}
.ye5{bottom:1007.526910px;}
.ye4{bottom:1009.649550px;}
.y188{bottom:1013.360850px;}
.ya0{bottom:1015.360950px;}
.y1e8{bottom:1016.048850px;}
.y47{bottom:1016.078700px;}
.y73{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y1a7{bottom:1016.981100px;}
.ye3{bottom:1024.550710px;}
.ye2{bottom:1026.673350px;}
.y12e{bottom:1026.703050px;}
.y158{bottom:1028.421900px;}
.y9f{bottom:1033.720950px;}
.y1a6{bottom:1035.341100px;}
.y187{bottom:1035.968850px;}
.y1e7{bottom:1037.054850px;}
.y46{bottom:1037.078700px;}
.y72{bottom:1037.078850px;}
.y130{bottom:1039.470750px;}
.ye1{bottom:1041.574360px;}
.y157{bottom:1043.421900px;}
.ye0{bottom:1043.697000px;}
.y2{bottom:1049.282550px;}
.y9e{bottom:1052.080950px;}
.y1a5{bottom:1054.001100px;}
.y1e6{bottom:1058.060850px;}
.y45{bottom:1058.078700px;}
.y71{bottom:1058.078850px;}
.y186{bottom:1058.576850px;}
.ydf{bottom:1058.598160px;}
.yde{bottom:1060.720800px;}
.y131{bottom:1061.814225px;}
.y1c2{bottom:1063.529250px;}
.y156{bottom:1066.449900px;}
.y1a4{bottom:1069.001100px;}
.y9d{bottom:1070.440950px;}
.ydd{bottom:1075.621660px;}
.ydc{bottom:1077.744300px;}
.y1e5{bottom:1079.066850px;}
.y44{bottom:1079.078700px;}
.y70{bottom:1079.078850px;}
.y132{bottom:1079.906056px;}
.y185{bottom:1081.184850px;}
.y9c{bottom:1088.800950px;}
.ydb{bottom:1092.645310px;}
.y133{bottom:1093.733475px;}
.yda{bottom:1094.767950px;}
.y155{bottom:1099.478400px;}
.y1e4{bottom:1100.072850px;}
.y43{bottom:1100.078700px;}
.y6f{bottom:1100.078850px;}
.y184{bottom:1103.792850px;}
.yd9{bottom:1109.668810px;}
.y16{bottom:1109.815500px;}
.yd8{bottom:1111.791450px;}
.y9b{bottom:1119.282900px;}
.y42{bottom:1121.078700px;}
.y6e{bottom:1121.078850px;}
.y1c1{bottom:1125.451800px;}
.y183{bottom:1126.400850px;}
.yd7{bottom:1126.687200px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y41{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h18{height:35.494206px;}
.h19{height:36.540019px;}
.h11{height:38.226562px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h12{height:39.000000px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.h5{height:43.546875px;}
.ha{height:43.875000px;}
.h1d{height:43.899000px;}
.h15{height:44.367966px;}
.h14{height:44.687160px;}
.h9{height:45.615234px;}
.h1b{height:45.674913px;}
.hd{height:48.134766px;}
.hc{height:48.750000px;}
.h1c{height:49.453125px;}
.h1a{height:50.176758px;}
.h4{height:53.625000px;}
.hb{height:54.738281px;}
.h3{height:81.231445px;}
.h17{height:87.245760px;}
.h16{height:87.246360px;}
.h13{height:905.512500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:710.641500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.069700px;}
.xe{left:108.283500px;}
.x10{left:112.242150px;}
.x76{left:113.258100px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xf{left:142.266150px;}
.x56{left:166.273650px;}
.x55{left:183.297150px;}
.x75{left:243.398100px;}
.x77{left:248.064000px;}
.x74{left:251.474100px;}
.x57{left:273.739381px;}
.x5c{left:285.447362px;}
.x5{left:300.189000px;}
.x7a{left:304.472400px;}
.xc{left:317.196900px;}
.x6d{left:326.967922px;}
.x62{left:342.914780px;}
.x66{left:345.046985px;}
.x69{left:350.371116px;}
.x67{left:353.563041px;}
.x14{left:356.730130px;}
.x5f{left:358.861637px;}
.x59{left:366.317974px;}
.xd{left:368.244000px;}
.x68{left:376.966235px;}
.x61{left:379.085674px;}
.x6e{left:381.243415px;}
.x63{left:385.469524px;}
.x5a{left:386.529243px;}
.x5e{left:388.648681px;}
.x4{left:396.050700px;}
.x58{left:402.488868px;}
.x5b{left:403.548587px;}
.x71{left:411.043227px;}
.x60{left:412.064643px;}
.x5d{left:413.124362px;}
.x64{left:414.196849px;}
.x65{left:419.520980px;}
.x6c{left:423.785391px;}
.x73{left:424.883413px;}
.x70{left:429.122290px;}
.x22{left:438.645560px;}
.x1e{left:440.773610px;}
.x1c{left:450.359980px;}
.x20{left:451.418730px;}
.x72{left:452.538252px;}
.x6b{left:454.644922px;}
.x6a{left:455.704641px;}
.x1a{left:457.802430px;}
.x18{left:459.925160px;}
.x13{left:460.994850px;}
.x36{left:463.117010px;}
.x16{left:464.191690px;}
.x6f{left:467.425390px;}
.x35{left:470.575480px;}
.x3d{left:473.762130px;}
.x38{left:475.884860px;}
.x3a{left:481.210020px;}
.x44{left:482.268560px;}
.x4d{left:484.402350px;}
.x31{left:487.588460px;}
.x4c{left:493.978200px;}
.x33{left:495.041730px;}
.x4b{left:496.106100px;}
.x4f{left:497.170050px;}
.x42{left:498.233580px;}
.x49{left:503.553900px;}
.x40{left:504.612170px;}
.x4a{left:506.745750px;}
.x2f{left:517.379810px;}
.x53{left:519.513450px;}
.x28{left:520.571810px;}
.x47{left:521.641500px;}
.x54{left:522.705450px;}
.x24{left:524.838280px;}
.x52{left:526.961400px;}
.x51{left:529.089300px;}
.x2a{left:535.472820px;}
.x46{left:536.537100px;}
.x26{left:537.600720px;}
.x21{left:538.665000px;}
.x1d{left:540.793050px;}
.x1b{left:554.624700px;}
.x2d{left:555.688320px;}
.x1f{left:556.752750px;}
.x45{left:557.816700px;}
.x17{left:559.944600px;}
.x19{left:563.136450px;}
.x3e{left:566.328450px;}
.x3b{left:570.584400px;}
.x15{left:571.648350px;}
.x34{left:574.840200px;}
.x37{left:575.904300px;}
.x11{left:577.205700px;}
.x3c{left:579.096150px;}
.x43{left:582.288000px;}
.x39{left:583.352100px;}
.x12{left:585.480000px;}
.x30{left:587.607900px;}
.x32{left:600.375750px;}
.x41{left:603.567600px;}
.x3f{left:607.823550px;}
.x4e{left:611.015400px;}
.x50{left:612.079350px;}
.x2e{left:617.399250px;}
.x27{left:620.591250px;}
.x23{left:629.103000px;}
.x29{left:637.614900px;}
.x25{left:639.742800px;}
.x48{left:640.806750px;}
.xa{left:648.913650px;}
.x2c{left:657.830400px;}
.x9{left:669.721650px;}
.x2b{left:687.621750px;}
.x78{left:728.612400px;}
.x79{left:729.836400px;}
.x1{left:801.163350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:37.830400pt;}
.lsd{letter-spacing:-4.373333pt;}
.lsb{letter-spacing:-3.146667pt;}
.ls13{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-1.120000pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.906667pt;}
.ls15{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.816000pt;}
.ls1c{letter-spacing:-0.800000pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.746667pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.469333pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.404213pt;}
.ls12{letter-spacing:-0.279840pt;}
.ls6{letter-spacing:-0.272000pt;}
.ls1d{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.006400pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls4{letter-spacing:0.181333pt;}
.lsf{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls11{letter-spacing:6.826667pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.wsc0{word-spacing:-53.333333pt;}
.wsd7{word-spacing:-52.640000pt;}
.ws0{word-spacing:-22.576000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws112{word-spacing:-14.608000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws86{word-spacing:-13.226667pt;}
.ws87{word-spacing:-13.173333pt;}
.ws29{word-spacing:-13.066667pt;}
.wsbf{word-spacing:-12.853333pt;}
.ws2b{word-spacing:-12.693333pt;}
.ws106{word-spacing:-12.480000pt;}
.wsc1{word-spacing:-12.373333pt;}
.ws107{word-spacing:-12.320000pt;}
.ws2d{word-spacing:-12.160000pt;}
.ws7c{word-spacing:-11.904000pt;}
.ws125{word-spacing:-11.760000pt;}
.ws9{word-spacing:-10.992000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.704000pt;}
.ws80{word-spacing:-10.581333pt;}
.ws83{word-spacing:-10.453333pt;}
.wsa{word-spacing:-10.176000pt;}
.ws2a{word-spacing:-10.133333pt;}
.wsb{word-spacing:-9.984000pt;}
.wse{word-spacing:-9.770667pt;}
.ws5{word-spacing:-9.685333pt;}
.ws27{word-spacing:-9.600000pt;}
.ws28{word-spacing:-9.514667pt;}
.ws2c{word-spacing:-8.906667pt;}
.ws6{word-spacing:-8.793600pt;}
.ws4{word-spacing:-8.549333pt;}
.ws3{word-spacing:-8.482261pt;}
.ws88{word-spacing:-7.711147pt;}
.ws99{word-spacing:-7.431307pt;}
.wsd8{word-spacing:-7.306933pt;}
.ws10c{word-spacing:-3.680000pt;}
.wscb{word-spacing:-3.520000pt;}
.wscc{word-spacing:-3.466667pt;}
.wsea{word-spacing:-3.413333pt;}
.ws13{word-spacing:-3.402667pt;}
.ws146{word-spacing:-3.360000pt;}
.wsfd{word-spacing:-3.200000pt;}
.wsfe{word-spacing:-3.146667pt;}
.ws32{word-spacing:-2.986667pt;}
.wsff{word-spacing:-2.933333pt;}
.ws100{word-spacing:-2.880000pt;}
.ws129{word-spacing:-2.832000pt;}
.wsc9{word-spacing:-2.666667pt;}
.wse5{word-spacing:-2.613333pt;}
.wsd1{word-spacing:-2.506667pt;}
.wsab{word-spacing:-2.453333pt;}
.ws48{word-spacing:-2.400000pt;}
.ws2e{word-spacing:-2.346667pt;}
.wsc2{word-spacing:-2.256000pt;}
.ws40{word-spacing:-2.240000pt;}
.wsc3{word-spacing:-2.208000pt;}
.ws3d{word-spacing:-2.186667pt;}
.wsc7{word-spacing:-2.133333pt;}
.ws13c{word-spacing:-2.112000pt;}
.ws67{word-spacing:-2.080000pt;}
.wsdf{word-spacing:-2.064000pt;}
.ws10e{word-spacing:-2.026667pt;}
.ws118{word-spacing:-2.016000pt;}
.wsee{word-spacing:-1.973333pt;}
.ws4a{word-spacing:-1.920000pt;}
.ws50{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.wsec{word-spacing:-1.760000pt;}
.ws5c{word-spacing:-1.706667pt;}
.wsb3{word-spacing:-1.653333pt;}
.wsdb{word-spacing:-1.600000pt;}
.ws5e{word-spacing:-1.493333pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws13a{word-spacing:-1.392000pt;}
.wsf7{word-spacing:-1.386667pt;}
.wsef{word-spacing:-1.333333pt;}
.wsb1{word-spacing:-1.280000pt;}
.ws8d{word-spacing:-1.226667pt;}
.wsfc{word-spacing:-1.173333pt;}
.wsf9{word-spacing:-1.120000pt;}
.ws11c{word-spacing:-1.104000pt;}
.wsa9{word-spacing:-1.066667pt;}
.wse9{word-spacing:-1.013333pt;}
.ws19{word-spacing:-1.008000pt;}
.wsd3{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.906667pt;}
.wse4{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.816000pt;}
.ws7b{word-spacing:-0.810667pt;}
.wsd9{word-spacing:-0.768000pt;}
.ws12e{word-spacing:-0.720000pt;}
.ws10d{word-spacing:-0.693333pt;}
.ws128{word-spacing:-0.672000pt;}
.ws44{word-spacing:-0.640000pt;}
.ws148{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.432000pt;}
.wsd2{word-spacing:-0.426667pt;}
.wsac{word-spacing:-0.373333pt;}
.ws131{word-spacing:-0.336000pt;}
.ws60{word-spacing:-0.320000pt;}
.ws11b{word-spacing:-0.288000pt;}
.ws9e{word-spacing:-0.266667pt;}
.ws97{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.053333pt;}
.wsf{word-spacing:0.000000pt;}
.ws45{word-spacing:0.053333pt;}
.ws12{word-spacing:0.090667pt;}
.ws8e{word-spacing:0.106667pt;}
.ws16{word-spacing:0.144000pt;}
.ws46{word-spacing:0.160000pt;}
.ws10{word-spacing:0.181333pt;}
.wsa5{word-spacing:0.213333pt;}
.ws11{word-spacing:0.272000pt;}
.wse3{word-spacing:0.320000pt;}
.ws124{word-spacing:0.336000pt;}
.wsc4{word-spacing:0.373333pt;}
.ws12c{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.wsf4{word-spacing:0.480000pt;}
.ws84{word-spacing:0.528000pt;}
.ws47{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.576000pt;}
.ws4f{word-spacing:0.586667pt;}
.ws15{word-spacing:0.614400pt;}
.ws17{word-spacing:0.624000pt;}
.wsc6{word-spacing:0.640000pt;}
.ws119{word-spacing:0.672000pt;}
.ws41{word-spacing:0.693333pt;}
.wsdc{word-spacing:0.720000pt;}
.wsc5{word-spacing:0.746667pt;}
.ws5d{word-spacing:0.800000pt;}
.ws26{word-spacing:0.816000pt;}
.wse7{word-spacing:0.853333pt;}
.wse6{word-spacing:0.906667pt;}
.wsad{word-spacing:0.960000pt;}
.wsf6{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.056000pt;}
.ws3f{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.120000pt;}
.ws11d{word-spacing:1.152000pt;}
.ws3b{word-spacing:1.173333pt;}
.wsed{word-spacing:1.226667pt;}
.ws12b{word-spacing:1.296000pt;}
.ws91{word-spacing:1.386667pt;}
.wscf{word-spacing:1.440000pt;}
.ws90{word-spacing:1.493333pt;}
.ws51{word-spacing:1.546667pt;}
.ws9f{word-spacing:1.600000pt;}
.ws24{word-spacing:1.653333pt;}
.ws117{word-spacing:1.728000pt;}
.ws30{word-spacing:1.760000pt;}
.ws37{word-spacing:1.813333pt;}
.ws105{word-spacing:1.824000pt;}
.ws54{word-spacing:1.866667pt;}
.ws104{word-spacing:1.872000pt;}
.ws36{word-spacing:1.920000pt;}
.ws58{word-spacing:1.973333pt;}
.ws65{word-spacing:2.026667pt;}
.ws130{word-spacing:2.064000pt;}
.ws31{word-spacing:2.080000pt;}
.ws127{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.186667pt;}
.ws69{word-spacing:2.240000pt;}
.ws12f{word-spacing:2.256000pt;}
.wse2{word-spacing:2.293333pt;}
.ws12a{word-spacing:2.304000pt;}
.wsf0{word-spacing:2.346667pt;}
.ws136{word-spacing:2.352000pt;}
.wsf5{word-spacing:2.400000pt;}
.ws8f{word-spacing:2.453333pt;}
.ws121{word-spacing:2.496000pt;}
.ws94{word-spacing:2.506667pt;}
.ws42{word-spacing:2.560000pt;}
.ws43{word-spacing:2.613333pt;}
.wse1{word-spacing:2.666667pt;}
.ws126{word-spacing:2.688000pt;}
.wsb2{word-spacing:2.773333pt;}
.wsda{word-spacing:2.826667pt;}
.ws66{word-spacing:2.880000pt;}
.ws111{word-spacing:2.933333pt;}
.ws137{word-spacing:2.976000pt;}
.ws3e{word-spacing:2.986667pt;}
.ws8c{word-spacing:3.093333pt;}
.ws55{word-spacing:3.146667pt;}
.ws34{word-spacing:3.200000pt;}
.ws134{word-spacing:3.216000pt;}
.wseb{word-spacing:3.253333pt;}
.ws4e{word-spacing:3.306667pt;}
.ws56{word-spacing:3.360000pt;}
.ws64{word-spacing:3.413333pt;}
.wsa1{word-spacing:3.520000pt;}
.ws11a{word-spacing:3.552000pt;}
.ws92{word-spacing:3.573333pt;}
.ws35{word-spacing:3.680000pt;}
.ws33{word-spacing:3.733333pt;}
.ws122{word-spacing:3.744000pt;}
.ws11f{word-spacing:3.792000pt;}
.ws120{word-spacing:3.840000pt;}
.ws13d{word-spacing:3.888000pt;}
.wsf8{word-spacing:3.893333pt;}
.wsde{word-spacing:3.946667pt;}
.wsa7{word-spacing:4.000000pt;}
.ws110{word-spacing:4.053333pt;}
.ws18{word-spacing:4.128000pt;}
.ws59{word-spacing:4.160000pt;}
.ws133{word-spacing:4.176000pt;}
.ws52{word-spacing:4.213333pt;}
.wsca{word-spacing:4.266667pt;}
.wsd4{word-spacing:4.320000pt;}
.ws1f{word-spacing:4.368000pt;}
.wsce{word-spacing:4.373333pt;}
.ws1e{word-spacing:4.416000pt;}
.ws49{word-spacing:4.533333pt;}
.wse8{word-spacing:4.586667pt;}
.ws139{word-spacing:4.608000pt;}
.wsa8{word-spacing:4.746667pt;}
.ws96{word-spacing:4.800000pt;}
.wsd0{word-spacing:4.906667pt;}
.ws23{word-spacing:4.960000pt;}
.ws63{word-spacing:5.013333pt;}
.ws9c{word-spacing:5.120000pt;}
.wsd5{word-spacing:5.173333pt;}
.wsaf{word-spacing:5.226667pt;}
.wsa6{word-spacing:5.280000pt;}
.ws13f{word-spacing:5.328000pt;}
.ws10b{word-spacing:5.333333pt;}
.ws113{word-spacing:5.376000pt;}
.ws8b{word-spacing:5.386667pt;}
.ws12d{word-spacing:5.424000pt;}
.ws93{word-spacing:5.440000pt;}
.wsf3{word-spacing:5.493333pt;}
.ws138{word-spacing:5.520000pt;}
.ws7e{word-spacing:5.568000pt;}
.wsb0{word-spacing:5.600000pt;}
.ws11e{word-spacing:5.616000pt;}
.ws62{word-spacing:5.653333pt;}
.wsa0{word-spacing:5.706667pt;}
.ws95{word-spacing:5.813333pt;}
.wsc8{word-spacing:5.866667pt;}
.ws9a{word-spacing:5.920000pt;}
.ws9b{word-spacing:5.973333pt;}
.ws115{word-spacing:6.000000pt;}
.ws140{word-spacing:6.048000pt;}
.ws5b{word-spacing:6.080000pt;}
.ws5a{word-spacing:6.133333pt;}
.ws61{word-spacing:6.186667pt;}
.ws53{word-spacing:6.293333pt;}
.ws4b{word-spacing:6.453333pt;}
.ws102{word-spacing:6.560000pt;}
.ws101{word-spacing:6.613333pt;}
.ws141{word-spacing:6.624000pt;}
.ws10a{word-spacing:6.773333pt;}
.ws13b{word-spacing:6.816000pt;}
.ws8a{word-spacing:6.826667pt;}
.ws89{word-spacing:6.880000pt;}
.ws13e{word-spacing:6.912000pt;}
.ws20{word-spacing:6.933333pt;}
.wsfa{word-spacing:6.986667pt;}
.wse0{word-spacing:7.040000pt;}
.wsa2{word-spacing:7.146667pt;}
.wscd{word-spacing:7.200000pt;}
.wsae{word-spacing:7.253333pt;}
.ws9d{word-spacing:7.306667pt;}
.wsa3{word-spacing:7.360000pt;}
.ws103{word-spacing:7.413333pt;}
.wsf2{word-spacing:7.626667pt;}
.ws108{word-spacing:7.680000pt;}
.ws21{word-spacing:7.733333pt;}
.ws114{word-spacing:7.776000pt;}
.ws25{word-spacing:7.786667pt;}
.wsfb{word-spacing:8.213333pt;}
.ws135{word-spacing:8.256000pt;}
.wsaa{word-spacing:8.320000pt;}
.wsdd{word-spacing:8.906667pt;}
.ws98{word-spacing:9.120000pt;}
.ws143{word-spacing:9.173333pt;}
.ws38{word-spacing:9.440000pt;}
.ws116{word-spacing:9.504000pt;}
.ws39{word-spacing:9.546667pt;}
.ws123{word-spacing:9.744000pt;}
.wsd6{word-spacing:10.293333pt;}
.ws142{word-spacing:10.506667pt;}
.ws144{word-spacing:10.720000pt;}
.ws4d{word-spacing:10.933333pt;}
.ws57{word-spacing:10.986667pt;}
.ws4c{word-spacing:11.040000pt;}
.ws109{word-spacing:11.200000pt;}
.ws10f{word-spacing:12.853333pt;}
.ws14a{word-spacing:13.440000pt;}
.ws147{word-spacing:13.706667pt;}
.ws132{word-spacing:13.728000pt;}
.ws149{word-spacing:16.800000pt;}
.ws7d{word-spacing:17.659148pt;}
.ws145{word-spacing:18.826667pt;}
.ws14b{word-spacing:22.032000pt;}
.ws81{word-spacing:27.690667pt;}
.ws2{word-spacing:29.907059pt;}
.ws1{word-spacing:29.917472pt;}
.ws82{word-spacing:38.528000pt;}
.ws85{word-spacing:62.336000pt;}
.ws7f{word-spacing:86.570667pt;}
.ws72{word-spacing:87.765333pt;}
.ws7a{word-spacing:129.224533pt;}
.ws6c{word-spacing:139.818667pt;}
.ws6b{word-spacing:141.952000pt;}
.ws6d{word-spacing:147.968000pt;}
.ws75{word-spacing:155.093333pt;}
.ws76{word-spacing:158.421333pt;}
.ws77{word-spacing:166.570667pt;}
.ws74{word-spacing:168.320000pt;}
.ws70{word-spacing:168.789333pt;}
.ws6e{word-spacing:175.232000pt;}
.ws73{word-spacing:180.778667pt;}
.ws79{word-spacing:182.583467pt;}
.ws78{word-spacing:184.576000pt;}
.ws71{word-spacing:187.008000pt;}
.ws6f{word-spacing:190.208000pt;}
.ws6a{word-spacing:218.978133pt;}
.wsb9{word-spacing:239.360000pt;}
.wsb8{word-spacing:248.217600pt;}
.wsba{word-spacing:249.228800pt;}
.wsb5{word-spacing:255.257600pt;}
.wsbd{word-spacing:293.290667pt;}
.wsbe{word-spacing:310.656000pt;}
.wsb6{word-spacing:323.626667pt;}
.wsb4{word-spacing:334.848000pt;}
.wsbc{word-spacing:341.248000pt;}
.wsbb{word-spacing:346.837333pt;}
.wsb7{word-spacing:347.605333pt;}
._8{margin-left:-9.954667pt;}
._7{margin-left:-7.958400pt;}
._9c{margin-left:-6.796800pt;}
._4{margin-left:-5.702933pt;}
._93{margin-left:-4.656000pt;}
._1{margin-left:-3.345600pt;}
._a{margin-left:-2.441067pt;}
._0{margin-left:-1.224000pt;}
._2{width:1.088000pt;}
._1f{width:2.068800pt;}
._3{width:3.019200pt;}
._c{width:3.930667pt;}
._1c{width:5.850667pt;}
._94{width:6.832533pt;}
._9b{width:7.757333pt;}
._b{width:9.125333pt;}
._6{width:13.883733pt;}
._1e{width:14.901333pt;}
._1d{width:15.889600pt;}
._9{width:27.888000pt;}
._5{width:32.328533pt;}
._8d{width:34.595733pt;}
._8a{width:36.565333pt;}
._91{width:38.314667pt;}
._88{width:39.424000pt;}
._82{width:50.218667pt;}
._8b{width:51.328000pt;}
._83{width:57.770667pt;}
._85{width:61.994667pt;}
._7e{width:64.085333pt;}
._7f{width:69.333333pt;}
._8e{width:70.485333pt;}
._15{width:72.106667pt;}
._7c{width:73.813333pt;}
._81{width:78.165333pt;}
._87{width:80.128000pt;}
._16{width:81.333333pt;}
._80{width:83.840000pt;}
._7b{width:85.077333pt;}
._32{width:88.021333pt;}
._d{width:90.383467pt;}
._89{width:95.274667pt;}
._2c{width:105.429333pt;}
._86{width:109.184000pt;}
._8f{width:111.104000pt;}
._14{width:115.040000pt;}
._77{width:117.120000pt;}
._e{width:118.400000pt;}
._4c{width:122.123733pt;}
._8c{width:124.501333pt;}
._10{width:126.240000pt;}
._2f{width:127.274667pt;}
._11{width:129.738667pt;}
._1a{width:132.053333pt;}
._19{width:137.066667pt;}
._39{width:138.709333pt;}
._7d{width:140.074667pt;}
._1b{width:143.392000pt;}
._46{width:146.048000pt;}
._50{width:148.010667pt;}
._4e{width:150.613333pt;}
._5a{width:152.832000pt;}
._57{width:155.861333pt;}
._f{width:158.560000pt;}
._31{width:160.341333pt;}
._12{width:162.026667pt;}
._74{width:163.157333pt;}
._18{width:166.933333pt;}
._17{width:168.053333pt;}
._48{width:173.610667pt;}
._28{width:176.572267pt;}
._5e{width:179.357333pt;}
._24{width:182.502933pt;}
._13{width:184.160000pt;}
._22{width:186.866667pt;}
._49{width:188.842667pt;}
._84{width:190.549333pt;}
._3c{width:192.341333pt;}
._4f{width:195.498667pt;}
._61{width:204.330667pt;}
._26{width:206.865600pt;}
._42{width:208.469333pt;}
._92{width:209.365333pt;}
._40{width:212.224000pt;}
._5c{width:218.397333pt;}
._90{width:221.184000pt;}
._6c{width:222.643733pt;}
._23{width:229.674667pt;}
._9a{width:231.850667pt;}
._2b{width:237.696000pt;}
._75{width:241.536000pt;}
._6e{width:245.504000pt;}
._4d{width:247.538667pt;}
._29{width:251.392000pt;}
._38{width:254.506667pt;}
._3f{width:255.402667pt;}
._25{width:257.365333pt;}
._96{width:264.960000pt;}
._35{width:266.368000pt;}
._6b{width:269.909333pt;}
._95{width:271.445333pt;}
._97{width:273.365333pt;}
._98{width:275.072000pt;}
._34{width:278.144000pt;}
._72{width:280.861333pt;}
._27{width:282.500267pt;}
._55{width:285.354667pt;}
._7a{width:288.507733pt;}
._4a{width:294.144000pt;}
._69{width:300.501333pt;}
._2e{width:309.746667pt;}
._56{width:313.941333pt;}
._5d{width:322.986667pt;}
._99{width:327.850667pt;}
._45{width:329.045333pt;}
._36{width:331.562667pt;}
._3e{width:332.885333pt;}
._59{width:337.322667pt;}
._30{width:340.650667pt;}
._4b{width:341.632000pt;}
._73{width:348.330667pt;}
._41{width:359.125333pt;}
._5b{width:362.368000pt;}
._47{width:363.392000pt;}
._52{width:364.714667pt;}
._65{width:370.517333pt;}
._51{width:373.418667pt;}
._44{width:375.253333pt;}
._60{width:378.538667pt;}
._3b{width:384.981333pt;}
._68{width:388.266667pt;}
._6d{width:391.296000pt;}
._33{width:401.536000pt;}
._37{width:405.077333pt;}
._20{width:413.440000pt;}
._71{width:417.664000pt;}
._53{width:420.821333pt;}
._79{width:427.392000pt;}
._21{width:434.133333pt;}
._3d{width:436.949333pt;}
._64{width:441.173333pt;}
._2d{width:444.928000pt;}
._2a{width:466.858667pt;}
._76{width:471.210667pt;}
._43{width:479.402667pt;}
._63{width:485.290667pt;}
._6f{width:486.698667pt;}
._3a{width:489.557333pt;}
._5f{width:495.104000pt;}
._54{width:506.752000pt;}
._58{width:513.664000pt;}
._62{width:516.437333pt;}
._66{width:522.496000pt;}
._70{width:538.666667pt;}
._6a{width:546.858667pt;}
._67{width:572.074667pt;}
._78{width:669.653333pt;}
.fsb{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.396267pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:56.745600pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3f{bottom:63.299600pt;}
.y40{bottom:66.702267pt;}
.y3e{bottom:71.732400pt;}
.y213{bottom:100.258533pt;}
.y1e3{bottom:100.455867pt;}
.y19c{bottom:100.514400pt;}
.y1a3{bottom:100.514533pt;}
.yd1{bottom:102.863067pt;}
.y15{bottom:104.182267pt;}
.y2c{bottom:104.188933pt;}
.y19d{bottom:108.813467pt;}
.y182{bottom:111.441733pt;}
.y14{bottom:116.979067pt;}
.y212{bottom:118.930533pt;}
.y1e2{bottom:119.127867pt;}
.y220{bottom:119.133200pt;}
.y19b{bottom:119.181067pt;}
.y1a2{bottom:119.181200pt;}
.yd0{bottom:119.183067pt;}
.y2b{bottom:122.855600pt;}
.y1c0{bottom:124.388533pt;}
.y13{bottom:129.775867pt;}
.y181{bottom:131.911067pt;}
.ycf{bottom:135.503067pt;}
.y211{bottom:137.602533pt;}
.y1e1{bottom:137.799867pt;}
.y21f{bottom:137.805200pt;}
.y6d{bottom:137.847733pt;}
.y9a{bottom:137.847867pt;}
.y2a{bottom:141.522267pt;}
.y12{bottom:142.575867pt;}
.y180{bottom:145.244400pt;}
.y1bf{bottom:150.614267pt;}
.yce{bottom:151.823067pt;}
.y210{bottom:156.274533pt;}
.y1e0{bottom:156.471867pt;}
.y21e{bottom:156.477200pt;}
.y6c{bottom:156.514400pt;}
.y99{bottom:156.514533pt;}
.yd4{bottom:157.001867pt;}
.y29{bottom:160.188933pt;}
.y17f{bottom:165.713733pt;}
.ycd{bottom:168.143067pt;}
.yd3{bottom:174.605867pt;}
.y20f{bottom:174.946533pt;}
.y1df{bottom:175.143867pt;}
.y21d{bottom:175.149200pt;}
.y6b{bottom:175.181067pt;}
.y98{bottom:175.181200pt;}
.y28{bottom:178.855600pt;}
.y17e{bottom:179.047067pt;}
.y3b{bottom:180.852267pt;}
.ycc{bottom:184.463067pt;}
.yd2{bottom:192.209867pt;}
.y20e{bottom:193.618533pt;}
.y1de{bottom:193.815867pt;}
.y21c{bottom:193.821200pt;}
.y6a{bottom:193.847733pt;}
.y97{bottom:193.847867pt;}
.y3a{bottom:196.848267pt;}
.y27{bottom:197.522267pt;}
.y17d{bottom:199.516400pt;}
.ycb{bottom:200.783067pt;}
.y19e{bottom:204.302267pt;}
.y1bb{bottom:206.614133pt;}
.yd5{bottom:210.281333pt;}
.y20d{bottom:212.290533pt;}
.y1dd{bottom:212.487867pt;}
.y21b{bottom:212.493200pt;}
.y69{bottom:212.514400pt;}
.y96{bottom:212.514533pt;}
.y39{bottom:212.844267pt;}
.y12c{bottom:214.630400pt;}
.y26{bottom:216.188933pt;}
.yca{bottom:217.103067pt;}
.y17c{bottom:219.985733pt;}
.y1b8{bottom:224.897067pt;}
.y38{bottom:228.840267pt;}
.y12b{bottom:229.762533pt;}
.y14e{bottom:230.704914pt;}
.y20c{bottom:230.962533pt;}
.y1dc{bottom:231.159867pt;}
.y21a{bottom:231.165200pt;}
.y68{bottom:231.181067pt;}
.y95{bottom:231.181200pt;}
.yc9{bottom:233.423067pt;}
.y25{bottom:234.855600pt;}
.y12d{bottom:240.165733pt;}
.y17b{bottom:240.455067pt;}
.y1b7{bottom:242.501067pt;}
.y37{bottom:244.836267pt;}
.y12a{bottom:244.894533pt;}
.y20b{bottom:249.634533pt;}
.yc8{bottom:249.743067pt;}
.y1db{bottom:249.831867pt;}
.y219{bottom:249.837200pt;}
.y67{bottom:249.847733pt;}
.y94{bottom:249.847867pt;}
.y24{bottom:253.522267pt;}
.y14f{bottom:257.182286pt;}
.y129{bottom:260.026667pt;}
.y36{bottom:260.832267pt;}
.y17a{bottom:260.924400pt;}
.y14d{bottom:260.972874pt;}
.yc7{bottom:266.063067pt;}
.y20a{bottom:268.306533pt;}
.y1da{bottom:268.503867pt;}
.y218{bottom:268.509200pt;}
.y66{bottom:268.514400pt;}
.y93{bottom:268.514533pt;}
.y127{bottom:275.158800pt;}
.y35{bottom:276.828267pt;}
.y179{bottom:281.480800pt;}
.yc6{bottom:282.383067pt;}
.y23{bottom:285.113200pt;}
.y209{bottom:286.978533pt;}
.y1d9{bottom:287.175867pt;}
.y65{bottom:287.181067pt;}
.y92{bottom:287.181200pt;}
.y126{bottom:290.290933pt;}
.y34{bottom:292.824267pt;}
.y178{bottom:294.814133pt;}
.y150{bottom:296.904019pt;}
.yc5{bottom:298.703067pt;}
.y128{bottom:299.748400pt;}
.y125{bottom:305.422933pt;}
.y208{bottom:305.650533pt;}
.y64{bottom:305.847733pt;}
.y91{bottom:305.847867pt;}
.y151{bottom:311.090353pt;}
.yc4{bottom:315.023067pt;}
.y177{bottom:315.283467pt;}
.y217{bottom:317.789867pt;}
.y1ba{bottom:319.653067pt;}
.y124{bottom:320.555067pt;}
.y33{bottom:323.940267pt;}
.y207{bottom:324.322533pt;}
.y63{bottom:324.514400pt;}
.y90{bottom:324.514533pt;}
.yc3{bottom:331.343067pt;}
.y122{bottom:335.687200pt;}
.y176{bottom:335.752800pt;}
.y216{bottom:336.456533pt;}
.y1b9{bottom:337.257067pt;}
.y1d8{bottom:337.280933pt;}
.y32{bottom:339.936267pt;}
.y206{bottom:342.994533pt;}
.y62{bottom:343.181067pt;}
.y8f{bottom:343.181200pt;}
.yc2{bottom:347.663067pt;}
.y175{bottom:349.086133pt;}
.y121{bottom:350.819200pt;}
.y22{bottom:352.909733pt;}
.y31{bottom:355.932267pt;}
.y205{bottom:361.666533pt;}
.y61{bottom:361.847733pt;}
.y8e{bottom:361.847867pt;}
.yc1{bottom:363.983067pt;}
.y215{bottom:365.165467pt;}
.y120{bottom:365.951333pt;}
.y174{bottom:369.555467pt;}
.y21{bottom:370.513733pt;}
.y154{bottom:380.126725pt;}
.yc0{bottom:380.303067pt;}
.y204{bottom:380.338533pt;}
.y1d7{bottom:380.509200pt;}
.y60{bottom:380.514400pt;}
.y8d{bottom:380.514533pt;}
.y11f{bottom:381.083467pt;}
.y30{bottom:387.048267pt;}
.y173{bottom:390.024800pt;}
.y11e{bottom:396.215600pt;}
.ybf{bottom:396.623067pt;}
.y203{bottom:399.010533pt;}
.y5f{bottom:399.181067pt;}
.y8c{bottom:399.181200pt;}
.y2f{bottom:403.048267pt;}
.y20{bottom:406.979467pt;}
.y153{bottom:408.499392pt;}
.y172{bottom:410.494133pt;}
.y11d{bottom:411.347600pt;}
.ybe{bottom:412.943067pt;}
.y123{bottom:413.239200pt;}
.y202{bottom:417.682533pt;}
.y5e{bottom:417.847733pt;}
.y8b{bottom:417.847867pt;}
.y2e{bottom:419.048267pt;}
.y1d6{bottom:422.692800pt;}
.y1f{bottom:424.583467pt;}
.y14c{bottom:424.592369pt;}
.y11c{bottom:426.479733pt;}
.ybd{bottom:429.263067pt;}
.y1be{bottom:430.614267pt;}
.y171{bottom:430.963467pt;}
.y2d{bottom:435.048267pt;}
.y201{bottom:436.354533pt;}
.y5d{bottom:436.514400pt;}
.y8a{bottom:436.514533pt;}
.y11b{bottom:441.611867pt;}
.y1e{bottom:442.187467pt;}
.y152{bottom:442.546592pt;}
.ybc{bottom:445.583067pt;}
.y170{bottom:451.432800pt;}
.y200{bottom:455.026533pt;}
.y1d5{bottom:455.175867pt;}
.y5c{bottom:455.181067pt;}
.y89{bottom:455.181200pt;}
.y11a{bottom:456.744000pt;}
.y1d{bottom:459.791467pt;}
.ybb{bottom:461.903067pt;}
.y119{bottom:471.876000pt;}
.y16f{bottom:471.902133pt;}
.y1ff{bottom:473.698533pt;}
.y1d4{bottom:473.842533pt;}
.y5b{bottom:473.847733pt;}
.y1a1{bottom:473.847867pt;}
.y1bd{bottom:475.523333pt;}
.y149{bottom:475.663169pt;}
.y1c{bottom:477.395467pt;}
.yba{bottom:478.223067pt;}
.y88{bottom:486.614267pt;}
.y118{bottom:487.008133pt;}
.y1fe{bottom:492.370533pt;}
.y16e{bottom:492.371467pt;}
.y1d3{bottom:492.509200pt;}
.y19a{bottom:492.514400pt;}
.y1a0{bottom:492.514533pt;}
.y1bc{bottom:493.127333pt;}
.yb9{bottom:494.543067pt;}
.y1b{bottom:494.999467pt;}
.y116{bottom:502.140267pt;}
.yb8{bottom:510.863067pt;}
.y1fd{bottom:511.042533pt;}
.y1d2{bottom:511.175867pt;}
.y5a{bottom:511.181067pt;}
.y19f{bottom:511.181200pt;}
.y1a{bottom:512.603467pt;}
.y16d{bottom:512.840800pt;}
.y115{bottom:517.272400pt;}
.y117{bottom:519.163867pt;}
.y14b{bottom:522.001408pt;}
.yb7{bottom:527.183067pt;}
.y1fc{bottom:529.714533pt;}
.y1d1{bottom:529.842533pt;}
.y59{bottom:529.847733pt;}
.y87{bottom:529.847867pt;}
.y19{bottom:530.207467pt;}
.y114{bottom:532.404400pt;}
.y16c{bottom:533.310133pt;}
.y199{bottom:541.433333pt;}
.yb6{bottom:543.503067pt;}
.y113{bottom:547.541209pt;}
.y18{bottom:547.811467pt;}
.y1fb{bottom:548.386533pt;}
.y58{bottom:548.514400pt;}
.y86{bottom:548.514533pt;}
.y112{bottom:549.428000pt;}
.y16b{bottom:553.779467pt;}
.yb5{bottom:559.823067pt;}
.y111{bottom:562.673342pt;}
.y138{bottom:563.629784pt;}
.y110{bottom:564.560133pt;}
.y14a{bottom:566.455702pt;}
.y1fa{bottom:567.058533pt;}
.y16a{bottom:567.112800pt;}
.y57{bottom:567.181067pt;}
.y85{bottom:567.181200pt;}
.y1d0{bottom:572.026133pt;}
.y17{bottom:575.453600pt;}
.y139{bottom:575.920823pt;}
.yb4{bottom:576.143067pt;}
.y10f{bottom:577.805475pt;}
.y10e{bottom:579.692267pt;}
.y1f9{bottom:585.730533pt;}
.y56{bottom:585.847733pt;}
.y84{bottom:585.847867pt;}
.y169{bottom:587.582133pt;}
.yb3{bottom:592.463067pt;}
.y10d{bottom:592.937609pt;}
.y137{bottom:593.897745pt;}
.y10c{bottom:594.824400pt;}
.y168{bottom:600.915467pt;}
.y1f8{bottom:604.402533pt;}
.y1cf{bottom:604.503867pt;}
.y55{bottom:604.514400pt;}
.y83{bottom:604.514533pt;}
.y198{bottom:606.279867pt;}
.y10b{bottom:608.069609pt;}
.yb2{bottom:608.783067pt;}
.y10a{bottom:609.956400pt;}
.y167{bottom:621.384800pt;}
.y1f7{bottom:623.074533pt;}
.y1ce{bottom:623.175867pt;}
.y82{bottom:623.181200pt;}
.y109{bottom:623.201742pt;}
.y108{bottom:625.088533pt;}
.yb1{bottom:625.103067pt;}
.y197{bottom:626.375867pt;}
.y136{bottom:627.944945pt;}
.y54{bottom:635.947467pt;}
.y107{bottom:638.333875pt;}
.y135{bottom:639.294012pt;}
.y196{bottom:639.709200pt;}
.y106{bottom:640.220667pt;}
.yb0{bottom:641.423067pt;}
.y1f6{bottom:641.746533pt;}
.y81{bottom:641.847867pt;}
.y166{bottom:641.854133pt;}
.y11{bottom:645.926133pt;}
.y105{bottom:653.466009pt;}
.y104{bottom:655.352800pt;}
.y13e{bottom:655.364290pt;}
.yaf{bottom:657.743067pt;}
.y1b6{bottom:659.183200pt;}
.y195{bottom:659.805200pt;}
.y1f5{bottom:660.418533pt;}
.y80{bottom:660.514533pt;}
.y10{bottom:661.926133pt;}
.y165{bottom:662.323467pt;}
.y1cd{bottom:665.359467pt;}
.y13d{bottom:666.713357pt;}
.y103{bottom:668.598009pt;}
.y102{bottom:670.484800pt;}
.y13a{bottom:672.387890pt;}
.y194{bottom:673.138533pt;}
.yae{bottom:674.063067pt;}
.y1b5{bottom:675.503200pt;}
.y164{bottom:675.656800pt;}
.yf{bottom:677.926133pt;}
.y1f4{bottom:679.090533pt;}
.y53{bottom:679.181067pt;}
.y7f{bottom:679.181200pt;}
.y13c{bottom:679.957718pt;}
.y101{bottom:683.730142pt;}
.y100{bottom:685.616933pt;}
.yad{bottom:690.383067pt;}
.y1b4{bottom:691.823200pt;}
.y193{bottom:693.234533pt;}
.ye{bottom:693.926133pt;}
.y163{bottom:696.126133pt;}
.y1f3{bottom:697.762533pt;}
.y1cc{bottom:697.799867pt;}
.y52{bottom:697.847733pt;}
.y7e{bottom:697.847867pt;}
.yff{bottom:698.862275pt;}
.yfe{bottom:700.749067pt;}
.yac{bottom:706.703067pt;}
.y1b3{bottom:708.143200pt;}
.y13b{bottom:708.330384pt;}
.y162{bottom:709.459467pt;}
.yd{bottom:709.926133pt;}
.y192{bottom:713.330533pt;}
.yfd{bottom:713.994275pt;}
.yfc{bottom:715.881067pt;}
.y1f2{bottom:716.434533pt;}
.y1cb{bottom:716.471867pt;}
.y51{bottom:716.514400pt;}
.y7d{bottom:716.514533pt;}
.y134{bottom:720.632773pt;}
.yab{bottom:723.023067pt;}
.y1b2{bottom:724.463200pt;}
.yc{bottom:725.926133pt;}
.yfb{bottom:729.126409pt;}
.y161{bottom:729.928800pt;}
.yfa{bottom:731.013200pt;}
.y191{bottom:733.426533pt;}
.y13f{bottom:734.807757pt;}
.y1f1{bottom:735.106533pt;}
.y1ca{bottom:735.143867pt;}
.y50{bottom:735.181067pt;}
.y7c{bottom:735.181200pt;}
.yaa{bottom:739.343067pt;}
.y1b1{bottom:740.783200pt;}
.yb{bottom:741.926133pt;}
.yf9{bottom:744.258542pt;}
.yf8{bottom:746.145333pt;}
.y141{bottom:746.156823pt;}
.y214{bottom:747.947600pt;}
.y160{bottom:750.398133pt;}
.y190{bottom:753.522533pt;}
.y1f0{bottom:753.778533pt;}
.y1c9{bottom:753.815867pt;}
.y4f{bottom:753.847733pt;}
.y7b{bottom:753.847867pt;}
.ya9{bottom:755.663067pt;}
.y1b0{bottom:757.103200pt;}
.ya{bottom:757.926133pt;}
.yf7{bottom:759.390675pt;}
.yf6{bottom:761.277467pt;}
.y140{bottom:761.285129pt;}
.y15f{bottom:770.867467pt;}
.ya8{bottom:771.983067pt;}
.y1ef{bottom:772.450533pt;}
.y1c8{bottom:772.487867pt;}
.y4e{bottom:772.514400pt;}
.y7a{bottom:772.514533pt;}
.y1af{bottom:773.423200pt;}
.y18f{bottom:773.618533pt;}
.y9{bottom:773.926133pt;}
.yf5{bottom:774.522675pt;}
.yf4{bottom:776.409467pt;}
.y142{bottom:784.936584pt;}
.y18e{bottom:786.951867pt;}
.ya7{bottom:788.303067pt;}
.yf3{bottom:789.654809pt;}
.y1ae{bottom:789.743200pt;}
.y8{bottom:789.926133pt;}
.y1ee{bottom:791.122533pt;}
.y1c7{bottom:791.159867pt;}
.y4d{bottom:791.181067pt;}
.y79{bottom:791.181200pt;}
.y15e{bottom:791.336800pt;}
.yf2{bottom:791.541600pt;}
.yd6{bottom:793.110000pt;}
.ya6{bottom:804.623067pt;}
.yf1{bottom:804.786942pt;}
.y145{bottom:805.739423pt;}
.y7{bottom:805.926133pt;}
.y1ad{bottom:806.063200pt;}
.yf0{bottom:806.673733pt;}
.y18d{bottom:807.047867pt;}
.y143{bottom:809.530012pt;}
.y1ed{bottom:809.794533pt;}
.y1c6{bottom:809.831867pt;}
.y4c{bottom:809.847733pt;}
.y78{bottom:809.847867pt;}
.y15d{bottom:811.806133pt;}
.y146{bottom:817.088490pt;}
.yef{bottom:819.919075pt;}
.ya5{bottom:820.943067pt;}
.yee{bottom:821.805867pt;}
.y6{bottom:821.926133pt;}
.y1ac{bottom:822.383200pt;}
.y18c{bottom:827.143867pt;}
.y1ec{bottom:828.466533pt;}
.y1c5{bottom:828.503867pt;}
.y4b{bottom:828.514400pt;}
.y77{bottom:828.514533pt;}
.y12f{bottom:830.344200pt;}
.y15c{bottom:832.275467pt;}
.yed{bottom:835.051075pt;}
.y144{bottom:836.007384pt;}
.yec{bottom:836.937867pt;}
.ya4{bottom:837.263067pt;}
.y1ab{bottom:838.703200pt;}
.y18b{bottom:840.477200pt;}
.y1eb{bottom:847.138533pt;}
.y1c4{bottom:847.175867pt;}
.y4a{bottom:847.181067pt;}
.y76{bottom:847.181200pt;}
.yeb{bottom:850.183342pt;}
.yea{bottom:852.070133pt;}
.y15b{bottom:852.744800pt;}
.y5{bottom:853.044267pt;}
.ya3{bottom:853.583067pt;}
.y148{bottom:854.914929pt;}
.y1aa{bottom:855.023200pt;}
.y18a{bottom:860.573200pt;}
.ye9{bottom:865.315342pt;}
.y1ea{bottom:865.810533pt;}
.y49{bottom:865.847733pt;}
.y75{bottom:865.847867pt;}
.y147{bottom:866.263996pt;}
.ye8{bottom:867.202133pt;}
.ya2{bottom:869.903067pt;}
.y4{bottom:870.644267pt;}
.y1a9{bottom:871.343200pt;}
.y15a{bottom:873.214133pt;}
.ye7{bottom:880.447475pt;}
.y189{bottom:880.669200pt;}
.ye6{bottom:882.334267pt;}
.y1e9{bottom:884.482533pt;}
.y48{bottom:884.514400pt;}
.y74{bottom:884.514533pt;}
.ya1{bottom:886.223067pt;}
.y1a8{bottom:887.663200pt;}
.y1c3{bottom:889.359333pt;}
.y159{bottom:893.683467pt;}
.ye5{bottom:895.579475pt;}
.ye4{bottom:897.466267pt;}
.y188{bottom:900.765200pt;}
.ya0{bottom:902.543067pt;}
.y1e8{bottom:903.154533pt;}
.y47{bottom:903.181067pt;}
.y73{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y1a7{bottom:903.983200pt;}
.ye3{bottom:910.711742pt;}
.ye2{bottom:912.598533pt;}
.y12e{bottom:912.624933pt;}
.y158{bottom:914.152800pt;}
.y9f{bottom:918.863067pt;}
.y1a6{bottom:920.303200pt;}
.y187{bottom:920.861200pt;}
.y1e7{bottom:921.826533pt;}
.y46{bottom:921.847733pt;}
.y72{bottom:921.847867pt;}
.y130{bottom:923.974000pt;}
.ye1{bottom:925.843875pt;}
.y157{bottom:927.486133pt;}
.ye0{bottom:927.730667pt;}
.y2{bottom:932.695600pt;}
.y9e{bottom:935.183067pt;}
.y1a5{bottom:936.889867pt;}
.y1e6{bottom:940.498533pt;}
.y45{bottom:940.514400pt;}
.y71{bottom:940.514533pt;}
.y186{bottom:940.957200pt;}
.ydf{bottom:940.976142pt;}
.yde{bottom:942.862933pt;}
.y131{bottom:943.834867pt;}
.y1c2{bottom:945.359333pt;}
.y156{bottom:947.955467pt;}
.y1a4{bottom:950.223200pt;}
.y9d{bottom:951.503067pt;}
.ydd{bottom:956.108142pt;}
.ydc{bottom:957.994933pt;}
.y1e5{bottom:959.170533pt;}
.y44{bottom:959.181067pt;}
.y70{bottom:959.181200pt;}
.y132{bottom:959.916494pt;}
.y185{bottom:961.053200pt;}
.y9c{bottom:967.823067pt;}
.ydb{bottom:971.240275pt;}
.y133{bottom:972.207533pt;}
.yda{bottom:973.127067pt;}
.y155{bottom:977.314133pt;}
.y1e4{bottom:977.842533pt;}
.y43{bottom:977.847733pt;}
.y6f{bottom:977.847867pt;}
.y184{bottom:981.149200pt;}
.yd9{bottom:986.372275pt;}
.y16{bottom:986.502667pt;}
.yd8{bottom:988.259067pt;}
.y9b{bottom:994.918133pt;}
.y42{bottom:996.514400pt;}
.y6e{bottom:996.514533pt;}
.y1c1{bottom:1000.401600pt;}
.y183{bottom:1001.245200pt;}
.yd7{bottom:1001.499733pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y41{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h18{height:31.550405pt;}
.h19{height:32.480017pt;}
.h11{height:33.979167pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h12{height:34.666667pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.h5{height:38.708333pt;}
.ha{height:39.000000pt;}
.h1d{height:39.021333pt;}
.h15{height:39.438192pt;}
.h14{height:39.721920pt;}
.h9{height:40.546875pt;}
.h1b{height:40.599923pt;}
.hd{height:42.786458pt;}
.hc{height:43.333333pt;}
.h1c{height:43.958333pt;}
.h1a{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{height:48.656250pt;}
.h3{height:72.205729pt;}
.h17{height:77.551787pt;}
.h16{height:77.552320pt;}
.h13{height:804.900000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:631.681333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.173067pt;}
.xe{left:96.252000pt;}
.x10{left:99.770800pt;}
.x76{left:100.673867pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xf{left:126.458800pt;}
.x56{left:147.798800pt;}
.x55{left:162.930800pt;}
.x75{left:216.353867pt;}
.x77{left:220.501333pt;}
.x74{left:223.532533pt;}
.x57{left:243.323894pt;}
.x5c{left:253.730988pt;}
.x5{left:266.834667pt;}
.x7a{left:270.642133pt;}
.xc{left:281.952800pt;}
.x6d{left:290.638153pt;}
.x62{left:304.813137pt;}
.x66{left:306.708431pt;}
.x69{left:311.440992pt;}
.x67{left:314.278259pt;}
.x14{left:317.093449pt;}
.x5f{left:318.988122pt;}
.x59{left:325.615977pt;}
.xd{left:327.328000pt;}
.x68{left:335.081098pt;}
.x61{left:336.965043pt;}
.x6e{left:338.883035pt;}
.x63{left:342.639577pt;}
.x5a{left:343.581549pt;}
.x5e{left:345.465494pt;}
.x4{left:352.045067pt;}
.x58{left:357.767882pt;}
.x5b{left:358.709855pt;}
.x71{left:365.371757pt;}
.x60{left:366.279682pt;}
.x5d{left:367.221655pt;}
.x64{left:368.174977pt;}
.x65{left:372.907537pt;}
.x6c{left:376.698126pt;}
.x73{left:377.674145pt;}
.x70{left:381.442035pt;}
.x22{left:389.907165pt;}
.x1e{left:391.798765pt;}
.x1c{left:400.319982pt;}
.x20{left:401.261093pt;}
.x72{left:402.256224pt;}
.x6b{left:404.128820pt;}
.x6a{left:405.070792pt;}
.x1a{left:406.935493pt;}
.x18{left:408.822365pt;}
.x13{left:409.773200pt;}
.x36{left:411.659565pt;}
.x16{left:412.614835pt;}
.x6f{left:415.489235pt;}
.x35{left:418.289315pt;}
.x3d{left:421.121893pt;}
.x38{left:423.008765pt;}
.x3a{left:427.742240pt;}
.x44{left:428.683165pt;}
.x4d{left:430.579867pt;}
.x31{left:433.411965pt;}
.x4c{left:439.091733pt;}
.x33{left:440.037093pt;}
.x4b{left:440.983200pt;}
.x4f{left:441.928933pt;}
.x42{left:442.874293pt;}
.x49{left:447.603467pt;}
.x40{left:448.544151pt;}
.x4a{left:450.440667pt;}
.x2f{left:459.893165pt;}
.x53{left:461.789733pt;}
.x28{left:462.730498pt;}
.x47{left:463.681333pt;}
.x54{left:464.627067pt;}
.x24{left:466.522915pt;}
.x52{left:468.410133pt;}
.x51{left:470.301600pt;}
.x2a{left:475.975840pt;}
.x46{left:476.921867pt;}
.x26{left:477.867307pt;}
.x21{left:478.813333pt;}
.x1d{left:480.704933pt;}
.x1b{left:492.999733pt;}
.x2d{left:493.945173pt;}
.x1f{left:494.891333pt;}
.x45{left:495.837067pt;}
.x17{left:497.728533pt;}
.x19{left:500.565733pt;}
.x3e{left:503.403067pt;}
.x3b{left:507.186133pt;}
.x15{left:508.131867pt;}
.x34{left:510.969067pt;}
.x37{left:511.914933pt;}
.x11{left:513.071733pt;}
.x3c{left:514.752133pt;}
.x43{left:517.589333pt;}
.x39{left:518.535200pt;}
.x12{left:520.426667pt;}
.x30{left:522.318133pt;}
.x32{left:533.667333pt;}
.x41{left:536.504533pt;}
.x3f{left:540.287600pt;}
.x4e{left:543.124800pt;}
.x50{left:544.070533pt;}
.x2e{left:548.799333pt;}
.x27{left:551.636667pt;}
.x23{left:559.202667pt;}
.x29{left:566.768800pt;}
.x25{left:568.660267pt;}
.x48{left:569.606000pt;}
.xa{left:576.812133pt;}
.x2c{left:584.738133pt;}
.x9{left:595.308133pt;}
.x2b{left:611.219333pt;}
.x78{left:647.655467pt;}
.x79{left:648.743467pt;}
.x1{left:712.145200pt;}
}




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