
    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_ae05497c198cf35dfb9b5617.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_e7b3001a5c2790be6cfb5dbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935547;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_083a5b48e7ed48dee35185c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_1f74c2c7018128ad77e3b620.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_a9a7821ac4d785d273dafe72.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_4095efe61eb165499fdbe151.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.980000px;}
.v3{vertical-align:-17.982600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.980000px;}
.v2{vertical-align:27.972000px;}
.v1{vertical-align:38.046000px;}
.ls12{letter-spacing:-5.580000px;}
.ls3{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.003000px;}
.ls8{letter-spacing:0.007200px;}
.lsb{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.019800px;}
.lsd{letter-spacing:0.025800px;}
.lse{letter-spacing:0.035400px;}
.ls11{letter-spacing:0.042600px;}
.ls9{letter-spacing:0.052200px;}
.ls10{letter-spacing:0.058200px;}
.lsc{letter-spacing:0.108600px;}
.lsa{letter-spacing:0.154200px;}
.ls1{letter-spacing:57.426000px;}
.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;}
}
.ws5{word-spacing:-15.000000px;}
.ws85{word-spacing:-14.700000px;}
.wse0{word-spacing:-14.400000px;}
.ws1b{word-spacing:-14.100000px;}
.ws1{word-spacing:-12.510000px;}
.ws2{word-spacing:-12.243000px;}
.wscd{word-spacing:-10.800000px;}
.wsce{word-spacing:-10.500000px;}
.wsca{word-spacing:-10.200000px;}
.wsbf{word-spacing:-9.420000px;}
.ws0{word-spacing:-8.757000px;}
.wsac{word-spacing:-8.745000px;}
.ws62{word-spacing:-8.700000px;}
.wsd3{word-spacing:-8.100000px;}
.ws3{word-spacing:-7.870500px;}
.wsde{word-spacing:-7.560000px;}
.ws6{word-spacing:-7.433250px;}
.ws9{word-spacing:-7.392000px;}
.wsbb{word-spacing:-7.380000px;}
.wsad{word-spacing:-7.200000px;}
.ws4f{word-spacing:-6.900000px;}
.ws59{word-spacing:-6.000000px;}
.ws26{word-spacing:-5.400000px;}
.wsf9{word-spacing:-5.340000px;}
.wsfb{word-spacing:-5.220000px;}
.ws57{word-spacing:-5.100000px;}
.ws47{word-spacing:-5.040000px;}
.wse3{word-spacing:-4.980000px;}
.wsc9{word-spacing:-4.800000px;}
.wsf6{word-spacing:-4.560000px;}
.ws58{word-spacing:-4.500000px;}
.ws35{word-spacing:-4.440000px;}
.wsf1{word-spacing:-4.380000px;}
.wsb4{word-spacing:-4.290000px;}
.wsc8{word-spacing:-4.200000px;}
.wsd1{word-spacing:-4.080000px;}
.ws5e{word-spacing:-4.020000px;}
.wsc7{word-spacing:-3.900000px;}
.wscf{word-spacing:-3.600000px;}
.ws90{word-spacing:-3.540000px;}
.ws81{word-spacing:-3.480000px;}
.wsc4{word-spacing:-3.420000px;}
.wscb{word-spacing:-3.300000px;}
.ws82{word-spacing:-3.240000px;}
.ws51{word-spacing:-3.120000px;}
.wse5{word-spacing:-3.060000px;}
.wsb2{word-spacing:-3.000000px;}
.wsc1{word-spacing:-2.940000px;}
.wsc2{word-spacing:-2.880000px;}
.ws34{word-spacing:-2.820000px;}
.wsa{word-spacing:-2.772000px;}
.wsb1{word-spacing:-2.700000px;}
.ws36{word-spacing:-2.640000px;}
.ws56{word-spacing:-2.580000px;}
.ws24{word-spacing:-2.520000px;}
.ws2f{word-spacing:-2.400000px;}
.ws73{word-spacing:-2.340000px;}
.ws55{word-spacing:-2.280000px;}
.ws11{word-spacing:-2.160000px;}
.ws18{word-spacing:-2.142000px;}
.ws38{word-spacing:-2.100000px;}
.wsfa{word-spacing:-2.040000px;}
.ws3f{word-spacing:-1.980000px;}
.ws31{word-spacing:-1.920000px;}
.ws6d{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.800000px;}
.ws43{word-spacing:-1.740000px;}
.wsba{word-spacing:-1.680000px;}
.wsc5{word-spacing:-1.620000px;}
.wsa8{word-spacing:-1.581000px;}
.ws40{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.500000px;}
.wsdc{word-spacing:-1.440000px;}
.ws95{word-spacing:-1.380000px;}
.ws5d{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.260000px;}
.wsab{word-spacing:-1.224000px;}
.ws29{word-spacing:-1.200000px;}
.ws74{word-spacing:-1.140000px;}
.ws25{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.020000px;}
.ws1f{word-spacing:-0.960000px;}
.ws61{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.840000px;}
.ws42{word-spacing:-0.780000px;}
.ws68{word-spacing:-0.720000px;}
.wsd9{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.420000px;}
.ws99{word-spacing:-0.360000px;}
.ws50{word-spacing:-0.300000px;}
.ws70{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.120000px;}
.ws7f{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:0.051000px;}
.ws5c{word-spacing:0.060000px;}
.ws66{word-spacing:0.120000px;}
.wsd7{word-spacing:0.180000px;}
.ws77{word-spacing:0.240000px;}
.wsa1{word-spacing:0.300000px;}
.ws8d{word-spacing:0.360000px;}
.ws9a{word-spacing:0.420000px;}
.ws22{word-spacing:0.480000px;}
.ws63{word-spacing:0.540000px;}
.wsb0{word-spacing:0.600000px;}
.wsd8{word-spacing:0.660000px;}
.ws75{word-spacing:0.720000px;}
.ws33{word-spacing:0.780000px;}
.ws9b{word-spacing:0.840000px;}
.ws21{word-spacing:0.900000px;}
.wsaa{word-spacing:0.918000px;}
.wsae{word-spacing:0.960000px;}
.ws12{word-spacing:1.020000px;}
.ws17{word-spacing:1.071000px;}
.ws32{word-spacing:1.080000px;}
.wsb8{word-spacing:1.140000px;}
.ws60{word-spacing:1.200000px;}
.ws46{word-spacing:1.260000px;}
.ws6b{word-spacing:1.320000px;}
.ws6a{word-spacing:1.380000px;}
.ws3c{word-spacing:1.440000px;}
.ws3a{word-spacing:1.500000px;}
.ws96{word-spacing:1.560000px;}
.ws93{word-spacing:1.620000px;}
.wse{word-spacing:1.680000px;}
.ws78{word-spacing:1.740000px;}
.ws6c{word-spacing:1.800000px;}
.ws48{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws8f{word-spacing:1.980000px;}
.wsb3{word-spacing:2.040000px;}
.wsc{word-spacing:2.100000px;}
.ws67{word-spacing:2.160000px;}
.ws72{word-spacing:2.220000px;}
.ws87{word-spacing:2.280000px;}
.ws3e{word-spacing:2.340000px;}
.ws7d{word-spacing:2.400000px;}
.ws16{word-spacing:2.448000px;}
.wsc3{word-spacing:2.460000px;}
.ws98{word-spacing:2.520000px;}
.ws44{word-spacing:2.580000px;}
.ws2e{word-spacing:2.640000px;}
.ws20{word-spacing:2.700000px;}
.ws65{word-spacing:2.760000px;}
.ws3d{word-spacing:2.820000px;}
.ws92{word-spacing:2.880000px;}
.wsb9{word-spacing:2.940000px;}
.ws80{word-spacing:3.000000px;}
.ws1e{word-spacing:3.060000px;}
.ws10{word-spacing:3.120000px;}
.ws86{word-spacing:3.180000px;}
.ws4d{word-spacing:3.240000px;}
.ws41{word-spacing:3.300000px;}
.wsda{word-spacing:3.360000px;}
.ws7c{word-spacing:3.420000px;}
.ws94{word-spacing:3.480000px;}
.ws64{word-spacing:3.540000px;}
.wsa7{word-spacing:3.570000px;}
.ws23{word-spacing:3.600000px;}
.ws39{word-spacing:3.660000px;}
.ws9f{word-spacing:3.720000px;}
.wsd6{word-spacing:3.780000px;}
.ws71{word-spacing:4.020000px;}
.ws28{word-spacing:4.080000px;}
.ws4e{word-spacing:4.140000px;}
.ws9d{word-spacing:4.200000px;}
.ws1d{word-spacing:4.260000px;}
.ws8b{word-spacing:4.320000px;}
.ws7b{word-spacing:4.380000px;}
.wsa6{word-spacing:4.386000px;}
.ws5b{word-spacing:4.560000px;}
.wsb7{word-spacing:4.620000px;}
.ws69{word-spacing:4.680000px;}
.ws1a{word-spacing:4.743000px;}
.ws2d{word-spacing:4.800000px;}
.ws8c{word-spacing:4.860000px;}
.wsf4{word-spacing:4.920000px;}
.wsf3{word-spacing:4.980000px;}
.ws6e{word-spacing:5.040000px;}
.ws8a{word-spacing:5.100000px;}
.ws30{word-spacing:5.160000px;}
.ws5f{word-spacing:5.220000px;}
.wsfc{word-spacing:5.400000px;}
.ws84{word-spacing:5.520000px;}
.ws4c{word-spacing:5.640000px;}
.ws4a{word-spacing:5.760000px;}
.wsbc{word-spacing:5.940000px;}
.ws2a{word-spacing:6.000000px;}
.ws83{word-spacing:6.060000px;}
.wsee{word-spacing:6.120000px;}
.wsf8{word-spacing:6.180000px;}
.wsdb{word-spacing:6.300000px;}
.wsa5{word-spacing:6.477000px;}
.ws97{word-spacing:6.480000px;}
.wsc0{word-spacing:6.540000px;}
.ws9c{word-spacing:6.600000px;}
.wsf{word-spacing:6.660000px;}
.ws53{word-spacing:6.780000px;}
.wse2{word-spacing:6.840000px;}
.ws4b{word-spacing:6.960000px;}
.wsa0{word-spacing:7.020000px;}
.ws79{word-spacing:7.080000px;}
.ws2c{word-spacing:7.260000px;}
.ws76{word-spacing:7.320000px;}
.wsdf{word-spacing:7.380000px;}
.ws45{word-spacing:7.440000px;}
.wsd5{word-spacing:7.500000px;}
.ws9e{word-spacing:7.560000px;}
.ws7a{word-spacing:7.680000px;}
.wsd0{word-spacing:7.800000px;}
.ws88{word-spacing:7.860000px;}
.wsaf{word-spacing:7.920000px;}
.wsa4{word-spacing:8.160000px;}
.ws6f{word-spacing:8.220000px;}
.wsf7{word-spacing:8.460000px;}
.ws7e{word-spacing:8.700000px;}
.wsb5{word-spacing:9.120000px;}
.ws49{word-spacing:9.480000px;}
.wsd2{word-spacing:9.600000px;}
.wsb6{word-spacing:9.660000px;}
.wsd{word-spacing:9.900000px;}
.wse1{word-spacing:10.080000px;}
.wse9{word-spacing:10.260000px;}
.wsed{word-spacing:10.380000px;}
.ws13{word-spacing:10.440000px;}
.wsdd{word-spacing:10.740000px;}
.wsf2{word-spacing:10.920000px;}
.wsc6{word-spacing:11.100000px;}
.wse4{word-spacing:12.060000px;}
.wsa9{word-spacing:12.699000px;}
.ws14{word-spacing:13.380000px;}
.wsf5{word-spacing:13.680000px;}
.wsd4{word-spacing:13.800000px;}
.wse6{word-spacing:14.160000px;}
.wsa3{word-spacing:14.280000px;}
.wsa2{word-spacing:14.586000px;}
.wsf0{word-spacing:15.060000px;}
.wsec{word-spacing:15.480000px;}
.ws2b{word-spacing:16.200000px;}
.wsef{word-spacing:16.260000px;}
.wsea{word-spacing:18.000000px;}
.ws8e{word-spacing:19.500000px;}
.wse7{word-spacing:20.880000px;}
.wseb{word-spacing:21.000000px;}
.ws1c{word-spacing:22.500000px;}
.wse8{word-spacing:34.620000px;}
.wsbe{word-spacing:67.680000px;}
.wscc{word-spacing:132.180000px;}
.ws4{word-spacing:155.226000px;}
.wsbd{word-spacing:214.200000px;}
._14{margin-left:-26.461800px;}
._18{margin-left:-20.745000px;}
._15{margin-left:-18.531600px;}
._17{margin-left:-15.828600px;}
._1{margin-left:-12.235800px;}
._1b{margin-left:-8.260800px;}
._6{margin-left:-7.089000px;}
._8{margin-left:-6.000000px;}
._7{margin-left:-4.995000px;}
._5{margin-left:-3.672600px;}
._0{margin-left:-2.659200px;}
._2{margin-left:-1.151400px;}
._9{width:1.795200px;}
._a{width:2.939400px;}
._3{width:4.611600px;}
._c{width:5.682000px;}
._1a{width:7.200000px;}
._f{width:8.353200px;}
._e{width:10.116600px;}
._b{width:12.594000px;}
._4{width:14.038992px;}
._13{width:15.600000px;}
._d{width:17.550000px;}
._16{width:23.790000px;}
._12{width:43.920000px;}
._10{width:49.020000px;}
._11{width:51.000000px;}
._19{width:482.471400px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(51,100,182);}
.fsa{font-size:29.733000px;}
.fs8{font-size:31.482000px;}
.fs3{font-size:31.500000px;}
.fse{font-size:34.980000px;}
.fs2{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:48.972000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.462000px;}
.fsd{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fs4{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:49.181250px;}
.ye{bottom:63.797850px;}
.y9{bottom:71.324100px;}
.yd{bottom:77.691600px;}
.y8{bottom:84.824100px;}
.yc{bottom:91.585350px;}
.y7{bottom:98.324100px;}
.yb{bottom:105.479100px;}
.y6{bottom:111.824100px;}
.ya{bottom:119.372850px;}
.y29{bottom:157.341750px;}
.y1a8{bottom:161.533800px;}
.y143{bottom:161.614500px;}
.y12c{bottom:162.582600px;}
.y53{bottom:163.063800px;}
.y10f{bottom:165.143400px;}
.yce{bottom:165.801750px;}
.yf4{bottom:167.683200px;}
.y7e{bottom:170.212800px;}
.y28{bottom:173.088000px;}
.y1ed{bottom:173.375700px;}
.y1d0{bottom:175.505700px;}
.y20b{bottom:177.635700px;}
.y1a7{bottom:179.533800px;}
.y142{bottom:179.614500px;}
.y52{bottom:181.063800px;}
.y10e{bottom:183.143400px;}
.ycd{bottom:183.801750px;}
.y12a{bottom:184.840800px;}
.yf3{bottom:185.683200px;}
.y7d{bottom:188.212800px;}
.y27{bottom:188.834250px;}
.y12b{bottom:189.086550px;}
.y129{bottom:189.098550px;}
.y1ec{bottom:191.375700px;}
.y1cf{bottom:193.505700px;}
.y20a{bottom:195.635700px;}
.y1a6{bottom:197.533800px;}
.y141{bottom:197.614500px;}
.y182{bottom:199.794000px;}
.y10d{bottom:201.143400px;}
.ycc{bottom:201.801750px;}
.y51{bottom:203.308800px;}
.yf2{bottom:203.683200px;}
.y128{bottom:204.092550px;}
.y26{bottom:204.580500px;}
.y7c{bottom:206.212800px;}
.y1eb{bottom:211.505700px;}
.y1ce{bottom:213.635700px;}
.y126{bottom:214.840800px;}
.y140{bottom:215.614500px;}
.y15b{bottom:216.061350px;}
.ya5{bottom:216.908400px;}
.y1a5{bottom:217.663800px;}
.y181{bottom:217.794000px;}
.y127{bottom:219.086550px;}
.y125{bottom:219.098550px;}
.y10c{bottom:219.143400px;}
.ycb{bottom:219.801750px;}
.y25{bottom:220.326750px;}
.yf1{bottom:221.683200px;}
.y7b{bottom:224.212800px;}
.y50{bottom:225.553800px;}
.y1ea{bottom:229.505700px;}
.y1cd{bottom:231.635700px;}
.y13f{bottom:233.614500px;}
.y209{bottom:233.765700px;}
.y15a{bottom:234.061350px;}
.y124{bottom:234.092550px;}
.ya4{bottom:234.908400px;}
.y1a4{bottom:235.663800px;}
.y180{bottom:235.794000px;}
.y10b{bottom:237.143400px;}
.y24{bottom:240.318750px;}
.y4f{bottom:243.553800px;}
.y122{bottom:244.840800px;}
.yca{bottom:246.305700px;}
.y1e9{bottom:247.505700px;}
.y123{bottom:249.086550px;}
.y121{bottom:249.098550px;}
.y13e{bottom:251.614500px;}
.y1cc{bottom:251.765700px;}
.ya3{bottom:252.908400px;}
.y17f{bottom:253.794000px;}
.y10a{bottom:255.143400px;}
.y1a3{bottom:255.793800px;}
.yf0{bottom:256.693200px;}
.y159{bottom:257.056350px;}
.y7a{bottom:259.222800px;}
.y4e{bottom:261.553800px;}
.y120{bottom:264.092550px;}
.y11b{bottom:264.104550px;}
.y1e8{bottom:265.505700px;}
.y13d{bottom:269.614500px;}
.y1cb{bottom:269.765700px;}
.ya2{bottom:270.908400px;}
.y17e{bottom:271.794000px;}
.y109{bottom:273.143400px;}
.y1a2{bottom:273.793800px;}
.yef{bottom:274.693200px;}
.y11f{bottom:274.840800px;}
.y158{bottom:275.056350px;}
.y11e{bottom:279.086550px;}
.y11a{bottom:279.098550px;}
.y4d{bottom:279.553800px;}
.y79{bottom:281.467800px;}
.y1e7{bottom:285.635700px;}
.y13c{bottom:287.614500px;}
.y1ca{bottom:287.765700px;}
.ya1{bottom:288.908400px;}
.y17d{bottom:289.794000px;}
.y11c{bottom:289.840800px;}
.y208{bottom:289.895700px;}
.yc9{bottom:290.065500px;}
.y108{bottom:291.143400px;}
.y1a1{bottom:291.793800px;}
.y157{bottom:293.056350px;}
.y11d{bottom:294.086550px;}
.y119{bottom:294.092550px;}
.yee{bottom:296.938200px;}
.y4c{bottom:297.553800px;}
.y1e6{bottom:303.635700px;}
.y78{bottom:303.712800px;}
.y13b{bottom:305.614500px;}
.ya0{bottom:306.908400px;}
.y17c{bottom:307.794000px;}
.y1c9{bottom:307.895700px;}
.yc8{bottom:308.065500px;}
.y118{bottom:309.086550px;}
.y107{bottom:309.143400px;}
.y1a0{bottom:311.923800px;}
.yed{bottom:314.938200px;}
.y4b{bottom:315.553800px;}
.y156{bottom:316.051350px;}
.y77{bottom:321.712800px;}
.y13a{bottom:323.614500px;}
.y1e5{bottom:323.765700px;}
.y9f{bottom:324.908400px;}
.y17b{bottom:325.794000px;}
.y1c8{bottom:325.895700px;}
.yc7{bottom:326.065500px;}
.y106{bottom:327.143400px;}
.y207{bottom:328.025700px;}
.y19f{bottom:329.923800px;}
.y4a{bottom:333.553800px;}
.y155{bottom:334.051350px;}
.yec{bottom:337.183200px;}
.y139{bottom:341.614500px;}
.y1e4{bottom:341.765700px;}
.y17a{bottom:343.794000px;}
.y1c7{bottom:343.895700px;}
.y76{bottom:343.957800px;}
.yc6{bottom:344.065500px;}
.y105{bottom:345.143400px;}
.y206{bottom:346.025700px;}
.y19e{bottom:347.923800px;}
.y49{bottom:351.553800px;}
.yeb{bottom:355.183200px;}
.y154{bottom:357.046350px;}
.y138{bottom:359.614500px;}
.y9e{bottom:359.918400px;}
.y179{bottom:361.794000px;}
.y1e3{bottom:361.895700px;}
.y75{bottom:361.957800px;}
.yc5{bottom:362.065500px;}
.y1c6{bottom:364.025700px;}
.y205{bottom:366.155700px;}
.y104{bottom:367.388400px;}
.y19d{bottom:368.053800px;}
.y48{bottom:369.553800px;}
.y23{bottom:374.799600px;}
.y153{bottom:375.046350px;}
.yea{bottom:377.428200px;}
.y137{bottom:377.614500px;}
.y9d{bottom:377.918400px;}
.y178{bottom:379.794000px;}
.y1e2{bottom:379.895700px;}
.y74{bottom:379.957800px;}
.yc4{bottom:380.065500px;}
.y1c5{bottom:382.025700px;}
.y204{bottom:384.155700px;}
.y103{bottom:385.388400px;}
.y19c{bottom:386.053800px;}
.y47{bottom:387.553800px;}
.y22{bottom:392.799600px;}
.y152{bottom:393.046350px;}
.ye9{bottom:395.428200px;}
.y136{bottom:395.614500px;}
.y177{bottom:397.794000px;}
.yc3{bottom:398.065500px;}
.y1e1{bottom:400.025700px;}
.y9c{bottom:400.163400px;}
.y1c4{bottom:402.155700px;}
.y73{bottom:402.202800px;}
.y102{bottom:403.388400px;}
.y19b{bottom:404.053800px;}
.y46{bottom:405.553800px;}
.y21{bottom:410.799600px;}
.ye8{bottom:413.428200px;}
.y135{bottom:413.614500px;}
.y176{bottom:415.794000px;}
.y151{bottom:416.041350px;}
.yc2{bottom:416.065500px;}
.yc1{bottom:416.077350px;}
.y1e0{bottom:418.025700px;}
.y9b{bottom:418.163400px;}
.y1c3{bottom:420.155700px;}
.y101{bottom:421.388400px;}
.y203{bottom:422.285700px;}
.y72{bottom:424.447800px;}
.y20{bottom:428.799600px;}
.ye7{bottom:431.428200px;}
.y175{bottom:433.794000px;}
.y150{bottom:434.041350px;}
.yc0{bottom:434.077350px;}
.y19a{bottom:434.809650px;}
.y1df{bottom:436.025700px;}
.y45{bottom:436.309650px;}
.y1c2{bottom:438.155700px;}
.y100{bottom:439.388400px;}
.y134{bottom:440.118600px;}
.y202{bottom:440.285700px;}
.y9a{bottom:440.408400px;}
.y71{bottom:442.447800px;}
.y1f{bottom:446.799600px;}
.ye6{bottom:449.428200px;}
.y14f{bottom:452.041350px;}
.ybf{bottom:452.077350px;}
.y1c1{bottom:456.155700px;}
.yff{bottom:457.388400px;}
.y174{bottom:460.298100px;}
.y201{bottom:460.415700px;}
.y70{bottom:460.447800px;}
.y99{bottom:462.653400px;}
.y1e{bottom:464.799600px;}
.ybe{bottom:470.077350px;}
.y1c0{bottom:474.155700px;}
.ye5{bottom:475.932150px;}
.y200{bottom:478.415700px;}
.y6f{bottom:478.447800px;}
.y14e{bottom:479.296350px;}
.yfe{bottom:479.633400px;}
.y98{bottom:480.653400px;}
.y1d{bottom:482.799600px;}
.y133{bottom:483.878400px;}
.ybd{bottom:488.077350px;}
.y1de{bottom:492.155700px;}
.y1bf{bottom:494.285700px;}
.y199{bottom:495.577350px;}
.y6e{bottom:496.447800px;}
.y44{bottom:497.077350px;}
.yfd{bottom:497.633400px;}
.y1ff{bottom:498.545700px;}
.y1c{bottom:500.799600px;}
.y132{bottom:501.878400px;}
.y97{bottom:502.898400px;}
.ybc{bottom:506.077350px;}
.y1be{bottom:512.285700px;}
.y14d{bottom:512.922150px;}
.y198{bottom:513.577350px;}
.y43{bottom:514.327350px;}
.y6d{bottom:514.447800px;}
.yfc{bottom:515.633400px;}
.y1fe{bottom:516.545700px;}
.y1b{bottom:518.799600px;}
.ye4{bottom:519.710700px;}
.y131{bottom:519.878400px;}
.y173{bottom:523.944600px;}
.ybb{bottom:524.077350px;}
.y96{bottom:525.143400px;}
.y1dd{bottom:530.285700px;}
.y14c{bottom:530.922150px;}
.y117{bottom:531.143400px;}
.y42{bottom:531.577350px;}
.y1bd{bottom:532.415700px;}
.y6c{bottom:532.447800px;}
.yfb{bottom:533.633400px;}
.y1fd{bottom:536.675700px;}
.y1a{bottom:536.799600px;}
.ye3{bottom:537.710700px;}
.y130{bottom:537.878400px;}
.y172{bottom:541.944600px;}
.y170{bottom:541.971900px;}
.yba{bottom:542.077350px;}
.y95{bottom:547.388400px;}
.y1dc{bottom:548.285700px;}
.y41{bottom:548.827350px;}
.y116{bottom:549.143400px;}
.y197{bottom:549.577350px;}
.y1bc{bottom:550.415700px;}
.y6b{bottom:550.447800px;}
.yfa{bottom:551.633400px;}
.y1fc{bottom:554.675700px;}
.y19{bottom:554.799600px;}
.ye2{bottom:555.710700px;}
.y12f{bottom:555.878400px;}
.y16f{bottom:559.971900px;}
.yb9{bottom:560.077350px;}
.y14b{bottom:565.932150px;}
.y40{bottom:566.077350px;}
.y196{bottom:567.577350px;}
.y1db{bottom:568.415700px;}
.y6a{bottom:568.447800px;}
.y94{bottom:569.633400px;}
.y1bb{bottom:570.545700px;}
.y1fb{bottom:572.675700px;}
.y18{bottom:572.799600px;}
.ye1{bottom:573.710700px;}
.y12e{bottom:573.878400px;}
.y171{bottom:577.971900px;}
.yb8{bottom:578.077350px;}
.y3f{bottom:583.327350px;}
.y14a{bottom:583.932150px;}
.y195{bottom:585.577350px;}
.y1da{bottom:586.415700px;}
.y69{bottom:586.447800px;}
.y93{bottom:587.633400px;}
.y115{bottom:588.398400px;}
.y1ba{bottom:588.545700px;}
.ye0{bottom:591.710700px;}
.y12d{bottom:591.878400px;}
.y1fa{bottom:592.805700px;}
.yb7{bottom:596.077350px;}
.y3e{bottom:600.577350px;}
.y16e{bottom:600.966900px;}
.y17{bottom:602.559600px;}
.y194{bottom:603.577350px;}
.y68{bottom:604.447800px;}
.yf9{bottom:605.633400px;}
.y114{bottom:606.398400px;}
.y1d9{bottom:606.545700px;}
.y1b9{bottom:608.675700px;}
.y92{bottom:609.878400px;}
.y1f9{bottom:610.805700px;}
.yb6{bottom:614.077350px;}
.y149{bottom:614.688000px;}
.y3d{bottom:617.827350px;}
.y16d{bottom:618.966900px;}
.y193{bottom:621.577350px;}
.y67{bottom:622.447800px;}
.yf8{bottom:623.633400px;}
.y113{bottom:624.398400px;}
.y1d8{bottom:624.545700px;}
.y1b8{bottom:626.675700px;}
.ydf{bottom:626.720700px;}
.y91{bottom:627.878400px;}
.y1f8{bottom:630.935700px;}
.yb5{bottom:632.077350px;}
.y3c{bottom:635.077350px;}
.y16c{bottom:636.966900px;}
.y192{bottom:639.577350px;}
.y66{bottom:640.447800px;}
.yf7{bottom:641.633400px;}
.y112{bottom:642.398400px;}
.y1d7{bottom:642.545700px;}
.y1b7{bottom:644.675700px;}
.yde{bottom:644.720700px;}
.y90{bottom:645.878400px;}
.y1f7{bottom:648.935700px;}
.y3b{bottom:652.327350px;}
.y16{bottom:655.333200px;}
.y191{bottom:657.577350px;}
.y65{bottom:658.447800px;}
.yf6{bottom:659.633400px;}
.y16b{bottom:659.961900px;}
.y111{bottom:660.398400px;}
.y1d6{bottom:662.675700px;}
.ydd{bottom:662.720700px;}
.y8f{bottom:663.878400px;}
.y1b6{bottom:664.805700px;}
.y1f6{bottom:666.935700px;}
.yb4{bottom:667.087350px;}
.y3a{bottom:669.577350px;}
.y15{bottom:673.328700px;}
.y148{bottom:675.455700px;}
.y190{bottom:675.577350px;}
.y64{bottom:676.447800px;}
.yf5{bottom:677.633400px;}
.y16a{bottom:677.961900px;}
.y110{bottom:678.398400px;}
.y1d5{bottom:680.675700px;}
.y8e{bottom:681.878400px;}
.y1b5{bottom:682.805700px;}
.y1f5{bottom:684.935700px;}
.ydc{bottom:684.965700px;}
.yb3{bottom:685.087350px;}
.y39{bottom:686.827350px;}
.y147{bottom:693.455700px;}
.y18f{bottom:693.577350px;}
.y63{bottom:694.447800px;}
.y14{bottom:695.819850px;}
.y169{bottom:695.961900px;}
.y8d{bottom:699.878400px;}
.y1b4{bottom:700.805700px;}
.yb2{bottom:703.087350px;}
.y38{bottom:704.077350px;}
.y1f4{bottom:705.065700px;}
.ydb{bottom:707.210700px;}
.y146{bottom:711.455700px;}
.y18e{bottom:711.577350px;}
.y62{bottom:712.447800px;}
.y168{bottom:713.961900px;}
.y13{bottom:717.834150px;}
.y8c{bottom:717.878400px;}
.y1d4{bottom:718.805700px;}
.y1b3{bottom:720.935700px;}
.yb1{bottom:721.087350px;}
.y37{bottom:721.327350px;}
.y1f3{bottom:723.065700px;}
.yda{bottom:725.210700px;}
.y145{bottom:729.455700px;}
.y18d{bottom:729.577350px;}
.y61{bottom:730.447800px;}
.y8b{bottom:735.878400px;}
.y167{bottom:736.956900px;}
.y36{bottom:738.577350px;}
.y1b2{bottom:738.935700px;}
.yb0{bottom:739.087350px;}
.y1f2{bottom:741.065700px;}
.yd9{bottom:743.210700px;}
.y12{bottom:744.378150px;}
.y144{bottom:747.455700px;}
.y18c{bottom:747.577350px;}
.y60{bottom:748.447800px;}
.y8a{bottom:753.878400px;}
.y166{bottom:754.956900px;}
.y35{bottom:755.827350px;}
.y1b1{bottom:756.935700px;}
.yaf{bottom:757.087350px;}
.y1f1{bottom:759.065700px;}
.yd8{bottom:765.455700px;}
.y18b{bottom:765.577350px;}
.y5f{bottom:766.447800px;}
.y89{bottom:771.878400px;}
.y165{bottom:772.956900px;}
.y34{bottom:773.077350px;}
.y20d{bottom:774.935700px;}
.yae{bottom:775.087350px;}
.y1b0{bottom:777.065700px;}
.y1f0{bottom:779.195700px;}
.yd7{bottom:783.455700px;}
.y18a{bottom:783.577350px;}
.y5e{bottom:784.447800px;}
.y11{bottom:787.915050px;}
.y88{bottom:789.878400px;}
.y33{bottom:790.327350px;}
.y164{bottom:790.956900px;}
.yad{bottom:793.087350px;}
.y1af{bottom:795.065700px;}
.y1ef{bottom:797.195700px;}
.yd6{bottom:801.455700px;}
.y189{bottom:801.577350px;}
.y5d{bottom:802.447800px;}
.y32{bottom:807.577350px;}
.y87{bottom:807.878400px;}
.y163{bottom:808.956900px;}
.y1ae{bottom:813.065700px;}
.y1ee{bottom:815.195700px;}
.yac{bottom:815.332350px;}
.y10{bottom:817.925550px;}
.yd5{bottom:819.455700px;}
.y188{bottom:819.577350px;}
.y5c{bottom:820.447800px;}
.y31{bottom:824.827350px;}
.y86{bottom:825.878400px;}
.y20c{bottom:831.065700px;}
.y162{bottom:831.951900px;}
.y1ad{bottom:833.195700px;}
.yab{bottom:833.332350px;}
.yd4{bottom:837.455700px;}
.y187{bottom:837.577350px;}
.y5a{bottom:838.445700px;}
.y5b{bottom:838.447800px;}
.y30{bottom:842.077350px;}
.y85{bottom:843.878400px;}
.yf{bottom:847.936050px;}
.y161{bottom:849.951900px;}
.y1ac{bottom:851.195700px;}
.yaa{bottom:851.332350px;}
.yd3{bottom:855.455700px;}
.y186{bottom:855.577350px;}
.y59{bottom:856.445700px;}
.y2f{bottom:859.327350px;}
.y84{bottom:861.878400px;}
.y160{bottom:867.951900px;}
.y1d3{bottom:869.195700px;}
.ya9{bottom:869.332350px;}
.y1ab{bottom:871.325700px;}
.yd2{bottom:873.455700px;}
.y185{bottom:873.577350px;}
.y58{bottom:874.445700px;}
.y2e{bottom:876.577350px;}
.y83{bottom:879.878400px;}
.y1d2{bottom:887.195700px;}
.ya8{bottom:887.332350px;}
.y1aa{bottom:889.325700px;}
.y15f{bottom:890.946900px;}
.yd1{bottom:891.455700px;}
.y184{bottom:891.577350px;}
.y57{bottom:892.445700px;}
.y2d{bottom:893.827350px;}
.y82{bottom:897.878400px;}
.ya7{bottom:905.332350px;}
.y1a9{bottom:907.325700px;}
.y15e{bottom:908.946900px;}
.yd0{bottom:909.455700px;}
.y183{bottom:909.577350px;}
.y56{bottom:910.445700px;}
.y2c{bottom:911.077350px;}
.y81{bottom:915.878400px;}
.y4{bottom:920.007600px;}
.y1d1{bottom:925.325700px;}
.y15d{bottom:926.946900px;}
.ycf{bottom:927.455700px;}
.ya6{bottom:927.577350px;}
.y2b{bottom:928.327350px;}
.y80{bottom:933.878400px;}
.y3{bottom:934.407600px;}
.y55{bottom:945.455700px;}
.y2{bottom:948.807600px;}
.y15c{bottom:954.576900px;}
.y2a{bottom:958.333350px;}
.y7f{bottom:960.382350px;}
.y1{bottom:963.207600px;}
.y54{bottom:963.455700px;}
.hc{height:20.813100px;}
.h9{height:22.037400px;}
.h3{height:32.761230px;}
.h4{height:32.783203px;}
.h1{height:34.968750px;}
.hd{height:35.700000px;}
.ha{height:37.800000px;}
.hb{height:42.000000px;}
.h2{height:43.710938px;}
.hf{height:54.600000px;}
.h8{height:62.228400px;}
.h7{height:62.252400px;}
.he{height:63.000000px;}
.h5{height:79.800000px;}
.h6{height:84.569400px;}
.h0{height:1080.000000px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.x6{left:127.559100px;}
.x4b{left:132.944850px;}
.xe{left:136.063050px;}
.x73{left:137.279550px;}
.x10{left:148.818900px;}
.x4c{left:154.198350px;}
.x34{left:158.909850px;}
.x49{left:166.513350px;}
.x72{left:167.790600px;}
.x1c{left:170.088900px;}
.x4a{left:172.497600px;}
.x29{left:184.890750px;}
.x1d{left:188.742600px;}
.x2a{left:191.106150px;}
.x39{left:192.958200px;}
.x1e{left:194.513550px;}
.x3a{left:200.106600px;}
.x70{left:201.718350px;}
.x63{left:204.419100px;}
.x5b{left:205.743300px;}
.x71{left:207.435600px;}
.x5c{left:211.204500px;}
.x35{left:230.728350px;}
.x36{left:234.365850px;}
.x42{left:236.043000px;}
.x1f{left:239.206650px;}
.x44{left:240.383400px;}
.x2b{left:242.031600px;}
.x20{left:244.898700px;}
.xc{left:246.614250px;}
.xf{left:255.118050px;}
.xd{left:256.858500px;}
.x5d{left:260.663700px;}
.x3b{left:261.714450px;}
.x15{left:265.966050px;}
.x13{left:267.267000px;}
.x16{left:272.406300px;}
.x14{left:275.123550px;}
.x43{left:281.099550px;}
.x64{left:282.672450px;}
.x2c{left:285.952500px;}
.x65{left:288.286950px;}
.x2d{left:290.898150px;}
.x6c{left:295.662300px;}
.x45{left:299.950500px;}
.x5e{left:303.953550px;}
.x46{left:306.466950px;}
.x5f{left:311.839950px;}
.x3c{left:312.961500px;}
.x74{left:314.279550px;}
.x3d{left:319.258350px;}
.x1{left:325.564050px;}
.x17{left:332.574750px;}
.x2e{left:338.107800px;}
.x6d{left:344.890650px;}
.x66{left:348.093750px;}
.x67{left:354.255300px;}
.x47{left:360.357000px;}
.x3e{left:364.597500px;}
.x48{left:365.886750px;}
.x3f{left:370.085550px;}
.x21{left:379.514400px;}
.x18{left:383.514000px;}
.x19{left:390.075600px;}
.x4d{left:392.312587px;}
.x6e{left:396.831750px;}
.x2f{left:401.611650px;}
.x75{left:403.574550px;}
.x30{left:407.681550px;}
.x68{left:408.959400px;}
.x40{left:412.984200px;}
.x69{left:415.184400px;}
.x41{left:418.437150px;}
.x5{left:423.657750px;}
.x1a{left:431.425200px;}
.x1b{left:436.845450px;}
.x22{left:453.395100px;}
.x23{left:459.969450px;}
.x31{left:464.053350px;}
.x6f{left:466.530000px;}
.x4{left:469.600050px;}
.x32{left:471.289950px;}
.x6a{left:479.797200px;}
.x59{left:481.127400px;}
.xb{left:484.847850px;}
.x6b{left:487.198350px;}
.x5a{left:495.250500px;}
.x4e{left:496.554150px;}
.x4f{left:502.457700px;}
.x53{left:504.726750px;}
.x76{left:508.045350px;}
.x77{left:513.499350px;}
.x7{left:515.087850px;}
.x2{left:524.992050px;}
.x33{left:530.399850px;}
.xa{left:531.951600px;}
.x50{left:533.441400px;}
.x51{left:536.972100px;}
.x9{left:538.206600px;}
.x54{left:547.276200px;}
.x55{left:558.294000px;}
.x8{left:575.725350px;}
.x60{left:576.989100px;}
.x24{left:581.724600px;}
.x61{left:584.266050px;}
.x25{left:586.885650px;}
.x56{left:603.387300px;}
.x62{left:624.703950px;}
.x57{left:630.262650px;}
.x3{left:637.708050px;}
.x58{left:644.385750px;}
.x26{left:674.133750px;}
.x27{left:680.611650px;}
.x37{left:692.323200px;}
.x38{left:699.781350px;}
.x11{left:702.410250px;}
.x12{left:707.266050px;}
.x52{left:727.524300px;}
.x28{left:736.441050px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v3{vertical-align:-15.984533pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.760000pt;}
.v2{vertical-align:24.864000pt;}
.v1{vertical-align:33.818667pt;}
.ls12{letter-spacing:-4.960000pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.002667pt;}
.ls8{letter-spacing:0.006400pt;}
.lsb{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.017600pt;}
.lsd{letter-spacing:0.022933pt;}
.lse{letter-spacing:0.031467pt;}
.ls11{letter-spacing:0.037867pt;}
.ls9{letter-spacing:0.046400pt;}
.ls10{letter-spacing:0.051733pt;}
.lsc{letter-spacing:0.096533pt;}
.lsa{letter-spacing:0.137067pt;}
.ls1{letter-spacing:51.045333pt;}
.ws5{word-spacing:-13.333333pt;}
.ws85{word-spacing:-13.066667pt;}
.wse0{word-spacing:-12.800000pt;}
.ws1b{word-spacing:-12.533333pt;}
.ws1{word-spacing:-11.120000pt;}
.ws2{word-spacing:-10.882667pt;}
.wscd{word-spacing:-9.600000pt;}
.wsce{word-spacing:-9.333333pt;}
.wsca{word-spacing:-9.066667pt;}
.wsbf{word-spacing:-8.373333pt;}
.ws0{word-spacing:-7.784000pt;}
.wsac{word-spacing:-7.773333pt;}
.ws62{word-spacing:-7.733333pt;}
.wsd3{word-spacing:-7.200000pt;}
.ws3{word-spacing:-6.996000pt;}
.wsde{word-spacing:-6.720000pt;}
.ws6{word-spacing:-6.607333pt;}
.ws9{word-spacing:-6.570667pt;}
.wsbb{word-spacing:-6.560000pt;}
.wsad{word-spacing:-6.400000pt;}
.ws4f{word-spacing:-6.133333pt;}
.ws59{word-spacing:-5.333333pt;}
.ws26{word-spacing:-4.800000pt;}
.wsf9{word-spacing:-4.746667pt;}
.wsfb{word-spacing:-4.640000pt;}
.ws57{word-spacing:-4.533333pt;}
.ws47{word-spacing:-4.480000pt;}
.wse3{word-spacing:-4.426667pt;}
.wsc9{word-spacing:-4.266667pt;}
.wsf6{word-spacing:-4.053333pt;}
.ws58{word-spacing:-4.000000pt;}
.ws35{word-spacing:-3.946667pt;}
.wsf1{word-spacing:-3.893333pt;}
.wsb4{word-spacing:-3.813333pt;}
.wsc8{word-spacing:-3.733333pt;}
.wsd1{word-spacing:-3.626667pt;}
.ws5e{word-spacing:-3.573333pt;}
.wsc7{word-spacing:-3.466667pt;}
.wscf{word-spacing:-3.200000pt;}
.ws90{word-spacing:-3.146667pt;}
.ws81{word-spacing:-3.093333pt;}
.wsc4{word-spacing:-3.040000pt;}
.wscb{word-spacing:-2.933333pt;}
.ws82{word-spacing:-2.880000pt;}
.ws51{word-spacing:-2.773333pt;}
.wse5{word-spacing:-2.720000pt;}
.wsb2{word-spacing:-2.666667pt;}
.wsc1{word-spacing:-2.613333pt;}
.wsc2{word-spacing:-2.560000pt;}
.ws34{word-spacing:-2.506667pt;}
.wsa{word-spacing:-2.464000pt;}
.wsb1{word-spacing:-2.400000pt;}
.ws36{word-spacing:-2.346667pt;}
.ws56{word-spacing:-2.293333pt;}
.ws24{word-spacing:-2.240000pt;}
.ws2f{word-spacing:-2.133333pt;}
.ws73{word-spacing:-2.080000pt;}
.ws55{word-spacing:-2.026667pt;}
.ws11{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.904000pt;}
.ws38{word-spacing:-1.866667pt;}
.wsfa{word-spacing:-1.813333pt;}
.ws3f{word-spacing:-1.760000pt;}
.ws31{word-spacing:-1.706667pt;}
.ws6d{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.600000pt;}
.ws43{word-spacing:-1.546667pt;}
.wsba{word-spacing:-1.493333pt;}
.wsc5{word-spacing:-1.440000pt;}
.wsa8{word-spacing:-1.405333pt;}
.ws40{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.333333pt;}
.wsdc{word-spacing:-1.280000pt;}
.ws95{word-spacing:-1.226667pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.120000pt;}
.wsab{word-spacing:-1.088000pt;}
.ws29{word-spacing:-1.066667pt;}
.ws74{word-spacing:-1.013333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.906667pt;}
.ws1f{word-spacing:-0.853333pt;}
.ws61{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.746667pt;}
.ws42{word-spacing:-0.693333pt;}
.ws68{word-spacing:-0.640000pt;}
.wsd9{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.373333pt;}
.ws99{word-spacing:-0.320000pt;}
.ws50{word-spacing:-0.266667pt;}
.ws70{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.106667pt;}
.ws7f{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:0.045333pt;}
.ws5c{word-spacing:0.053333pt;}
.ws66{word-spacing:0.106667pt;}
.wsd7{word-spacing:0.160000pt;}
.ws77{word-spacing:0.213333pt;}
.wsa1{word-spacing:0.266667pt;}
.ws8d{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.373333pt;}
.ws22{word-spacing:0.426667pt;}
.ws63{word-spacing:0.480000pt;}
.wsb0{word-spacing:0.533333pt;}
.wsd8{word-spacing:0.586667pt;}
.ws75{word-spacing:0.640000pt;}
.ws33{word-spacing:0.693333pt;}
.ws9b{word-spacing:0.746667pt;}
.ws21{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.816000pt;}
.wsae{word-spacing:0.853333pt;}
.ws12{word-spacing:0.906667pt;}
.ws17{word-spacing:0.952000pt;}
.ws32{word-spacing:0.960000pt;}
.wsb8{word-spacing:1.013333pt;}
.ws60{word-spacing:1.066667pt;}
.ws46{word-spacing:1.120000pt;}
.ws6b{word-spacing:1.173333pt;}
.ws6a{word-spacing:1.226667pt;}
.ws3c{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.333333pt;}
.ws96{word-spacing:1.386667pt;}
.ws93{word-spacing:1.440000pt;}
.wse{word-spacing:1.493333pt;}
.ws78{word-spacing:1.546667pt;}
.ws6c{word-spacing:1.600000pt;}
.ws48{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws8f{word-spacing:1.760000pt;}
.wsb3{word-spacing:1.813333pt;}
.wsc{word-spacing:1.866667pt;}
.ws67{word-spacing:1.920000pt;}
.ws72{word-spacing:1.973333pt;}
.ws87{word-spacing:2.026667pt;}
.ws3e{word-spacing:2.080000pt;}
.ws7d{word-spacing:2.133333pt;}
.ws16{word-spacing:2.176000pt;}
.wsc3{word-spacing:2.186667pt;}
.ws98{word-spacing:2.240000pt;}
.ws44{word-spacing:2.293333pt;}
.ws2e{word-spacing:2.346667pt;}
.ws20{word-spacing:2.400000pt;}
.ws65{word-spacing:2.453333pt;}
.ws3d{word-spacing:2.506667pt;}
.ws92{word-spacing:2.560000pt;}
.wsb9{word-spacing:2.613333pt;}
.ws80{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.720000pt;}
.ws10{word-spacing:2.773333pt;}
.ws86{word-spacing:2.826667pt;}
.ws4d{word-spacing:2.880000pt;}
.ws41{word-spacing:2.933333pt;}
.wsda{word-spacing:2.986667pt;}
.ws7c{word-spacing:3.040000pt;}
.ws94{word-spacing:3.093333pt;}
.ws64{word-spacing:3.146667pt;}
.wsa7{word-spacing:3.173333pt;}
.ws23{word-spacing:3.200000pt;}
.ws39{word-spacing:3.253333pt;}
.ws9f{word-spacing:3.306667pt;}
.wsd6{word-spacing:3.360000pt;}
.ws71{word-spacing:3.573333pt;}
.ws28{word-spacing:3.626667pt;}
.ws4e{word-spacing:3.680000pt;}
.ws9d{word-spacing:3.733333pt;}
.ws1d{word-spacing:3.786667pt;}
.ws8b{word-spacing:3.840000pt;}
.ws7b{word-spacing:3.893333pt;}
.wsa6{word-spacing:3.898667pt;}
.ws5b{word-spacing:4.053333pt;}
.wsb7{word-spacing:4.106667pt;}
.ws69{word-spacing:4.160000pt;}
.ws1a{word-spacing:4.216000pt;}
.ws2d{word-spacing:4.266667pt;}
.ws8c{word-spacing:4.320000pt;}
.wsf4{word-spacing:4.373333pt;}
.wsf3{word-spacing:4.426667pt;}
.ws6e{word-spacing:4.480000pt;}
.ws8a{word-spacing:4.533333pt;}
.ws30{word-spacing:4.586667pt;}
.ws5f{word-spacing:4.640000pt;}
.wsfc{word-spacing:4.800000pt;}
.ws84{word-spacing:4.906667pt;}
.ws4c{word-spacing:5.013333pt;}
.ws4a{word-spacing:5.120000pt;}
.wsbc{word-spacing:5.280000pt;}
.ws2a{word-spacing:5.333333pt;}
.ws83{word-spacing:5.386667pt;}
.wsee{word-spacing:5.440000pt;}
.wsf8{word-spacing:5.493333pt;}
.wsdb{word-spacing:5.600000pt;}
.wsa5{word-spacing:5.757333pt;}
.ws97{word-spacing:5.760000pt;}
.wsc0{word-spacing:5.813333pt;}
.ws9c{word-spacing:5.866667pt;}
.wsf{word-spacing:5.920000pt;}
.ws53{word-spacing:6.026667pt;}
.wse2{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.186667pt;}
.wsa0{word-spacing:6.240000pt;}
.ws79{word-spacing:6.293333pt;}
.ws2c{word-spacing:6.453333pt;}
.ws76{word-spacing:6.506667pt;}
.wsdf{word-spacing:6.560000pt;}
.ws45{word-spacing:6.613333pt;}
.wsd5{word-spacing:6.666667pt;}
.ws9e{word-spacing:6.720000pt;}
.ws7a{word-spacing:6.826667pt;}
.wsd0{word-spacing:6.933333pt;}
.ws88{word-spacing:6.986667pt;}
.wsaf{word-spacing:7.040000pt;}
.wsa4{word-spacing:7.253333pt;}
.ws6f{word-spacing:7.306667pt;}
.wsf7{word-spacing:7.520000pt;}
.ws7e{word-spacing:7.733333pt;}
.wsb5{word-spacing:8.106667pt;}
.ws49{word-spacing:8.426667pt;}
.wsd2{word-spacing:8.533333pt;}
.wsb6{word-spacing:8.586667pt;}
.wsd{word-spacing:8.800000pt;}
.wse1{word-spacing:8.960000pt;}
.wse9{word-spacing:9.120000pt;}
.wsed{word-spacing:9.226667pt;}
.ws13{word-spacing:9.280000pt;}
.wsdd{word-spacing:9.546667pt;}
.wsf2{word-spacing:9.706667pt;}
.wsc6{word-spacing:9.866667pt;}
.wse4{word-spacing:10.720000pt;}
.wsa9{word-spacing:11.288000pt;}
.ws14{word-spacing:11.893333pt;}
.wsf5{word-spacing:12.160000pt;}
.wsd4{word-spacing:12.266667pt;}
.wse6{word-spacing:12.586667pt;}
.wsa3{word-spacing:12.693333pt;}
.wsa2{word-spacing:12.965333pt;}
.wsf0{word-spacing:13.386667pt;}
.wsec{word-spacing:13.760000pt;}
.ws2b{word-spacing:14.400000pt;}
.wsef{word-spacing:14.453333pt;}
.wsea{word-spacing:16.000000pt;}
.ws8e{word-spacing:17.333333pt;}
.wse7{word-spacing:18.560000pt;}
.wseb{word-spacing:18.666667pt;}
.ws1c{word-spacing:20.000000pt;}
.wse8{word-spacing:30.773333pt;}
.wsbe{word-spacing:60.160000pt;}
.wscc{word-spacing:117.493333pt;}
.ws4{word-spacing:137.978667pt;}
.wsbd{word-spacing:190.400000pt;}
._14{margin-left:-23.521600pt;}
._18{margin-left:-18.440000pt;}
._15{margin-left:-16.472533pt;}
._17{margin-left:-14.069867pt;}
._1{margin-left:-10.876267pt;}
._1b{margin-left:-7.342933pt;}
._6{margin-left:-6.301333pt;}
._8{margin-left:-5.333333pt;}
._7{margin-left:-4.440000pt;}
._5{margin-left:-3.264533pt;}
._0{margin-left:-2.363733pt;}
._2{margin-left:-1.023467pt;}
._9{width:1.595733pt;}
._a{width:2.612800pt;}
._3{width:4.099200pt;}
._c{width:5.050667pt;}
._1a{width:6.400000pt;}
._f{width:7.425067pt;}
._e{width:8.992533pt;}
._b{width:11.194667pt;}
._4{width:12.479104pt;}
._13{width:13.866667pt;}
._d{width:15.600000pt;}
._16{width:21.146667pt;}
._12{width:39.040000pt;}
._10{width:43.573333pt;}
._11{width:45.333333pt;}
._19{width:428.863467pt;}
.fsa{font-size:26.429333pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:28.000000pt;}
.fse{font-size:31.093333pt;}
.fs2{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:43.530667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:59.077333pt;}
.fsd{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fs4{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:43.716667pt;}
.ye{bottom:56.709200pt;}
.y9{bottom:63.399200pt;}
.yd{bottom:69.059200pt;}
.y8{bottom:75.399200pt;}
.yc{bottom:81.409200pt;}
.y7{bottom:87.399200pt;}
.yb{bottom:93.759200pt;}
.y6{bottom:99.399200pt;}
.ya{bottom:106.109200pt;}
.y29{bottom:139.859333pt;}
.y1a8{bottom:143.585600pt;}
.y143{bottom:143.657333pt;}
.y12c{bottom:144.517867pt;}
.y53{bottom:144.945600pt;}
.y10f{bottom:146.794133pt;}
.yce{bottom:147.379333pt;}
.yf4{bottom:149.051733pt;}
.y7e{bottom:151.300267pt;}
.y28{bottom:153.856000pt;}
.y1ed{bottom:154.111733pt;}
.y1d0{bottom:156.005067pt;}
.y20b{bottom:157.898400pt;}
.y1a7{bottom:159.585600pt;}
.y142{bottom:159.657333pt;}
.y52{bottom:160.945600pt;}
.y10e{bottom:162.794133pt;}
.ycd{bottom:163.379333pt;}
.y12a{bottom:164.302933pt;}
.yf3{bottom:165.051733pt;}
.y7d{bottom:167.300267pt;}
.y27{bottom:167.852667pt;}
.y12b{bottom:168.076933pt;}
.y129{bottom:168.087600pt;}
.y1ec{bottom:170.111733pt;}
.y1cf{bottom:172.005067pt;}
.y20a{bottom:173.898400pt;}
.y1a6{bottom:175.585600pt;}
.y141{bottom:175.657333pt;}
.y182{bottom:177.594667pt;}
.y10d{bottom:178.794133pt;}
.ycc{bottom:179.379333pt;}
.y51{bottom:180.718933pt;}
.yf2{bottom:181.051733pt;}
.y128{bottom:181.415600pt;}
.y26{bottom:181.849333pt;}
.y7c{bottom:183.300267pt;}
.y1eb{bottom:188.005067pt;}
.y1ce{bottom:189.898400pt;}
.y126{bottom:190.969600pt;}
.y140{bottom:191.657333pt;}
.y15b{bottom:192.054533pt;}
.ya5{bottom:192.807467pt;}
.y1a5{bottom:193.478933pt;}
.y181{bottom:193.594667pt;}
.y127{bottom:194.743600pt;}
.y125{bottom:194.754267pt;}
.y10c{bottom:194.794133pt;}
.ycb{bottom:195.379333pt;}
.y25{bottom:195.846000pt;}
.yf1{bottom:197.051733pt;}
.y7b{bottom:199.300267pt;}
.y50{bottom:200.492267pt;}
.y1ea{bottom:204.005067pt;}
.y1cd{bottom:205.898400pt;}
.y13f{bottom:207.657333pt;}
.y209{bottom:207.791733pt;}
.y15a{bottom:208.054533pt;}
.y124{bottom:208.082267pt;}
.ya4{bottom:208.807467pt;}
.y1a4{bottom:209.478933pt;}
.y180{bottom:209.594667pt;}
.y10b{bottom:210.794133pt;}
.y24{bottom:213.616667pt;}
.y4f{bottom:216.492267pt;}
.y122{bottom:217.636267pt;}
.yca{bottom:218.938400pt;}
.y1e9{bottom:220.005067pt;}
.y123{bottom:221.410267pt;}
.y121{bottom:221.420933pt;}
.y13e{bottom:223.657333pt;}
.y1cc{bottom:223.791733pt;}
.ya3{bottom:224.807467pt;}
.y17f{bottom:225.594667pt;}
.y10a{bottom:226.794133pt;}
.y1a3{bottom:227.372267pt;}
.yf0{bottom:228.171733pt;}
.y159{bottom:228.494533pt;}
.y7a{bottom:230.420267pt;}
.y4e{bottom:232.492267pt;}
.y120{bottom:234.748933pt;}
.y11b{bottom:234.759600pt;}
.y1e8{bottom:236.005067pt;}
.y13d{bottom:239.657333pt;}
.y1cb{bottom:239.791733pt;}
.ya2{bottom:240.807467pt;}
.y17e{bottom:241.594667pt;}
.y109{bottom:242.794133pt;}
.y1a2{bottom:243.372267pt;}
.yef{bottom:244.171733pt;}
.y11f{bottom:244.302933pt;}
.y158{bottom:244.494533pt;}
.y11e{bottom:248.076933pt;}
.y11a{bottom:248.087600pt;}
.y4d{bottom:248.492267pt;}
.y79{bottom:250.193600pt;}
.y1e7{bottom:253.898400pt;}
.y13c{bottom:255.657333pt;}
.y1ca{bottom:255.791733pt;}
.ya1{bottom:256.807467pt;}
.y17d{bottom:257.594667pt;}
.y11c{bottom:257.636267pt;}
.y208{bottom:257.685067pt;}
.yc9{bottom:257.836000pt;}
.y108{bottom:258.794133pt;}
.y1a1{bottom:259.372267pt;}
.y157{bottom:260.494533pt;}
.y11d{bottom:261.410267pt;}
.y119{bottom:261.415600pt;}
.yee{bottom:263.945067pt;}
.y4c{bottom:264.492267pt;}
.y1e6{bottom:269.898400pt;}
.y78{bottom:269.966933pt;}
.y13b{bottom:271.657333pt;}
.ya0{bottom:272.807467pt;}
.y17c{bottom:273.594667pt;}
.y1c9{bottom:273.685067pt;}
.yc8{bottom:273.836000pt;}
.y118{bottom:274.743600pt;}
.y107{bottom:274.794133pt;}
.y1a0{bottom:277.265600pt;}
.yed{bottom:279.945067pt;}
.y4b{bottom:280.492267pt;}
.y156{bottom:280.934533pt;}
.y77{bottom:285.966933pt;}
.y13a{bottom:287.657333pt;}
.y1e5{bottom:287.791733pt;}
.y9f{bottom:288.807467pt;}
.y17b{bottom:289.594667pt;}
.y1c8{bottom:289.685067pt;}
.yc7{bottom:289.836000pt;}
.y106{bottom:290.794133pt;}
.y207{bottom:291.578400pt;}
.y19f{bottom:293.265600pt;}
.y4a{bottom:296.492267pt;}
.y155{bottom:296.934533pt;}
.yec{bottom:299.718400pt;}
.y139{bottom:303.657333pt;}
.y1e4{bottom:303.791733pt;}
.y17a{bottom:305.594667pt;}
.y1c7{bottom:305.685067pt;}
.y76{bottom:305.740267pt;}
.yc6{bottom:305.836000pt;}
.y105{bottom:306.794133pt;}
.y206{bottom:307.578400pt;}
.y19e{bottom:309.265600pt;}
.y49{bottom:312.492267pt;}
.yeb{bottom:315.718400pt;}
.y154{bottom:317.374533pt;}
.y138{bottom:319.657333pt;}
.y9e{bottom:319.927467pt;}
.y179{bottom:321.594667pt;}
.y1e3{bottom:321.685067pt;}
.y75{bottom:321.740267pt;}
.yc5{bottom:321.836000pt;}
.y1c6{bottom:323.578400pt;}
.y205{bottom:325.471733pt;}
.y104{bottom:326.567467pt;}
.y19d{bottom:327.158933pt;}
.y48{bottom:328.492267pt;}
.y23{bottom:333.155200pt;}
.y153{bottom:333.374533pt;}
.yea{bottom:335.491733pt;}
.y137{bottom:335.657333pt;}
.y9d{bottom:335.927467pt;}
.y178{bottom:337.594667pt;}
.y1e2{bottom:337.685067pt;}
.y74{bottom:337.740267pt;}
.yc4{bottom:337.836000pt;}
.y1c5{bottom:339.578400pt;}
.y204{bottom:341.471733pt;}
.y103{bottom:342.567467pt;}
.y19c{bottom:343.158933pt;}
.y47{bottom:344.492267pt;}
.y22{bottom:349.155200pt;}
.y152{bottom:349.374533pt;}
.ye9{bottom:351.491733pt;}
.y136{bottom:351.657333pt;}
.y177{bottom:353.594667pt;}
.yc3{bottom:353.836000pt;}
.y1e1{bottom:355.578400pt;}
.y9c{bottom:355.700800pt;}
.y1c4{bottom:357.471733pt;}
.y73{bottom:357.513600pt;}
.y102{bottom:358.567467pt;}
.y19b{bottom:359.158933pt;}
.y46{bottom:360.492267pt;}
.y21{bottom:365.155200pt;}
.ye8{bottom:367.491733pt;}
.y135{bottom:367.657333pt;}
.y176{bottom:369.594667pt;}
.y151{bottom:369.814533pt;}
.yc2{bottom:369.836000pt;}
.yc1{bottom:369.846533pt;}
.y1e0{bottom:371.578400pt;}
.y9b{bottom:371.700800pt;}
.y1c3{bottom:373.471733pt;}
.y101{bottom:374.567467pt;}
.y203{bottom:375.365067pt;}
.y72{bottom:377.286933pt;}
.y20{bottom:381.155200pt;}
.ye7{bottom:383.491733pt;}
.y175{bottom:385.594667pt;}
.y150{bottom:385.814533pt;}
.yc0{bottom:385.846533pt;}
.y19a{bottom:386.497467pt;}
.y1df{bottom:387.578400pt;}
.y45{bottom:387.830800pt;}
.y1c2{bottom:389.471733pt;}
.y100{bottom:390.567467pt;}
.y134{bottom:391.216533pt;}
.y202{bottom:391.365067pt;}
.y9a{bottom:391.474133pt;}
.y71{bottom:393.286933pt;}
.y1f{bottom:397.155200pt;}
.ye6{bottom:399.491733pt;}
.y14f{bottom:401.814533pt;}
.ybf{bottom:401.846533pt;}
.y1c1{bottom:405.471733pt;}
.yff{bottom:406.567467pt;}
.y174{bottom:409.153867pt;}
.y201{bottom:409.258400pt;}
.y70{bottom:409.286933pt;}
.y99{bottom:411.247467pt;}
.y1e{bottom:413.155200pt;}
.ybe{bottom:417.846533pt;}
.y1c0{bottom:421.471733pt;}
.ye5{bottom:423.050800pt;}
.y200{bottom:425.258400pt;}
.y6f{bottom:425.286933pt;}
.y14e{bottom:426.041200pt;}
.yfe{bottom:426.340800pt;}
.y98{bottom:427.247467pt;}
.y1d{bottom:429.155200pt;}
.y133{bottom:430.114133pt;}
.ybd{bottom:433.846533pt;}
.y1de{bottom:437.471733pt;}
.y1bf{bottom:439.365067pt;}
.y199{bottom:440.513200pt;}
.y6e{bottom:441.286933pt;}
.y44{bottom:441.846533pt;}
.yfd{bottom:442.340800pt;}
.y1ff{bottom:443.151733pt;}
.y1c{bottom:445.155200pt;}
.y132{bottom:446.114133pt;}
.y97{bottom:447.020800pt;}
.ybc{bottom:449.846533pt;}
.y1be{bottom:455.365067pt;}
.y14d{bottom:455.930800pt;}
.y198{bottom:456.513200pt;}
.y43{bottom:457.179867pt;}
.y6d{bottom:457.286933pt;}
.yfc{bottom:458.340800pt;}
.y1fe{bottom:459.151733pt;}
.y1b{bottom:461.155200pt;}
.ye4{bottom:461.965067pt;}
.y131{bottom:462.114133pt;}
.y173{bottom:465.728533pt;}
.ybb{bottom:465.846533pt;}
.y96{bottom:466.794133pt;}
.y1dd{bottom:471.365067pt;}
.y14c{bottom:471.930800pt;}
.y117{bottom:472.127467pt;}
.y42{bottom:472.513200pt;}
.y1bd{bottom:473.258400pt;}
.y6c{bottom:473.286933pt;}
.yfb{bottom:474.340800pt;}
.y1fd{bottom:477.045067pt;}
.y1a{bottom:477.155200pt;}
.ye3{bottom:477.965067pt;}
.y130{bottom:478.114133pt;}
.y172{bottom:481.728533pt;}
.y170{bottom:481.752800pt;}
.yba{bottom:481.846533pt;}
.y95{bottom:486.567467pt;}
.y1dc{bottom:487.365067pt;}
.y41{bottom:487.846533pt;}
.y116{bottom:488.127467pt;}
.y197{bottom:488.513200pt;}
.y1bc{bottom:489.258400pt;}
.y6b{bottom:489.286933pt;}
.yfa{bottom:490.340800pt;}
.y1fc{bottom:493.045067pt;}
.y19{bottom:493.155200pt;}
.ye2{bottom:493.965067pt;}
.y12f{bottom:494.114133pt;}
.y16f{bottom:497.752800pt;}
.yb9{bottom:497.846533pt;}
.y14b{bottom:503.050800pt;}
.y40{bottom:503.179867pt;}
.y196{bottom:504.513200pt;}
.y1db{bottom:505.258400pt;}
.y6a{bottom:505.286933pt;}
.y94{bottom:506.340800pt;}
.y1bb{bottom:507.151733pt;}
.y1fb{bottom:509.045067pt;}
.y18{bottom:509.155200pt;}
.ye1{bottom:509.965067pt;}
.y12e{bottom:510.114133pt;}
.y171{bottom:513.752800pt;}
.yb8{bottom:513.846533pt;}
.y3f{bottom:518.513200pt;}
.y14a{bottom:519.050800pt;}
.y195{bottom:520.513200pt;}
.y1da{bottom:521.258400pt;}
.y69{bottom:521.286933pt;}
.y93{bottom:522.340800pt;}
.y115{bottom:523.020800pt;}
.y1ba{bottom:523.151733pt;}
.ye0{bottom:525.965067pt;}
.y12d{bottom:526.114133pt;}
.y1fa{bottom:526.938400pt;}
.yb7{bottom:529.846533pt;}
.y3e{bottom:533.846533pt;}
.y16e{bottom:534.192800pt;}
.y17{bottom:535.608533pt;}
.y194{bottom:536.513200pt;}
.y68{bottom:537.286933pt;}
.yf9{bottom:538.340800pt;}
.y114{bottom:539.020800pt;}
.y1d9{bottom:539.151733pt;}
.y1b9{bottom:541.045067pt;}
.y92{bottom:542.114133pt;}
.y1f9{bottom:542.938400pt;}
.yb6{bottom:545.846533pt;}
.y149{bottom:546.389333pt;}
.y3d{bottom:549.179867pt;}
.y16d{bottom:550.192800pt;}
.y193{bottom:552.513200pt;}
.y67{bottom:553.286933pt;}
.yf8{bottom:554.340800pt;}
.y113{bottom:555.020800pt;}
.y1d8{bottom:555.151733pt;}
.y1b8{bottom:557.045067pt;}
.ydf{bottom:557.085067pt;}
.y91{bottom:558.114133pt;}
.y1f8{bottom:560.831733pt;}
.yb5{bottom:561.846533pt;}
.y3c{bottom:564.513200pt;}
.y16c{bottom:566.192800pt;}
.y192{bottom:568.513200pt;}
.y66{bottom:569.286933pt;}
.yf7{bottom:570.340800pt;}
.y112{bottom:571.020800pt;}
.y1d7{bottom:571.151733pt;}
.y1b7{bottom:573.045067pt;}
.yde{bottom:573.085067pt;}
.y90{bottom:574.114133pt;}
.y1f7{bottom:576.831733pt;}
.y3b{bottom:579.846533pt;}
.y16{bottom:582.518400pt;}
.y191{bottom:584.513200pt;}
.y65{bottom:585.286933pt;}
.yf6{bottom:586.340800pt;}
.y16b{bottom:586.632800pt;}
.y111{bottom:587.020800pt;}
.y1d6{bottom:589.045067pt;}
.ydd{bottom:589.085067pt;}
.y8f{bottom:590.114133pt;}
.y1b6{bottom:590.938400pt;}
.y1f6{bottom:592.831733pt;}
.yb4{bottom:592.966533pt;}
.y3a{bottom:595.179867pt;}
.y15{bottom:598.514400pt;}
.y148{bottom:600.405067pt;}
.y190{bottom:600.513200pt;}
.y64{bottom:601.286933pt;}
.yf5{bottom:602.340800pt;}
.y16a{bottom:602.632800pt;}
.y110{bottom:603.020800pt;}
.y1d5{bottom:605.045067pt;}
.y8e{bottom:606.114133pt;}
.y1b5{bottom:606.938400pt;}
.y1f5{bottom:608.831733pt;}
.ydc{bottom:608.858400pt;}
.yb3{bottom:608.966533pt;}
.y39{bottom:610.513200pt;}
.y147{bottom:616.405067pt;}
.y18f{bottom:616.513200pt;}
.y63{bottom:617.286933pt;}
.y14{bottom:618.506533pt;}
.y169{bottom:618.632800pt;}
.y8d{bottom:622.114133pt;}
.y1b4{bottom:622.938400pt;}
.yb2{bottom:624.966533pt;}
.y38{bottom:625.846533pt;}
.y1f4{bottom:626.725067pt;}
.ydb{bottom:628.631733pt;}
.y146{bottom:632.405067pt;}
.y18e{bottom:632.513200pt;}
.y62{bottom:633.286933pt;}
.y168{bottom:634.632800pt;}
.y13{bottom:638.074800pt;}
.y8c{bottom:638.114133pt;}
.y1d4{bottom:638.938400pt;}
.y1b3{bottom:640.831733pt;}
.yb1{bottom:640.966533pt;}
.y37{bottom:641.179867pt;}
.y1f3{bottom:642.725067pt;}
.yda{bottom:644.631733pt;}
.y145{bottom:648.405067pt;}
.y18d{bottom:648.513200pt;}
.y61{bottom:649.286933pt;}
.y8b{bottom:654.114133pt;}
.y167{bottom:655.072800pt;}
.y36{bottom:656.513200pt;}
.y1b2{bottom:656.831733pt;}
.yb0{bottom:656.966533pt;}
.y1f2{bottom:658.725067pt;}
.yd9{bottom:660.631733pt;}
.y12{bottom:661.669467pt;}
.y144{bottom:664.405067pt;}
.y18c{bottom:664.513200pt;}
.y60{bottom:665.286933pt;}
.y8a{bottom:670.114133pt;}
.y166{bottom:671.072800pt;}
.y35{bottom:671.846533pt;}
.y1b1{bottom:672.831733pt;}
.yaf{bottom:672.966533pt;}
.y1f1{bottom:674.725067pt;}
.yd8{bottom:680.405067pt;}
.y18b{bottom:680.513200pt;}
.y5f{bottom:681.286933pt;}
.y89{bottom:686.114133pt;}
.y165{bottom:687.072800pt;}
.y34{bottom:687.179867pt;}
.y20d{bottom:688.831733pt;}
.yae{bottom:688.966533pt;}
.y1b0{bottom:690.725067pt;}
.y1f0{bottom:692.618400pt;}
.yd7{bottom:696.405067pt;}
.y18a{bottom:696.513200pt;}
.y5e{bottom:697.286933pt;}
.y11{bottom:700.368933pt;}
.y88{bottom:702.114133pt;}
.y33{bottom:702.513200pt;}
.y164{bottom:703.072800pt;}
.yad{bottom:704.966533pt;}
.y1af{bottom:706.725067pt;}
.y1ef{bottom:708.618400pt;}
.yd6{bottom:712.405067pt;}
.y189{bottom:712.513200pt;}
.y5d{bottom:713.286933pt;}
.y32{bottom:717.846533pt;}
.y87{bottom:718.114133pt;}
.y163{bottom:719.072800pt;}
.y1ae{bottom:722.725067pt;}
.y1ee{bottom:724.618400pt;}
.yac{bottom:724.739867pt;}
.y10{bottom:727.044933pt;}
.yd5{bottom:728.405067pt;}
.y188{bottom:728.513200pt;}
.y5c{bottom:729.286933pt;}
.y31{bottom:733.179867pt;}
.y86{bottom:734.114133pt;}
.y20c{bottom:738.725067pt;}
.y162{bottom:739.512800pt;}
.y1ad{bottom:740.618400pt;}
.yab{bottom:740.739867pt;}
.yd4{bottom:744.405067pt;}
.y187{bottom:744.513200pt;}
.y5a{bottom:745.285067pt;}
.y5b{bottom:745.286933pt;}
.y30{bottom:748.513200pt;}
.y85{bottom:750.114133pt;}
.yf{bottom:753.720933pt;}
.y161{bottom:755.512800pt;}
.y1ac{bottom:756.618400pt;}
.yaa{bottom:756.739867pt;}
.yd3{bottom:760.405067pt;}
.y186{bottom:760.513200pt;}
.y59{bottom:761.285067pt;}
.y2f{bottom:763.846533pt;}
.y84{bottom:766.114133pt;}
.y160{bottom:771.512800pt;}
.y1d3{bottom:772.618400pt;}
.ya9{bottom:772.739867pt;}
.y1ab{bottom:774.511733pt;}
.yd2{bottom:776.405067pt;}
.y185{bottom:776.513200pt;}
.y58{bottom:777.285067pt;}
.y2e{bottom:779.179867pt;}
.y83{bottom:782.114133pt;}
.y1d2{bottom:788.618400pt;}
.ya8{bottom:788.739867pt;}
.y1aa{bottom:790.511733pt;}
.y15f{bottom:791.952800pt;}
.yd1{bottom:792.405067pt;}
.y184{bottom:792.513200pt;}
.y57{bottom:793.285067pt;}
.y2d{bottom:794.513200pt;}
.y82{bottom:798.114133pt;}
.ya7{bottom:804.739867pt;}
.y1a9{bottom:806.511733pt;}
.y15e{bottom:807.952800pt;}
.yd0{bottom:808.405067pt;}
.y183{bottom:808.513200pt;}
.y56{bottom:809.285067pt;}
.y2c{bottom:809.846533pt;}
.y81{bottom:814.114133pt;}
.y4{bottom:817.784533pt;}
.y1d1{bottom:822.511733pt;}
.y15d{bottom:823.952800pt;}
.ycf{bottom:824.405067pt;}
.ya6{bottom:824.513200pt;}
.y2b{bottom:825.179867pt;}
.y80{bottom:830.114133pt;}
.y3{bottom:830.584533pt;}
.y55{bottom:840.405067pt;}
.y2{bottom:843.384533pt;}
.y15c{bottom:848.512800pt;}
.y2a{bottom:851.851867pt;}
.y7f{bottom:853.673200pt;}
.y1{bottom:856.184533pt;}
.y54{bottom:856.405067pt;}
.hc{height:18.500533pt;}
.h9{height:19.588800pt;}
.h3{height:29.121094pt;}
.h4{height:29.140625pt;}
.h1{height:31.083333pt;}
.hd{height:31.733333pt;}
.ha{height:33.600000pt;}
.hb{height:37.333333pt;}
.h2{height:38.854167pt;}
.hf{height:48.533333pt;}
.h8{height:55.314133pt;}
.h7{height:55.335467pt;}
.he{height:56.000000pt;}
.h5{height:70.933333pt;}
.h6{height:75.172800pt;}
.h0{height:960.000000pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.385867pt;}
.x4b{left:118.173200pt;}
.xe{left:120.944933pt;}
.x73{left:122.026267pt;}
.x10{left:132.283467pt;}
.x4c{left:137.065200pt;}
.x34{left:141.253200pt;}
.x49{left:148.011867pt;}
.x72{left:149.147200pt;}
.x1c{left:151.190133pt;}
.x4a{left:153.331200pt;}
.x29{left:164.347333pt;}
.x1d{left:167.771200pt;}
.x2a{left:169.872133pt;}
.x39{left:171.518400pt;}
.x1e{left:172.900933pt;}
.x3a{left:177.872533pt;}
.x70{left:179.305200pt;}
.x63{left:181.705867pt;}
.x5b{left:182.882933pt;}
.x71{left:184.387200pt;}
.x5c{left:187.737333pt;}
.x35{left:205.091867pt;}
.x36{left:208.325200pt;}
.x42{left:209.816000pt;}
.x1f{left:212.628133pt;}
.x44{left:213.674133pt;}
.x2b{left:215.139200pt;}
.x20{left:217.687733pt;}
.xc{left:219.212667pt;}
.xf{left:226.771600pt;}
.xd{left:228.318667pt;}
.x5d{left:231.701067pt;}
.x3b{left:232.635067pt;}
.x15{left:236.414267pt;}
.x13{left:237.570667pt;}
.x16{left:242.138933pt;}
.x14{left:244.554267pt;}
.x43{left:249.866267pt;}
.x64{left:251.264400pt;}
.x2c{left:254.180000pt;}
.x65{left:256.255067pt;}
.x2d{left:258.576133pt;}
.x6c{left:262.810933pt;}
.x45{left:266.622667pt;}
.x5e{left:270.180933pt;}
.x46{left:272.415067pt;}
.x5f{left:277.191067pt;}
.x3c{left:278.188000pt;}
.x74{left:279.359600pt;}
.x3d{left:283.785200pt;}
.x1{left:289.390267pt;}
.x17{left:295.622000pt;}
.x2e{left:300.540267pt;}
.x6d{left:306.569467pt;}
.x66{left:309.416667pt;}
.x67{left:314.893600pt;}
.x47{left:320.317333pt;}
.x3e{left:324.086667pt;}
.x48{left:325.232667pt;}
.x3f{left:328.964933pt;}
.x21{left:337.346133pt;}
.x18{left:340.901333pt;}
.x19{left:346.733867pt;}
.x4d{left:348.722300pt;}
.x6e{left:352.739333pt;}
.x2f{left:356.988133pt;}
.x75{left:358.732933pt;}
.x30{left:362.383600pt;}
.x68{left:363.519467pt;}
.x40{left:367.097067pt;}
.x69{left:369.052800pt;}
.x41{left:371.944133pt;}
.x5{left:376.584667pt;}
.x1a{left:383.489067pt;}
.x1b{left:388.307067pt;}
.x22{left:403.017867pt;}
.x23{left:408.861733pt;}
.x31{left:412.491867pt;}
.x6f{left:414.693333pt;}
.x4{left:417.422267pt;}
.x32{left:418.924400pt;}
.x6a{left:426.486400pt;}
.x59{left:427.668800pt;}
.xb{left:430.975867pt;}
.x6b{left:433.065200pt;}
.x5a{left:440.222667pt;}
.x4e{left:441.381467pt;}
.x4f{left:446.629067pt;}
.x53{left:448.646000pt;}
.x76{left:451.595867pt;}
.x77{left:456.443867pt;}
.x7{left:457.855867pt;}
.x2{left:466.659600pt;}
.x33{left:471.466533pt;}
.xa{left:472.845867pt;}
.x50{left:474.170133pt;}
.x51{left:477.308533pt;}
.x9{left:478.405867pt;}
.x54{left:486.467733pt;}
.x55{left:496.261333pt;}
.x8{left:511.755867pt;}
.x60{left:512.879200pt;}
.x24{left:517.088533pt;}
.x61{left:519.347600pt;}
.x25{left:521.676133pt;}
.x56{left:536.344267pt;}
.x62{left:555.292400pt;}
.x57{left:560.233467pt;}
.x3{left:566.851600pt;}
.x58{left:572.787333pt;}
.x26{left:599.230000pt;}
.x27{left:604.988133pt;}
.x37{left:615.398400pt;}
.x38{left:622.027867pt;}
.x11{left:624.364667pt;}
.x12{left:628.680933pt;}
.x52{left:646.688267pt;}
.x28{left:654.614267pt;}
}




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