
    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_7939092c68bf6758ef608057.woff')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_48cb033cb98e3608d36edeca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_8318ac30db2a42e9e4b8c705.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_bc5b6e2af337c79059e9e982.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_62d5dd315a48233610e554f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_877deaf5f6532c11f2c9576e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_5f5a495075e08a76e1d37f73.woff')format("woff");}.ff7{font-family:ff7;line-height:1.213000;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_33b9097a44ff9d8764c3e1cb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.222000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff9{font-family:ff9;line-height:1.256000;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_48cb033cb98e3608d36edeca.woff')format("woff");}.ffa{font-family:ffa;line-height:1.197000;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_1ac12d1d1f510ea2afdc7bf4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_48cb033cb98e3608d36edeca.woff')format("woff");}.ffd{font-family:ffd;line-height:1.197000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffe{font-family:ffe;line-height:1.256000;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_b57d3202a2fb7481a117cd8b.woff')format("woff");}.fff{font-family:fff;line-height:1.230000;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_59a0f63efb0badc4e3a9f230.woff')format("woff");}.ff10{font-family:ff10;line-height:0.705000;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_bef21a6668ac37a46cc9deec.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_d0b73ce2443d9d3db2416712.woff')format("woff");}.ff12{font-family:ff12;line-height:0.664000;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_264c289a38cd8b2d18a80270.woff')format("woff");}.ff13{font-family:ff13;line-height:0.453000;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_64d85feedba3d7f99468a022.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_72ed6a86692558fde92c3457.woff')format("woff");}.ff15{font-family:ff15;line-height:0.898000;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:ff16;src:url('chunks/assets/font_24dca34110c42392adc254d6.woff')format("woff");}.ff16{font-family:ff16;line-height:0.908203;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:ff17;src:url('chunks/assets/font_59a0f63efb0badc4e3a9f230.woff')format("woff");}.ff17{font-family:ff17;line-height:0.705000;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:ff18;src:url('chunks/assets/font_bef21a6668ac37a46cc9deec.woff')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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:ff19;src:url('chunks/assets/font_d0b73ce2443d9d3db2416712.woff')format("woff");}.ff19{font-family:ff19;line-height:0.664000;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:ff1a;src:url('chunks/assets/font_264c289a38cd8b2d18a80270.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.453000;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:ff1b;src:url('chunks/assets/font_64d85feedba3d7f99468a022.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_72ed6a86692558fde92c3457.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.898000;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:ff1d;src:url('chunks/assets/font_2bf590ca9039b6ac28290490.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.427000;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:ff1e;src:url('chunks/assets/font_2c0b76d5fe888fafa3733c5a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.870000;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:ff1f;src:url('chunks/assets/font_213ef026f8bfb4c964237017.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.891602;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;}
.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);}
.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);}
.v3{vertical-align:-21.689941px;}
.v1{vertical-align:-20.400007px;}
.v5{vertical-align:-8.963745px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.098267px;}
.v7{vertical-align:17.268127px;}
.v9{vertical-align:20.400147px;}
.v8{vertical-align:21.689392px;}
.v2{vertical-align:24.000000px;}
.v6{vertical-align:30.054199px;}
.ls6{letter-spacing:-2.220000px;}
.ls21{letter-spacing:-1.887000px;}
.ls1e{letter-spacing:-0.816000px;}
.ls1f{letter-spacing:-0.663000px;}
.ls20{letter-spacing:-0.561000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000046px;}
.ls4{letter-spacing:0.000583px;}
.ls5{letter-spacing:0.000652px;}
.lsf{letter-spacing:0.002324px;}
.lsa{letter-spacing:0.002366px;}
.lsc{letter-spacing:0.002992px;}
.lsb{letter-spacing:0.009609px;}
.ls13{letter-spacing:0.022227px;}
.ls10{letter-spacing:0.026720px;}
.ls1d{letter-spacing:0.969000px;}
.ls8{letter-spacing:3.005455px;}
.lsd{letter-spacing:3.011454px;}
.ls1{letter-spacing:3.990000px;}
.lse{letter-spacing:7.178362px;}
.ls9{letter-spacing:7.178363px;}
.ls11{letter-spacing:13.270183px;}
.ls22{letter-spacing:15.708000px;}
.ls14{letter-spacing:16.295481px;}
.ls7{letter-spacing:16.617616px;}
.ls12{letter-spacing:26.540366px;}
.ls0{letter-spacing:27.307191px;}
.ls15{letter-spacing:29.887799px;}
.ls1a{letter-spacing:111.667228px;}
.ls19{letter-spacing:128.626182px;}
.ls1c{letter-spacing:195.189597px;}
.ls1b{letter-spacing:212.223029px;}
.ls16{letter-spacing:293.125181px;}
.ls18{letter-spacing:293.448088px;}
.ls17{letter-spacing:659.701204px;}
.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;}
}
.ws6b{word-spacing:-60.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.544000px;}
.ws90{word-spacing:-13.719000px;}
.ws22{word-spacing:-12.780000px;}
.ws6e{word-spacing:-12.750000px;}
.wsd5{word-spacing:-12.474000px;}
.ws8{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.ws6{word-spacing:-11.520000px;}
.ws5{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.996000px;}
.wsd6{word-spacing:-9.792000px;}
.ws3{word-spacing:-8.925000px;}
.ws7{word-spacing:-8.064000px;}
.ws8a{word-spacing:-6.375000px;}
.ws9{word-spacing:-3.990000px;}
.ws10{word-spacing:-3.600000px;}
.ws43{word-spacing:-3.420000px;}
.wsfc{word-spacing:-3.120000px;}
.wsd{word-spacing:-2.940000px;}
.wscc{word-spacing:-2.880000px;}
.ws94{word-spacing:-2.820000px;}
.ws16{word-spacing:-2.520000px;}
.ws103{word-spacing:-2.448000px;}
.wsbd{word-spacing:-2.400000px;}
.wsfd{word-spacing:-2.280000px;}
.ws37{word-spacing:-2.220000px;}
.ws21{word-spacing:-2.160000px;}
.ws10b{word-spacing:-2.142000px;}
.ws98{word-spacing:-2.091000px;}
.ws2f{word-spacing:-2.040000px;}
.wsc{word-spacing:-1.920000px;}
.ws33{word-spacing:-1.860000px;}
.ws2a{word-spacing:-1.800000px;}
.ws105{word-spacing:-1.683000px;}
.ws12{word-spacing:-1.680000px;}
.ws11a{word-spacing:-1.581000px;}
.ws1b{word-spacing:-1.500000px;}
.ws4a{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.260000px;}
.wsd9{word-spacing:-1.173000px;}
.ws7a{word-spacing:-1.080000px;}
.wsbf{word-spacing:-1.020000px;}
.wsbb{word-spacing:-0.960000px;}
.ws18{word-spacing:-0.918000px;}
.ws1c{word-spacing:-0.840000px;}
.wsd4{word-spacing:-0.780000px;}
.ws10c{word-spacing:-0.765000px;}
.wsbc{word-spacing:-0.720000px;}
.ws61{word-spacing:-0.660000px;}
.wsf7{word-spacing:-0.612000px;}
.ws30{word-spacing:-0.600000px;}
.ws10f{word-spacing:-0.510000px;}
.wse7{word-spacing:-0.459000px;}
.ws11d{word-spacing:-0.408000px;}
.ws60{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.300000px;}
.ws107{word-spacing:-0.255000px;}
.ws1f{word-spacing:-0.240000px;}
.ws97{word-spacing:-0.204000px;}
.ws11{word-spacing:-0.120000px;}
.ws5f{word-spacing:-0.060000px;}
.ws6a{word-spacing:-0.059776px;}
.ws114{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.ws110{word-spacing:0.051000px;}
.ws35{word-spacing:0.120000px;}
.ws123{word-spacing:0.255000px;}
.wsfe{word-spacing:0.300000px;}
.ws118{word-spacing:0.306000px;}
.wse5{word-spacing:0.357000px;}
.ws57{word-spacing:0.360000px;}
.ws119{word-spacing:0.408000px;}
.wse0{word-spacing:0.510000px;}
.ws4f{word-spacing:0.540000px;}
.wsde{word-spacing:0.561000px;}
.ws25{word-spacing:0.600000px;}
.ws121{word-spacing:0.612000px;}
.ws11f{word-spacing:0.714000px;}
.wsba{word-spacing:0.720000px;}
.ws5c{word-spacing:0.780000px;}
.ws113{word-spacing:0.816000px;}
.ws99{word-spacing:0.867000px;}
.wsf6{word-spacing:1.020000px;}
.wsed{word-spacing:1.071000px;}
.wsb4{word-spacing:1.080000px;}
.wsb0{word-spacing:1.122000px;}
.wscb{word-spacing:1.140000px;}
.ws9a{word-spacing:1.173000px;}
.ws63{word-spacing:1.200000px;}
.ws89{word-spacing:1.320000px;}
.ws112{word-spacing:1.326000px;}
.wse9{word-spacing:1.377000px;}
.ws26{word-spacing:1.380000px;}
.wsb1{word-spacing:1.428000px;}
.ws44{word-spacing:1.440000px;}
.ws4b{word-spacing:1.500000px;}
.wsf5{word-spacing:1.530000px;}
.ws4d{word-spacing:1.560000px;}
.wsf1{word-spacing:1.581000px;}
.ws15{word-spacing:1.620000px;}
.ws65{word-spacing:1.740000px;}
.ws84{word-spacing:1.860000px;}
.ws85{word-spacing:1.920000px;}
.ws76{word-spacing:1.980000px;}
.ws3c{word-spacing:2.040000px;}
.wsdf{word-spacing:2.091000px;}
.ws3b{word-spacing:2.100000px;}
.wsc9{word-spacing:2.160000px;}
.wse3{word-spacing:2.193000px;}
.ws46{word-spacing:2.280000px;}
.ws5e{word-spacing:2.340000px;}
.ws96{word-spacing:2.397000px;}
.ws58{word-spacing:2.400000px;}
.wse6{word-spacing:2.448000px;}
.ws66{word-spacing:2.520000px;}
.ws10d{word-spacing:2.550000px;}
.ws17{word-spacing:2.580000px;}
.ws11c{word-spacing:2.601000px;}
.wsc8{word-spacing:2.640000px;}
.wsb8{word-spacing:2.652000px;}
.wsee{word-spacing:2.703000px;}
.ws82{word-spacing:2.760000px;}
.ws53{word-spacing:2.820000px;}
.wsce{word-spacing:2.880000px;}
.wsf8{word-spacing:3.000000px;}
.ws23{word-spacing:3.009000px;}
.ws88{word-spacing:3.060000px;}
.ws10e{word-spacing:3.162000px;}
.ws72{word-spacing:3.180000px;}
.ws111{word-spacing:3.213000px;}
.wsf{word-spacing:3.240000px;}
.ws115{word-spacing:3.315000px;}
.wse{word-spacing:3.420000px;}
.ws29{word-spacing:3.600000px;}
.wseb{word-spacing:3.672000px;}
.ws83{word-spacing:3.720000px;}
.ws106{word-spacing:3.723000px;}
.wsbe{word-spacing:3.780000px;}
.ws120{word-spacing:3.825000px;}
.ws92{word-spacing:3.840000px;}
.ws1d{word-spacing:3.900000px;}
.ws3e{word-spacing:3.960000px;}
.ws5d{word-spacing:4.020000px;}
.ws56{word-spacing:4.080000px;}
.ws2c{word-spacing:4.140000px;}
.wsec{word-spacing:4.335000px;}
.wsc1{word-spacing:4.380000px;}
.ws116{word-spacing:4.386000px;}
.wsd7{word-spacing:4.437000px;}
.ws51{word-spacing:4.440000px;}
.wse1{word-spacing:4.488000px;}
.ws20{word-spacing:4.500000px;}
.ws10a{word-spacing:4.539000px;}
.wsc2{word-spacing:4.560000px;}
.ws1e{word-spacing:4.680000px;}
.ws2b{word-spacing:4.740000px;}
.ws42{word-spacing:4.860000px;}
.wse8{word-spacing:4.896000px;}
.wsb{word-spacing:4.920000px;}
.ws59{word-spacing:5.040000px;}
.ws68{word-spacing:5.100000px;}
.ws93{word-spacing:5.280000px;}
.wsea{word-spacing:5.457000px;}
.wsc7{word-spacing:5.520000px;}
.wsf0{word-spacing:5.559000px;}
.ws55{word-spacing:5.580000px;}
.ws122{word-spacing:5.610000px;}
.ws32{word-spacing:5.640000px;}
.ws7f{word-spacing:5.760000px;}
.wsd8{word-spacing:5.814000px;}
.ws62{word-spacing:5.940000px;}
.ws108{word-spacing:6.018000px;}
.wsb5{word-spacing:6.060000px;}
.wse4{word-spacing:6.171000px;}
.ws69{word-spacing:6.240000px;}
.ws39{word-spacing:6.360000px;}
.ws79{word-spacing:6.420000px;}
.wsf2{word-spacing:6.426000px;}
.wse2{word-spacing:6.477000px;}
.wsb9{word-spacing:6.480000px;}
.wsf3{word-spacing:6.528000px;}
.wsc5{word-spacing:6.540000px;}
.ws19{word-spacing:6.600000px;}
.ws24{word-spacing:6.780000px;}
.ws109{word-spacing:6.834000px;}
.ws102{word-spacing:6.987000px;}
.wsff{word-spacing:7.020000px;}
.ws64{word-spacing:7.080000px;}
.ws104{word-spacing:7.140000px;}
.wsda{word-spacing:7.191000px;}
.ws1a{word-spacing:7.200000px;}
.wsc6{word-spacing:7.260000px;}
.ws80{word-spacing:7.320000px;}
.ws7d{word-spacing:7.440000px;}
.ws38{word-spacing:7.500000px;}
.wsdd{word-spacing:7.548000px;}
.wsc0{word-spacing:7.560000px;}
.wscd{word-spacing:7.740000px;}
.ws11b{word-spacing:7.905000px;}
.ws81{word-spacing:7.920000px;}
.ws117{word-spacing:7.956000px;}
.ws7c{word-spacing:7.980000px;}
.ws67{word-spacing:8.160000px;}
.ws2d{word-spacing:8.220000px;}
.ws87{word-spacing:8.280000px;}
.wsd1{word-spacing:8.340000px;}
.ws7e{word-spacing:8.400000px;}
.ws2e{word-spacing:8.580000px;}
.wsb6{word-spacing:8.700000px;}
.wsf4{word-spacing:8.721000px;}
.wsdb{word-spacing:8.874000px;}
.ws49{word-spacing:8.940000px;}
.wsfa{word-spacing:9.000000px;}
.wsef{word-spacing:9.027000px;}
.ws4e{word-spacing:9.180000px;}
.wsc4{word-spacing:9.420000px;}
.ws4c{word-spacing:9.480000px;}
.ws50{word-spacing:9.600000px;}
.ws52{word-spacing:9.840000px;}
.ws77{word-spacing:9.900000px;}
.ws74{word-spacing:9.960000px;}
.ws5b{word-spacing:10.020000px;}
.ws36{word-spacing:10.380000px;}
.wsfb{word-spacing:10.440000px;}
.ws86{word-spacing:10.500000px;}
.wsc3{word-spacing:10.740000px;}
.ws54{word-spacing:10.800000px;}
.ws73{word-spacing:11.040000px;}
.ws75{word-spacing:11.280000px;}
.ws40{word-spacing:11.520000px;}
.ws48{word-spacing:12.060000px;}
.wsd0{word-spacing:12.180000px;}
.ws3a{word-spacing:12.360000px;}
.wsf9{word-spacing:12.480000px;}
.wsd2{word-spacing:12.540000px;}
.ws14{word-spacing:12.900000px;}
.ws3d{word-spacing:12.960000px;}
.ws27{word-spacing:13.140000px;}
.ws6c{word-spacing:13.150632px;}
.ws7b{word-spacing:13.200000px;}
.ws28{word-spacing:13.440000px;}
.wsb7{word-spacing:13.620000px;}
.wsdc{word-spacing:13.719000px;}
.ws34{word-spacing:14.100000px;}
.ws78{word-spacing:14.160000px;}
.ws5a{word-spacing:14.280000px;}
.wscf{word-spacing:15.360000px;}
.ws3f{word-spacing:15.840000px;}
.ws6d{word-spacing:16.498065px;}
.ws95{word-spacing:16.740000px;}
.ws45{word-spacing:17.040000px;}
.ws11e{word-spacing:17.595000px;}
.ws47{word-spacing:18.480000px;}
.ws100{word-spacing:19.890000px;}
.wsd3{word-spacing:20.340000px;}
.wsae{word-spacing:22.402491px;}
.wsa3{word-spacing:22.783173px;}
.wsa0{word-spacing:23.059658px;}
.ws9c{word-spacing:23.059750px;}
.ws9e{word-spacing:23.060391px;}
.wsa5{word-spacing:23.416750px;}
.wsa8{word-spacing:23.417391px;}
.ws41{word-spacing:24.660000px;}
.ws101{word-spacing:25.908000px;}
.wsca{word-spacing:26.040000px;}
.wsa1{word-spacing:27.713562px;}
.wsa9{word-spacing:27.714020px;}
.wsa7{word-spacing:29.606120px;}
.wsab{word-spacing:40.399658px;}
.wsad{word-spacing:40.399750px;}
.ws9d{word-spacing:40.990173px;}
.wsac{word-spacing:42.291850px;}
.ws8c{word-spacing:45.525604px;}
.wsa4{word-spacing:53.213562px;}
.ws9b{word-spacing:53.214020px;}
.ws91{word-spacing:56.665283px;}
.ws8b{word-spacing:58.324120px;}
.ws8d{word-spacing:58.339783px;}
.wsb3{word-spacing:90.875977px;}
.wsaa{word-spacing:91.399658px;}
.ws9f{word-spacing:94.252808px;}
.wsa2{word-spacing:94.253540px;}
.ws8f{word-spacing:100.361938px;}
.wsa6{word-spacing:132.502808px;}
.wsaf{word-spacing:138.163808px;}
.ws70{word-spacing:185.309876px;}
.wsb2{word-spacing:188.639943px;}
.ws71{word-spacing:223.624146px;}
.ws8e{word-spacing:229.206665px;}
.ws6f{word-spacing:263.392181px;}
._3{margin-left:-70.498787px;}
._6d{margin-left:-16.200000px;}
._84{margin-left:-13.296600px;}
._10{margin-left:-11.520000px;}
._7b{margin-left:-9.900000px;}
._f{margin-left:-8.280000px;}
._4{margin-left:-6.568800px;}
._13{margin-left:-5.568000px;}
._81{margin-left:-4.544100px;}
._2{margin-left:-3.522000px;}
._7{margin-left:-2.244000px;}
._0{margin-left:-1.020000px;}
._9{width:1.386000px;}
._a{width:2.568000px;}
._8{width:3.672000px;}
._1{width:5.268000px;}
._d{width:7.161621px;}
._e{width:8.500758px;}
._b{width:9.538203px;}
._c{width:10.713595px;}
._11{width:12.058809px;}
._12{width:13.938000px;}
._15{width:16.296000px;}
._6{width:18.596379px;}
._86{width:21.726000px;}
._85{width:23.001000px;}
._83{width:24.531000px;}
._82{width:25.551000px;}
._14{width:27.654000px;}
._70{width:38.250000px;}
._5b{width:40.604964px;}
._7c{width:44.880000px;}
._7f{width:46.155000px;}
._7d{width:48.603000px;}
._80{width:51.051000px;}
._7e{width:53.142000px;}
._5{width:54.416991px;}
._34{width:58.627850px;}
._5c{width:64.536020px;}
._62{width:66.196810px;}
._38{width:67.249174px;}
._58{width:69.244950px;}
._2d{width:71.089783px;}
._31{width:73.871987px;}
._69{width:78.650391px;}
._67{width:80.190475px;}
._49{width:82.369765px;}
._29{width:83.776245px;}
._39{width:84.795499px;}
._6b{width:86.462827px;}
._66{width:87.542203px;}
._72{width:89.735388px;}
._6e{width:91.081237px;}
._3a{width:92.264547px;}
._68{width:94.272837px;}
._23{width:95.319122px;}
._28{width:96.589783px;}
._3b{width:98.049686px;}
._3f{width:100.922993px;}
._57{width:103.396202px;}
._5a{width:104.709836px;}
._4a{width:106.301462px;}
._4d{width:107.699524px;}
._30{width:109.276428px;}
._40{width:111.808822px;}
._43{width:112.824486px;}
._46{width:115.613365px;}
._4b{width:116.742874px;}
._24{width:117.792604px;}
._26{width:119.159987px;}
._51{width:120.548535px;}
._47{width:122.195834px;}
._27{width:123.607819px;}
._44{width:125.409436px;}
._32{width:126.718140px;}
._50{width:129.084857px;}
._7a{width:130.117850px;}
._59{width:131.752202px;}
._6a{width:132.987526px;}
._2e{width:134.776062px;}
._3c{width:137.277515px;}
._79{width:138.469217px;}
._78{width:143.458237px;}
._53{width:144.553202px;}
._64{width:145.838231px;}
._36{width:149.430725px;}
._35{width:152.217499px;}
._73{width:157.282678px;}
._37{width:160.276062px;}
._41{width:164.185799px;}
._48{width:165.309762px;}
._25{width:166.395590px;}
._5d{width:170.306512px;}
._52{width:171.819031px;}
._2f{width:175.879211px;}
._2b{width:177.717590px;}
._71{width:183.167623px;}
._3e{width:185.766353px;}
._2c{width:187.680725px;}
._74{width:190.427938px;}
._42{width:191.544708px;}
._6f{width:194.829623px;}
._55{width:196.915100px;}
._1f{width:198.060059px;}
._3d{width:199.892987px;}
._2a{width:201.379120px;}
._20{width:206.899782px;}
._19{width:211.015181px;}
._4e{width:212.114319px;}
._33{width:217.442382px;}
._4f{width:222.415100px;}
._77{width:228.885993px;}
._75{width:230.705913px;}
._1a{width:234.946146px;}
._1d{width:236.374146px;}
._1c{width:237.892181px;}
._45{width:242.758267px;}
._1b{width:244.827059px;}
._22{width:249.060059px;}
._4c{width:253.540202px;}
._21{width:263.203173px;}
._76{width:265.143160px;}
._54{width:317.290202px;}
._6c{width:371.441391px;}
._56{width:382.519202px;}
._18{width:566.347173px;}
._16{width:611.686173px;}
._17{width:612.934204px;}
._1e{width:620.152173px;}
._65{width:739.763391px;}
._5e{width:756.746391px;}
._60{width:765.212391px;}
._61{width:768.068391px;}
._5f{width:770.924391px;}
._63{width:782.246391px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887799px;}
.fs4{font-size:35.699999px;}
.fsa{font-size:41.842800px;}
.fs5{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:59.775599px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:0.298737px;}
.y77{bottom:4.782303px;}
.y66{bottom:22.219666px;}
.y68{bottom:27.642151px;}
.y74{bottom:35.115143px;}
.y3c{bottom:60.997650px;}
.y6d{bottom:75.708115px;}
.y6f{bottom:87.378159px;}
.y71{bottom:92.800644px;}
.y84{bottom:114.803100px;}
.y24{bottom:115.651050px;}
.y114{bottom:116.235603px;}
.y14{bottom:124.299145px;}
.y113{bottom:131.235603px;}
.y83{bottom:132.147446px;}
.y23{bottom:138.151050px;}
.y11d{bottom:140.799145px;}
.y13{bottom:143.049145px;}
.y112{bottom:146.235603px;}
.y82{bottom:149.492249px;}
.y11c{bottom:155.799145px;}
.y111{bottom:161.235603px;}
.y12{bottom:161.799145px;}
.y22{bottom:163.051048px;}
.y81{bottom:166.837050px;}
.y110{bottom:176.235603px;}
.y21{bottom:178.051048px;}
.y11{bottom:180.549145px;}
.y80{bottom:184.181854px;}
.y11b{bottom:188.799145px;}
.y10f{bottom:191.235603px;}
.y10{bottom:199.299156px;}
.y20{bottom:200.551048px;}
.y7f{bottom:201.526657px;}
.y11a{bottom:203.799156px;}
.y10e{bottom:206.235603px;}
.yda{bottom:208.039810px;}
.y1f{bottom:215.551048px;}
.yf{bottom:218.049156px;}
.y119{bottom:218.799156px;}
.y7e{bottom:218.871460px;}
.y10d{bottom:221.235603px;}
.yd9{bottom:227.291702px;}
.y118{bottom:233.799156px;}
.y7d{bottom:236.216240px;}
.y10c{bottom:236.235603px;}
.ye{bottom:236.799156px;}
.y1e{bottom:238.051048px;}
.yd8{bottom:239.536057px;}
.y117{bottom:248.799156px;}
.y10b{bottom:251.235603px;}
.y1d{bottom:253.051048px;}
.y7c{bottom:253.560448px;}
.yd{bottom:255.549156px;}
.yd7{bottom:256.880699px;}
.y116{bottom:263.799156px;}
.y10a{bottom:266.235603px;}
.yb5{bottom:267.295052px;}
.y7a{bottom:270.917244px;}
.yd6{bottom:274.225639px;}
.yc{bottom:274.299156px;}
.y1c{bottom:275.551048px;}
.y115{bottom:278.799156px;}
.y109{bottom:281.235603px;}
.y7b{bottom:285.904793px;}
.y79{bottom:285.917244px;}
.yb4{bottom:286.546944px;}
.y1b{bottom:290.551048px;}
.yd5{bottom:291.570305px;}
.yb{bottom:293.049156px;}
.ydc{bottom:294.763802px;}
.y108{bottom:296.235603px;}
.y78{bottom:303.261452px;}
.yd4{bottom:308.915245px;}
.yb3{bottom:310.899010px;}
.y107{bottom:311.235603px;}
.ya{bottom:311.799156px;}
.y1a{bottom:313.051048px;}
.ydb{bottom:314.015694px;}
.y106{bottom:326.235603px;}
.yd3{bottom:326.260048px;}
.y19{bottom:328.051048px;}
.yb2{bottom:330.150902px;}
.y9{bottom:330.549156px;}
.y105{bottom:341.235603px;}
.yb1{bottom:342.395256px;}
.yd2{bottom:343.604850px;}
.y8{bottom:349.299156px;}
.y18{bottom:350.551048px;}
.y104{bottom:356.235603px;}
.yb0{bottom:359.740059px;}
.yd1{bottom:360.949654px;}
.y17{bottom:365.551048px;}
.y7{bottom:368.049156px;}
.y103{bottom:371.235603px;}
.yaf{bottom:377.084839px;}
.yd0{bottom:378.294456px;}
.y102{bottom:386.235580px;}
.y6{bottom:386.799133px;}
.y16{bottom:388.051071px;}
.yae{bottom:394.429642px;}
.ycf{bottom:395.639236px;}
.y101{bottom:401.235580px;}
.y15{bottom:403.051071px;}
.y5{bottom:405.549133px;}
.yad{bottom:411.774445px;}
.yce{bottom:412.984039px;}
.y100{bottom:416.235580px;}
.y60{bottom:424.299133px;}
.yac{bottom:429.119247px;}
.ycd{bottom:430.328842px;}
.yff{bottom:431.235580px;}
.y4{bottom:443.049133px;}
.yfe{bottom:446.235580px;}
.yab{bottom:446.464050px;}
.ycc{bottom:447.673645px;}
.yfd{bottom:461.235580px;}
.y5f{bottom:461.799133px;}
.yaa{bottom:464.552399px;}
.ycb{bottom:465.018448px;}
.yfc{bottom:476.235580px;}
.y5e{bottom:480.549133px;}
.ya8{bottom:481.896606px;}
.yca{bottom:482.363250px;}
.yfb{bottom:491.235580px;}
.y35{bottom:495.612579px;}
.ya9{bottom:496.884155px;}
.ya7{bottom:496.896606px;}
.y5d{bottom:499.299133px;}
.yc9{bottom:499.708054px;}
.y147{bottom:505.458893px;}
.yfa{bottom:506.235580px;}
.ya6{bottom:514.240952px;}
.yc8{bottom:517.052856px;}
.y5c{bottom:518.049133px;}
.y146{bottom:520.458893px;}
.yf9{bottom:521.235580px;}
.ya5{bottom:529.240952px;}
.y34{bottom:532.362579px;}
.yc7{bottom:534.397659px;}
.y145{bottom:535.458893px;}
.yf8{bottom:536.235580px;}
.y5b{bottom:536.799133px;}
.y141{bottom:547.458893px;}
.y144{bottom:550.458893px;}
.y33{bottom:551.112579px;}
.yf7{bottom:551.235580px;}
.yc6{bottom:551.742462px;}
.y5a{bottom:555.549133px;}
.y140{bottom:562.458893px;}
.y143{bottom:565.458893px;}
.yf6{bottom:566.235580px;}
.ya4{bottom:566.794647px;}
.yc5{bottom:569.087265px;}
.y32{bottom:569.862579px;}
.y59{bottom:574.299133px;}
.y142{bottom:580.458893px;}
.yf5{bottom:581.235580px;}
.ya3{bottom:581.794647px;}
.yc4{bottom:586.432068px;}
.y31{bottom:588.612579px;}
.y58{bottom:593.049133px;}
.y13f{bottom:595.458893px;}
.yf4{bottom:596.235580px;}
.y6c{bottom:600.474014px;}
.ya2{bottom:601.046722px;}
.yc3{bottom:603.776871px;}
.y30{bottom:607.362579px;}
.y13e{bottom:610.458893px;}
.yf3{bottom:611.235580px;}
.y57{bottom:611.799133px;}
.ya1{bottom:618.390884px;}
.yc2{bottom:621.121628px;}
.y76{bottom:624.598663px;}
.y13d{bottom:625.458893px;}
.y2f{bottom:626.112579px;}
.yf2{bottom:626.235580px;}
.y56{bottom:630.549133px;}
.ya0{bottom:635.735687px;}
.yc1{bottom:638.466431px;}
.y13c{bottom:640.458893px;}
.yf1{bottom:641.235580px;}
.y2e{bottom:644.862579px;}
.y75{bottom:645.699280px;}
.y55{bottom:649.299133px;}
.y9f{bottom:653.080490px;}
.y13b{bottom:655.458893px;}
.yc0{bottom:655.811234px;}
.yf0{bottom:656.235580px;}
.y2d{bottom:663.612579px;}
.y73{bottom:665.931290px;}
.y54{bottom:668.049133px;}
.y9e{bottom:670.425293px;}
.y13a{bottom:670.458893px;}
.yef{bottom:671.235580px;}
.ybf{bottom:673.156036px;}
.y6e{bottom:676.182129px;}
.y72{bottom:682.009781px;}
.y2c{bottom:682.362579px;}
.y139{bottom:685.458893px;}
.yee{bottom:686.235580px;}
.y53{bottom:686.799133px;}
.y70{bottom:687.852173px;}
.y9d{bottom:688.513641px;}
.ybe{bottom:690.500839px;}
.y138{bottom:700.458893px;}
.y2b{bottom:701.112762px;}
.y52{bottom:705.549133px;}
.y9b{bottom:705.857849px;}
.ybd{bottom:707.845642px;}
.y137{bottom:715.458893px;}
.y2a{bottom:719.862762px;}
.yed{bottom:719.985580px;}
.y9c{bottom:720.845398px;}
.y9a{bottom:720.857849px;}
.y51{bottom:724.299133px;}
.ybc{bottom:725.190445px;}
.y136{bottom:730.458893px;}
.y99{bottom:738.202194px;}
.y29{bottom:738.612762px;}
.ybb{bottom:742.535248px;}
.y50{bottom:743.049133px;}
.y135{bottom:745.458893px;}
.y98{bottom:753.202194px;}
.y28{bottom:757.362762px;}
.yba{bottom:759.880050px;}
.y134{bottom:760.458893px;}
.y4f{bottom:761.799133px;}
.y133{bottom:775.458893px;}
.y27{bottom:776.112579px;}
.yec{bottom:776.235626px;}
.yb9{bottom:777.224854px;}
.y4e{bottom:780.549133px;}
.y132{bottom:790.458893px;}
.y97{bottom:790.755707px;}
.yeb{bottom:791.235626px;}
.yb8{bottom:794.569611px;}
.y26{bottom:794.862579px;}
.y4d{bottom:799.299133px;}
.y131{bottom:805.458893px;}
.yea{bottom:806.235626px;}
.yb7{bottom:811.914459px;}
.y25{bottom:813.612579px;}
.y96{bottom:815.107819px;}
.y65{bottom:815.618958px;}
.y4c{bottom:818.049133px;}
.y6b{bottom:820.234680px;}
.y130{bottom:820.458893px;}
.ye9{bottom:821.235626px;}
.y64{bottom:826.168762px;}
.yb6{bottom:829.259216px;}
.y69{bottom:831.996185px;}
.y95{bottom:834.359894px;}
.y12f{bottom:835.458893px;}
.ye8{bottom:836.235626px;}
.y4b{bottom:836.799133px;}
.y67{bottom:837.838623px;}
.y94{bottom:846.604065px;}
.y12e{bottom:850.458893px;}
.ye7{bottom:851.235626px;}
.y4a{bottom:855.549133px;}
.y37{bottom:858.878357px;}
.y93{bottom:863.948822px;}
.y12d{bottom:865.458893px;}
.ye6{bottom:866.235626px;}
.y36{bottom:873.878357px;}
.y49{bottom:874.299133px;}
.y12c{bottom:880.458893px;}
.ye5{bottom:881.235626px;}
.y92{bottom:881.293671px;}
.y48{bottom:893.049133px;}
.y12b{bottom:895.458893px;}
.ye4{bottom:896.235626px;}
.y91{bottom:898.638428px;}
.y12a{bottom:910.458893px;}
.ye3{bottom:911.235626px;}
.y47{bottom:911.799133px;}
.y90{bottom:915.983276px;}
.y3b{bottom:917.456726px;}
.y129{bottom:925.458893px;}
.ye2{bottom:926.235626px;}
.y46{bottom:930.549133px;}
.y8f{bottom:933.328033px;}
.y3a{bottom:936.206726px;}
.y128{bottom:940.458893px;}
.ye1{bottom:941.235626px;}
.y45{bottom:949.299133px;}
.y8e{bottom:950.672882px;}
.y127{bottom:955.458893px;}
.ye0{bottom:956.235626px;}
.y8d{bottom:968.017639px;}
.y44{bottom:968.049133px;}
.y126{bottom:970.458893px;}
.y39{bottom:980.043274px;}
.y8c{bottom:985.362488px;}
.y125{bottom:985.458893px;}
.y43{bottom:986.799133px;}
.ydf{bottom:989.235626px;}
.y124{bottom:1000.458893px;}
.y8b{bottom:1002.707245px;}
.yde{bottom:1004.235626px;}
.y42{bottom:1005.549133px;}
.y38{bottom:1007.043274px;}
.y123{bottom:1015.458893px;}
.y8a{bottom:1020.795593px;}
.y41{bottom:1024.299133px;}
.y122{bottom:1030.458893px;}
.ydd{bottom:1037.235626px;}
.y88{bottom:1038.139984px;}
.y40{bottom:1043.049133px;}
.y121{bottom:1045.458893px;}
.y89{bottom:1053.127533px;}
.y87{bottom:1053.139984px;}
.y120{bottom:1060.458893px;}
.y3f{bottom:1061.799133px;}
.y86{bottom:1070.484192px;}
.y62{bottom:1074.736633px;}
.y1{bottom:1075.294006px;}
.y11f{bottom:1075.458893px;}
.y3e{bottom:1080.549133px;}
.y85{bottom:1085.484192px;}
.y63{bottom:1086.818665px;}
.y61{bottom:1089.736633px;}
.y11e{bottom:1090.458893px;}
.y3{bottom:1109.543884px;}
.y3d{bottom:1125.713104px;}
.y2{bottom:1126.031982px;}
.h16{height:19.905274px;}
.h15{height:27.783619px;}
.h8{height:31.324657px;}
.h25{height:34.564453px;}
.h1d{height:35.411133px;}
.h21{height:35.436035px;}
.h13{height:36.930000px;}
.h14{height:41.484265px;}
.h6{height:41.689453px;}
.h7{height:44.749512px;}
.h1e{height:44.799316px;}
.h12{height:44.831699px;}
.h1a{height:45.051747px;}
.h3{height:48.297000px;}
.hf{height:49.113000px;}
.h27{height:50.439000px;}
.h1c{height:51.358082px;}
.h20{height:51.724437px;}
.h22{height:51.724621px;}
.h23{height:51.724622px;}
.h26{height:51.724624px;}
.h24{height:51.724712px;}
.h1f{height:51.724804px;}
.h5{height:52.646484px;}
.h2{height:55.404000px;}
.ha{height:57.780000px;}
.h19{height:57.837452px;}
.h1b{height:57.837635px;}
.h17{height:57.837818px;}
.h9{height:59.340000px;}
.hb{height:60.852539px;}
.h10{height:63.175781px;}
.hd{height:64.446000px;}
.h11{height:64.680000px;}
.h4{height:71.208000px;}
.he{height:72.000000px;}
.hc{height:92.448000px;}
.h18{height:102.075005px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:131.441998px;}
.w3{width:158.955002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:30.687899px;}
.xb{left:33.587099px;}
.x16{left:45.164400px;}
.xd{left:48.063601px;}
.x11{left:74.375101px;}
.x2{left:76.535402px;}
.xa{left:79.434603px;}
.x1{left:85.181849px;}
.x13{left:89.655899px;}
.x5{left:90.972599px;}
.x9{left:93.543303px;}
.x6{left:97.795200px;}
.x2d{left:102.047253px;}
.x1a{left:109.064398px;}
.x15{left:114.695400px;}
.xc{left:117.594452px;}
.x17{left:134.216400px;}
.xe{left:137.115600px;}
.x18{left:143.828396px;}
.x1b{left:145.428898px;}
.xf{left:147.950100px;}
.x1c{left:150.999905px;}
.x12{left:158.688595px;}
.x2a{left:166.595398px;}
.x19{left:170.589900px;}
.x10{left:175.932598px;}
.x26{left:188.446953px;}
.x23{left:208.779305px;}
.x20{left:227.093399px;}
.x1d{left:255.658196px;}
.x28{left:286.262398px;}
.x3{left:459.850342px;}
.x2b{left:466.189819px;}
.x4{left:476.858231px;}
.x2c{left:484.724396px;}
.x24{left:493.942657px;}
.x21{left:499.861221px;}
.x1e{left:512.989792px;}
.x29{left:529.284760px;}
.x8{left:699.518417px;}
.x7{left:755.658737px;}
.x27{left:765.939743px;}
.x1f{left:770.402069px;}
.x22{left:774.724091px;}
.x25{left:779.186371px;}
@media print{
.v3{vertical-align:-19.279948pt;}
.v1{vertical-align:-18.133339pt;}
.v5{vertical-align:-7.967773pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.309570pt;}
.v7{vertical-align:15.349447pt;}
.v9{vertical-align:18.133464pt;}
.v8{vertical-align:19.279460pt;}
.v2{vertical-align:21.333333pt;}
.v6{vertical-align:26.714844pt;}
.ls6{letter-spacing:-1.973333pt;}
.ls21{letter-spacing:-1.677333pt;}
.ls1e{letter-spacing:-0.725333pt;}
.ls1f{letter-spacing:-0.589333pt;}
.ls20{letter-spacing:-0.498667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000041pt;}
.ls4{letter-spacing:0.000518pt;}
.ls5{letter-spacing:0.000579pt;}
.lsf{letter-spacing:0.002066pt;}
.lsa{letter-spacing:0.002103pt;}
.lsc{letter-spacing:0.002660pt;}
.lsb{letter-spacing:0.008542pt;}
.ls13{letter-spacing:0.019757pt;}
.ls10{letter-spacing:0.023751pt;}
.ls1d{letter-spacing:0.861333pt;}
.ls8{letter-spacing:2.671516pt;}
.lsd{letter-spacing:2.676848pt;}
.ls1{letter-spacing:3.546667pt;}
.lse{letter-spacing:6.380766pt;}
.ls9{letter-spacing:6.380767pt;}
.ls11{letter-spacing:11.795718pt;}
.ls22{letter-spacing:13.962667pt;}
.ls14{letter-spacing:14.484872pt;}
.ls7{letter-spacing:14.771215pt;}
.ls12{letter-spacing:23.591436pt;}
.ls0{letter-spacing:24.273059pt;}
.ls15{letter-spacing:26.566933pt;}
.ls1a{letter-spacing:99.259758pt;}
.ls19{letter-spacing:114.334384pt;}
.ls1c{letter-spacing:173.501864pt;}
.ls1b{letter-spacing:188.642693pt;}
.ls16{letter-spacing:260.555717pt;}
.ls18{letter-spacing:260.842745pt;}
.ls17{letter-spacing:586.401070pt;}
.ws6b{word-spacing:-53.333333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.928000pt;}
.ws90{word-spacing:-12.194667pt;}
.ws22{word-spacing:-11.360000pt;}
.ws6e{word-spacing:-11.333333pt;}
.wsd5{word-spacing:-11.088000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws5{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.885333pt;}
.wsd6{word-spacing:-8.704000pt;}
.ws3{word-spacing:-7.933333pt;}
.ws7{word-spacing:-7.168000pt;}
.ws8a{word-spacing:-5.666667pt;}
.ws9{word-spacing:-3.546667pt;}
.ws10{word-spacing:-3.200000pt;}
.ws43{word-spacing:-3.040000pt;}
.wsfc{word-spacing:-2.773333pt;}
.wsd{word-spacing:-2.613333pt;}
.wscc{word-spacing:-2.560000pt;}
.ws94{word-spacing:-2.506667pt;}
.ws16{word-spacing:-2.240000pt;}
.ws103{word-spacing:-2.176000pt;}
.wsbd{word-spacing:-2.133333pt;}
.wsfd{word-spacing:-2.026667pt;}
.ws37{word-spacing:-1.973333pt;}
.ws21{word-spacing:-1.920000pt;}
.ws10b{word-spacing:-1.904000pt;}
.ws98{word-spacing:-1.858667pt;}
.ws2f{word-spacing:-1.813333pt;}
.wsc{word-spacing:-1.706667pt;}
.ws33{word-spacing:-1.653333pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws105{word-spacing:-1.496000pt;}
.ws12{word-spacing:-1.493333pt;}
.ws11a{word-spacing:-1.405333pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws4a{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.120000pt;}
.wsd9{word-spacing:-1.042667pt;}
.ws7a{word-spacing:-0.960000pt;}
.wsbf{word-spacing:-0.906667pt;}
.wsbb{word-spacing:-0.853333pt;}
.ws18{word-spacing:-0.816000pt;}
.ws1c{word-spacing:-0.746667pt;}
.wsd4{word-spacing:-0.693333pt;}
.ws10c{word-spacing:-0.680000pt;}
.wsbc{word-spacing:-0.640000pt;}
.ws61{word-spacing:-0.586667pt;}
.wsf7{word-spacing:-0.544000pt;}
.ws30{word-spacing:-0.533333pt;}
.ws10f{word-spacing:-0.453333pt;}
.wse7{word-spacing:-0.408000pt;}
.ws11d{word-spacing:-0.362667pt;}
.ws60{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws107{word-spacing:-0.226667pt;}
.ws1f{word-spacing:-0.213333pt;}
.ws97{word-spacing:-0.181333pt;}
.ws11{word-spacing:-0.106667pt;}
.ws5f{word-spacing:-0.053333pt;}
.ws6a{word-spacing:-0.053134pt;}
.ws114{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.ws110{word-spacing:0.045333pt;}
.ws35{word-spacing:0.106667pt;}
.ws123{word-spacing:0.226667pt;}
.wsfe{word-spacing:0.266667pt;}
.ws118{word-spacing:0.272000pt;}
.wse5{word-spacing:0.317333pt;}
.ws57{word-spacing:0.320000pt;}
.ws119{word-spacing:0.362667pt;}
.wse0{word-spacing:0.453333pt;}
.ws4f{word-spacing:0.480000pt;}
.wsde{word-spacing:0.498667pt;}
.ws25{word-spacing:0.533333pt;}
.ws121{word-spacing:0.544000pt;}
.ws11f{word-spacing:0.634667pt;}
.wsba{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.693333pt;}
.ws113{word-spacing:0.725333pt;}
.ws99{word-spacing:0.770667pt;}
.wsf6{word-spacing:0.906667pt;}
.wsed{word-spacing:0.952000pt;}
.wsb4{word-spacing:0.960000pt;}
.wsb0{word-spacing:0.997333pt;}
.wscb{word-spacing:1.013333pt;}
.ws9a{word-spacing:1.042667pt;}
.ws63{word-spacing:1.066667pt;}
.ws89{word-spacing:1.173333pt;}
.ws112{word-spacing:1.178667pt;}
.wse9{word-spacing:1.224000pt;}
.ws26{word-spacing:1.226667pt;}
.wsb1{word-spacing:1.269333pt;}
.ws44{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.333333pt;}
.wsf5{word-spacing:1.360000pt;}
.ws4d{word-spacing:1.386667pt;}
.wsf1{word-spacing:1.405333pt;}
.ws15{word-spacing:1.440000pt;}
.ws65{word-spacing:1.546667pt;}
.ws84{word-spacing:1.653333pt;}
.ws85{word-spacing:1.706667pt;}
.ws76{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.813333pt;}
.wsdf{word-spacing:1.858667pt;}
.ws3b{word-spacing:1.866667pt;}
.wsc9{word-spacing:1.920000pt;}
.wse3{word-spacing:1.949333pt;}
.ws46{word-spacing:2.026667pt;}
.ws5e{word-spacing:2.080000pt;}
.ws96{word-spacing:2.130667pt;}
.ws58{word-spacing:2.133333pt;}
.wse6{word-spacing:2.176000pt;}
.ws66{word-spacing:2.240000pt;}
.ws10d{word-spacing:2.266667pt;}
.ws17{word-spacing:2.293333pt;}
.ws11c{word-spacing:2.312000pt;}
.wsc8{word-spacing:2.346667pt;}
.wsb8{word-spacing:2.357333pt;}
.wsee{word-spacing:2.402667pt;}
.ws82{word-spacing:2.453333pt;}
.ws53{word-spacing:2.506667pt;}
.wsce{word-spacing:2.560000pt;}
.wsf8{word-spacing:2.666667pt;}
.ws23{word-spacing:2.674667pt;}
.ws88{word-spacing:2.720000pt;}
.ws10e{word-spacing:2.810667pt;}
.ws72{word-spacing:2.826667pt;}
.ws111{word-spacing:2.856000pt;}
.wsf{word-spacing:2.880000pt;}
.ws115{word-spacing:2.946667pt;}
.wse{word-spacing:3.040000pt;}
.ws29{word-spacing:3.200000pt;}
.wseb{word-spacing:3.264000pt;}
.ws83{word-spacing:3.306667pt;}
.ws106{word-spacing:3.309333pt;}
.wsbe{word-spacing:3.360000pt;}
.ws120{word-spacing:3.400000pt;}
.ws92{word-spacing:3.413333pt;}
.ws1d{word-spacing:3.466667pt;}
.ws3e{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.573333pt;}
.ws56{word-spacing:3.626667pt;}
.ws2c{word-spacing:3.680000pt;}
.wsec{word-spacing:3.853333pt;}
.wsc1{word-spacing:3.893333pt;}
.ws116{word-spacing:3.898667pt;}
.wsd7{word-spacing:3.944000pt;}
.ws51{word-spacing:3.946667pt;}
.wse1{word-spacing:3.989333pt;}
.ws20{word-spacing:4.000000pt;}
.ws10a{word-spacing:4.034667pt;}
.wsc2{word-spacing:4.053333pt;}
.ws1e{word-spacing:4.160000pt;}
.ws2b{word-spacing:4.213333pt;}
.ws42{word-spacing:4.320000pt;}
.wse8{word-spacing:4.352000pt;}
.wsb{word-spacing:4.373333pt;}
.ws59{word-spacing:4.480000pt;}
.ws68{word-spacing:4.533333pt;}
.ws93{word-spacing:4.693333pt;}
.wsea{word-spacing:4.850667pt;}
.wsc7{word-spacing:4.906667pt;}
.wsf0{word-spacing:4.941333pt;}
.ws55{word-spacing:4.960000pt;}
.ws122{word-spacing:4.986667pt;}
.ws32{word-spacing:5.013333pt;}
.ws7f{word-spacing:5.120000pt;}
.wsd8{word-spacing:5.168000pt;}
.ws62{word-spacing:5.280000pt;}
.ws108{word-spacing:5.349333pt;}
.wsb5{word-spacing:5.386667pt;}
.wse4{word-spacing:5.485333pt;}
.ws69{word-spacing:5.546667pt;}
.ws39{word-spacing:5.653333pt;}
.ws79{word-spacing:5.706667pt;}
.wsf2{word-spacing:5.712000pt;}
.wse2{word-spacing:5.757333pt;}
.wsb9{word-spacing:5.760000pt;}
.wsf3{word-spacing:5.802667pt;}
.wsc5{word-spacing:5.813333pt;}
.ws19{word-spacing:5.866667pt;}
.ws24{word-spacing:6.026667pt;}
.ws109{word-spacing:6.074667pt;}
.ws102{word-spacing:6.210667pt;}
.wsff{word-spacing:6.240000pt;}
.ws64{word-spacing:6.293333pt;}
.ws104{word-spacing:6.346667pt;}
.wsda{word-spacing:6.392000pt;}
.ws1a{word-spacing:6.400000pt;}
.wsc6{word-spacing:6.453333pt;}
.ws80{word-spacing:6.506667pt;}
.ws7d{word-spacing:6.613333pt;}
.ws38{word-spacing:6.666667pt;}
.wsdd{word-spacing:6.709333pt;}
.wsc0{word-spacing:6.720000pt;}
.wscd{word-spacing:6.880000pt;}
.ws11b{word-spacing:7.026667pt;}
.ws81{word-spacing:7.040000pt;}
.ws117{word-spacing:7.072000pt;}
.ws7c{word-spacing:7.093333pt;}
.ws67{word-spacing:7.253333pt;}
.ws2d{word-spacing:7.306667pt;}
.ws87{word-spacing:7.360000pt;}
.wsd1{word-spacing:7.413333pt;}
.ws7e{word-spacing:7.466667pt;}
.ws2e{word-spacing:7.626667pt;}
.wsb6{word-spacing:7.733333pt;}
.wsf4{word-spacing:7.752000pt;}
.wsdb{word-spacing:7.888000pt;}
.ws49{word-spacing:7.946667pt;}
.wsfa{word-spacing:8.000000pt;}
.wsef{word-spacing:8.024000pt;}
.ws4e{word-spacing:8.160000pt;}
.wsc4{word-spacing:8.373333pt;}
.ws4c{word-spacing:8.426667pt;}
.ws50{word-spacing:8.533333pt;}
.ws52{word-spacing:8.746667pt;}
.ws77{word-spacing:8.800000pt;}
.ws74{word-spacing:8.853333pt;}
.ws5b{word-spacing:8.906667pt;}
.ws36{word-spacing:9.226667pt;}
.wsfb{word-spacing:9.280000pt;}
.ws86{word-spacing:9.333333pt;}
.wsc3{word-spacing:9.546667pt;}
.ws54{word-spacing:9.600000pt;}
.ws73{word-spacing:9.813333pt;}
.ws75{word-spacing:10.026667pt;}
.ws40{word-spacing:10.240000pt;}
.ws48{word-spacing:10.720000pt;}
.wsd0{word-spacing:10.826667pt;}
.ws3a{word-spacing:10.986667pt;}
.wsf9{word-spacing:11.093333pt;}
.wsd2{word-spacing:11.146667pt;}
.ws14{word-spacing:11.466667pt;}
.ws3d{word-spacing:11.520000pt;}
.ws27{word-spacing:11.680000pt;}
.ws6c{word-spacing:11.689450pt;}
.ws7b{word-spacing:11.733333pt;}
.ws28{word-spacing:11.946667pt;}
.wsb7{word-spacing:12.106667pt;}
.wsdc{word-spacing:12.194667pt;}
.ws34{word-spacing:12.533333pt;}
.ws78{word-spacing:12.586667pt;}
.ws5a{word-spacing:12.693333pt;}
.wscf{word-spacing:13.653333pt;}
.ws3f{word-spacing:14.080000pt;}
.ws6d{word-spacing:14.664947pt;}
.ws95{word-spacing:14.880000pt;}
.ws45{word-spacing:15.146667pt;}
.ws11e{word-spacing:15.640000pt;}
.ws47{word-spacing:16.426667pt;}
.ws100{word-spacing:17.680000pt;}
.wsd3{word-spacing:18.080000pt;}
.wsae{word-spacing:19.913325pt;}
.wsa3{word-spacing:20.251710pt;}
.wsa0{word-spacing:20.497474pt;}
.ws9c{word-spacing:20.497555pt;}
.ws9e{word-spacing:20.498125pt;}
.wsa5{word-spacing:20.814889pt;}
.wsa8{word-spacing:20.815458pt;}
.ws41{word-spacing:21.920000pt;}
.ws101{word-spacing:23.029333pt;}
.wsca{word-spacing:23.146667pt;}
.wsa1{word-spacing:24.634277pt;}
.wsa9{word-spacing:24.634684pt;}
.wsa7{word-spacing:26.316551pt;}
.wsab{word-spacing:35.910807pt;}
.wsad{word-spacing:35.910889pt;}
.ws9d{word-spacing:36.435710pt;}
.wsac{word-spacing:37.592755pt;}
.ws8c{word-spacing:40.467204pt;}
.wsa4{word-spacing:47.300944pt;}
.ws9b{word-spacing:47.301351pt;}
.ws91{word-spacing:50.369141pt;}
.ws8b{word-spacing:51.843662pt;}
.ws8d{word-spacing:51.857585pt;}
.wsb3{word-spacing:80.778646pt;}
.wsaa{word-spacing:81.244141pt;}
.ws9f{word-spacing:83.780273pt;}
.wsa2{word-spacing:83.780924pt;}
.ws8f{word-spacing:89.210612pt;}
.wsa6{word-spacing:117.780273pt;}
.wsaf{word-spacing:122.812273pt;}
.ws70{word-spacing:164.719890pt;}
.wsb2{word-spacing:167.679949pt;}
.ws71{word-spacing:198.777018pt;}
.ws8e{word-spacing:203.739258pt;}
.ws6f{word-spacing:234.126383pt;}
._3{margin-left:-62.665588pt;}
._6d{margin-left:-14.400000pt;}
._84{margin-left:-11.819200pt;}
._10{margin-left:-10.240000pt;}
._7b{margin-left:-8.800000pt;}
._f{margin-left:-7.360000pt;}
._4{margin-left:-5.838933pt;}
._13{margin-left:-4.949333pt;}
._81{margin-left:-4.039200pt;}
._2{margin-left:-3.130667pt;}
._7{margin-left:-1.994667pt;}
._0{margin-left:-0.906667pt;}
._9{width:1.232000pt;}
._a{width:2.282667pt;}
._8{width:3.264000pt;}
._1{width:4.682667pt;}
._d{width:6.365885pt;}
._e{width:7.556229pt;}
._b{width:8.478403pt;}
._c{width:9.523196pt;}
._11{width:10.718941pt;}
._12{width:12.389333pt;}
._15{width:14.485334pt;}
._6{width:16.530115pt;}
._86{width:19.312000pt;}
._85{width:20.445333pt;}
._83{width:21.805333pt;}
._82{width:22.712000pt;}
._14{width:24.581333pt;}
._70{width:34.000000pt;}
._5b{width:36.093301pt;}
._7c{width:39.893333pt;}
._7f{width:41.026667pt;}
._7d{width:43.202667pt;}
._80{width:45.378667pt;}
._7e{width:47.237333pt;}
._5{width:48.370659pt;}
._34{width:52.113645pt;}
._5c{width:57.365351pt;}
._62{width:58.841609pt;}
._38{width:59.777043pt;}
._58{width:61.551067pt;}
._2d{width:63.190918pt;}
._31{width:65.663988pt;}
._69{width:69.911458pt;}
._67{width:71.280422pt;}
._49{width:73.217569pt;}
._29{width:74.467773pt;}
._39{width:75.373777pt;}
._6b{width:76.855846pt;}
._66{width:77.815292pt;}
._72{width:79.764789pt;}
._6e{width:80.961099pt;}
._3a{width:82.012930pt;}
._68{width:83.798077pt;}
._23{width:84.728109pt;}
._28{width:85.857585pt;}
._3b{width:87.155276pt;}
._3f{width:89.709327pt;}
._57{width:91.907735pt;}
._5a{width:93.075409pt;}
._4a{width:94.490188pt;}
._4d{width:95.732910pt;}
._30{width:97.134603pt;}
._40{width:99.385619pt;}
._43{width:100.288432pt;}
._46{width:102.767436pt;}
._4b{width:103.771444pt;}
._24{width:104.704537pt;}
._26{width:105.919988pt;}
._51{width:107.154253pt;}
._47{width:108.618519pt;}
._27{width:109.873617pt;}
._44{width:111.475054pt;}
._32{width:112.638346pt;}
._50{width:114.742095pt;}
._7a{width:115.660311pt;}
._59{width:117.113069pt;}
._6a{width:118.211134pt;}
._2e{width:119.800944pt;}
._3c{width:122.024458pt;}
._79{width:123.083749pt;}
._78{width:127.518433pt;}
._53{width:128.491735pt;}
._64{width:129.633983pt;}
._36{width:132.827311pt;}
._35{width:135.304443pt;}
._73{width:139.806825pt;}
._37{width:142.467611pt;}
._41{width:145.942932pt;}
._48{width:146.942011pt;}
._25{width:147.907191pt;}
._5d{width:151.383566pt;}
._52{width:152.728027pt;}
._2f{width:156.337077pt;}
._2b{width:157.971191pt;}
._71{width:162.815665pt;}
._3e{width:165.125647pt;}
._2c{width:166.827311pt;}
._74{width:169.269279pt;}
._42{width:170.261963pt;}
._6f{width:173.181888pt;}
._55{width:175.035645pt;}
._1f{width:176.053385pt;}
._3d{width:177.682655pt;}
._2a{width:179.003662pt;}
._20{width:183.910917pt;}
._19{width:187.569050pt;}
._4e{width:188.546061pt;}
._33{width:193.282117pt;}
._4f{width:197.702311pt;}
._77{width:203.454216pt;}
._75{width:205.071923pt;}
._1a{width:208.841018pt;}
._1d{width:210.110352pt;}
._1c{width:211.459717pt;}
._45{width:215.785127pt;}
._1b{width:217.624052pt;}
._22{width:221.386719pt;}
._4c{width:225.369069pt;}
._21{width:233.958376pt;}
._76{width:235.682809pt;}
._54{width:282.035735pt;}
._6c{width:330.170125pt;}
._56{width:340.017069pt;}
._18{width:503.419709pt;}
._16{width:543.721043pt;}
._17{width:544.830404pt;}
._1e{width:551.246376pt;}
._65{width:657.567459pt;}
._5e{width:672.663459pt;}
._60{width:680.188792pt;}
._61{width:682.727459pt;}
._5f{width:685.266125pt;}
._63{width:695.330125pt;}
.fsb{font-size:26.566933pt;}
.fs4{font-size:31.733332pt;}
.fsa{font-size:37.193600pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.133865pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:0.265544pt;}
.y77{bottom:4.250936pt;}
.y66{bottom:19.750814pt;}
.y68{bottom:24.570801pt;}
.y74{bottom:31.213460pt;}
.y3c{bottom:54.220133pt;}
.y6d{bottom:67.296102pt;}
.y6f{bottom:77.669474pt;}
.y71{bottom:82.489461pt;}
.y84{bottom:102.047200pt;}
.y24{bottom:102.800933pt;}
.y114{bottom:103.320536pt;}
.y14{bottom:110.488129pt;}
.y113{bottom:116.653870pt;}
.y83{bottom:117.464396pt;}
.y23{bottom:122.800933pt;}
.y11d{bottom:125.154795pt;}
.y13{bottom:127.154795pt;}
.y112{bottom:129.987203pt;}
.y82{bottom:132.881999pt;}
.y11c{bottom:138.488129pt;}
.y111{bottom:143.320536pt;}
.y12{bottom:143.821462pt;}
.y22{bottom:144.934265pt;}
.y81{bottom:148.299600pt;}
.y110{bottom:156.653870pt;}
.y21{bottom:158.267598pt;}
.y11{bottom:160.488129pt;}
.y80{bottom:163.717204pt;}
.y11b{bottom:167.821462pt;}
.y10f{bottom:169.987203pt;}
.y10{bottom:177.154805pt;}
.y20{bottom:178.267598pt;}
.y7f{bottom:179.134806pt;}
.y11a{bottom:181.154805pt;}
.y10e{bottom:183.320536pt;}
.yda{bottom:184.924276pt;}
.y1f{bottom:191.600932pt;}
.yf{bottom:193.821472pt;}
.y119{bottom:194.488139pt;}
.y7e{bottom:194.552409pt;}
.y10d{bottom:196.653870pt;}
.yd9{bottom:202.037069pt;}
.y118{bottom:207.821472pt;}
.y7d{bottom:209.969991pt;}
.y10c{bottom:209.987203pt;}
.ye{bottom:210.488139pt;}
.y1e{bottom:211.600932pt;}
.yd8{bottom:212.920939pt;}
.y117{bottom:221.154805pt;}
.y10b{bottom:223.320536pt;}
.y1d{bottom:224.934265pt;}
.y7c{bottom:225.387065pt;}
.yd{bottom:227.154805pt;}
.yd7{bottom:228.338399pt;}
.y116{bottom:234.488139pt;}
.y10a{bottom:236.653870pt;}
.yb5{bottom:237.595601pt;}
.y7a{bottom:240.815328pt;}
.yd6{bottom:243.756124pt;}
.yc{bottom:243.821472pt;}
.y1c{bottom:244.934265pt;}
.y115{bottom:247.821472pt;}
.y109{bottom:249.987203pt;}
.y7b{bottom:254.137594pt;}
.y79{bottom:254.148661pt;}
.yb4{bottom:254.708394pt;}
.y1b{bottom:258.267598pt;}
.yd5{bottom:259.173604pt;}
.yb{bottom:260.488139pt;}
.ydc{bottom:262.012268pt;}
.y108{bottom:263.320536pt;}
.y78{bottom:269.565735pt;}
.yd4{bottom:274.591329pt;}
.yb3{bottom:276.354675pt;}
.y107{bottom:276.653870pt;}
.ya{bottom:277.154805pt;}
.y1a{bottom:278.267598pt;}
.ydb{bottom:279.125061pt;}
.y106{bottom:289.987203pt;}
.yd3{bottom:290.008931pt;}
.y19{bottom:291.600932pt;}
.yb2{bottom:293.467468pt;}
.y9{bottom:293.821472pt;}
.y105{bottom:303.320536pt;}
.yb1{bottom:304.351339pt;}
.yd2{bottom:305.426533pt;}
.y8{bottom:310.488139pt;}
.y18{bottom:311.600932pt;}
.y104{bottom:316.653870pt;}
.yb0{bottom:319.768941pt;}
.yd1{bottom:320.844137pt;}
.y17{bottom:324.934265pt;}
.y7{bottom:327.154805pt;}
.y103{bottom:329.987203pt;}
.yaf{bottom:335.186523pt;}
.yd0{bottom:336.261739pt;}
.y102{bottom:343.320516pt;}
.y6{bottom:343.821452pt;}
.y16{bottom:344.934285pt;}
.yae{bottom:350.604126pt;}
.ycf{bottom:351.679321pt;}
.y101{bottom:356.653849pt;}
.y15{bottom:358.267619pt;}
.y5{bottom:360.488118pt;}
.yad{bottom:366.021729pt;}
.yce{bottom:367.096924pt;}
.y100{bottom:369.987183pt;}
.y60{bottom:377.154785pt;}
.yac{bottom:381.439331pt;}
.ycd{bottom:382.514526pt;}
.yff{bottom:383.320516pt;}
.y4{bottom:393.821452pt;}
.yfe{bottom:396.653849pt;}
.yab{bottom:396.856933pt;}
.ycc{bottom:397.932129pt;}
.yfd{bottom:409.987183pt;}
.y5f{bottom:410.488118pt;}
.yaa{bottom:412.935465pt;}
.ycb{bottom:413.349731pt;}
.yfc{bottom:423.320516pt;}
.y5e{bottom:427.154785pt;}
.ya8{bottom:428.352539pt;}
.yca{bottom:428.767333pt;}
.yfb{bottom:436.653849pt;}
.y35{bottom:440.544515pt;}
.ya9{bottom:441.674805pt;}
.ya7{bottom:441.685872pt;}
.y5d{bottom:443.821452pt;}
.yc9{bottom:444.184937pt;}
.y147{bottom:449.296794pt;}
.yfa{bottom:449.987183pt;}
.ya6{bottom:457.103068pt;}
.yc8{bottom:459.602539pt;}
.y5c{bottom:460.488118pt;}
.y146{bottom:462.630127pt;}
.yf9{bottom:463.320516pt;}
.ya5{bottom:470.436401pt;}
.y34{bottom:473.211182pt;}
.yc7{bottom:475.020142pt;}
.y145{bottom:475.963460pt;}
.yf8{bottom:476.653849pt;}
.y5b{bottom:477.154785pt;}
.y141{bottom:486.630127pt;}
.y144{bottom:489.296794pt;}
.y33{bottom:489.877848pt;}
.yf7{bottom:489.987183pt;}
.yc6{bottom:490.437744pt;}
.y5a{bottom:493.821452pt;}
.y140{bottom:499.963460pt;}
.y143{bottom:502.630127pt;}
.yf6{bottom:503.320516pt;}
.ya4{bottom:503.817464pt;}
.yc5{bottom:505.855347pt;}
.y32{bottom:506.544515pt;}
.y59{bottom:510.488118pt;}
.y142{bottom:515.963460pt;}
.yf5{bottom:516.653849pt;}
.ya3{bottom:517.150798pt;}
.yc4{bottom:521.272949pt;}
.y31{bottom:523.211182pt;}
.y58{bottom:527.154785pt;}
.y13f{bottom:529.296794pt;}
.yf4{bottom:529.987183pt;}
.y6c{bottom:533.754679pt;}
.ya2{bottom:534.263753pt;}
.yc3{bottom:536.690552pt;}
.y30{bottom:539.877848pt;}
.y13e{bottom:542.630127pt;}
.yf3{bottom:543.320516pt;}
.y57{bottom:543.821452pt;}
.ya1{bottom:549.680786pt;}
.yc2{bottom:552.108114pt;}
.y76{bottom:555.198812pt;}
.y13d{bottom:555.963460pt;}
.y2f{bottom:556.544515pt;}
.yf2{bottom:556.653849pt;}
.y56{bottom:560.488118pt;}
.ya0{bottom:565.098389pt;}
.yc1{bottom:567.525716pt;}
.y13c{bottom:569.296794pt;}
.yf1{bottom:569.987183pt;}
.y2e{bottom:573.211182pt;}
.y75{bottom:573.954915pt;}
.y55{bottom:577.154785pt;}
.y9f{bottom:580.515991pt;}
.y13b{bottom:582.630127pt;}
.yc0{bottom:582.943319pt;}
.yf0{bottom:583.320516pt;}
.y2d{bottom:589.877848pt;}
.y73{bottom:591.938924pt;}
.y54{bottom:593.821452pt;}
.y9e{bottom:595.933594pt;}
.y13a{bottom:595.963460pt;}
.yef{bottom:596.653849pt;}
.ybf{bottom:598.360921pt;}
.y6e{bottom:601.050781pt;}
.y72{bottom:606.230916pt;}
.y2c{bottom:606.544515pt;}
.y139{bottom:609.296794pt;}
.yee{bottom:609.987183pt;}
.y53{bottom:610.488118pt;}
.y70{bottom:611.424154pt;}
.y9d{bottom:612.012126pt;}
.ybe{bottom:613.778524pt;}
.y138{bottom:622.630127pt;}
.y2b{bottom:623.211344pt;}
.y52{bottom:627.154785pt;}
.y9b{bottom:627.429199pt;}
.ybd{bottom:629.196126pt;}
.y137{bottom:635.963460pt;}
.y2a{bottom:639.878011pt;}
.yed{bottom:639.987183pt;}
.y9c{bottom:640.751465pt;}
.y9a{bottom:640.762533pt;}
.y51{bottom:643.821452pt;}
.ybc{bottom:644.613729pt;}
.y136{bottom:649.296794pt;}
.y99{bottom:656.179728pt;}
.y29{bottom:656.544678pt;}
.ybb{bottom:660.031331pt;}
.y50{bottom:660.488118pt;}
.y135{bottom:662.630127pt;}
.y98{bottom:669.513062pt;}
.y28{bottom:673.211344pt;}
.yba{bottom:675.448933pt;}
.y134{bottom:675.963460pt;}
.y4f{bottom:677.154785pt;}
.y133{bottom:689.296794pt;}
.y27{bottom:689.877848pt;}
.yec{bottom:689.987223pt;}
.yb9{bottom:690.866536pt;}
.y4e{bottom:693.821452pt;}
.y132{bottom:702.630127pt;}
.y97{bottom:702.893962pt;}
.yeb{bottom:703.320557pt;}
.yb8{bottom:706.284098pt;}
.y26{bottom:706.544515pt;}
.y4d{bottom:710.488118pt;}
.y131{bottom:715.963460pt;}
.yea{bottom:716.653890pt;}
.yb7{bottom:721.701742pt;}
.y25{bottom:723.211182pt;}
.y96{bottom:724.540283pt;}
.y65{bottom:724.994629pt;}
.y4c{bottom:727.154785pt;}
.y6b{bottom:729.097493pt;}
.y130{bottom:729.296794pt;}
.ye9{bottom:729.987223pt;}
.y64{bottom:734.372233pt;}
.yb6{bottom:737.119303pt;}
.y69{bottom:739.552165pt;}
.y95{bottom:741.653239pt;}
.y12f{bottom:742.630127pt;}
.ye8{bottom:743.320557pt;}
.y4b{bottom:743.821452pt;}
.y67{bottom:744.745443pt;}
.y94{bottom:752.536947pt;}
.y12e{bottom:755.963460pt;}
.ye7{bottom:756.653890pt;}
.y4a{bottom:760.488118pt;}
.y37{bottom:763.447428pt;}
.y93{bottom:767.954508pt;}
.y12d{bottom:769.296794pt;}
.ye6{bottom:769.987223pt;}
.y36{bottom:776.780762pt;}
.y49{bottom:777.154785pt;}
.y12c{bottom:782.630127pt;}
.ye5{bottom:783.320557pt;}
.y92{bottom:783.372152pt;}
.y48{bottom:793.821452pt;}
.y12b{bottom:795.963460pt;}
.ye4{bottom:796.653890pt;}
.y91{bottom:798.789714pt;}
.y12a{bottom:809.296794pt;}
.ye3{bottom:809.987223pt;}
.y47{bottom:810.488118pt;}
.y90{bottom:814.207357pt;}
.y3b{bottom:815.517090pt;}
.y129{bottom:822.630127pt;}
.ye2{bottom:823.320557pt;}
.y46{bottom:827.154785pt;}
.y8f{bottom:829.624919pt;}
.y3a{bottom:832.183757pt;}
.y128{bottom:835.963460pt;}
.ye1{bottom:836.653890pt;}
.y45{bottom:843.821452pt;}
.y8e{bottom:845.042562pt;}
.y127{bottom:849.296794pt;}
.ye0{bottom:849.987223pt;}
.y8d{bottom:860.460124pt;}
.y44{bottom:860.488118pt;}
.y126{bottom:862.630127pt;}
.y39{bottom:871.149577pt;}
.y8c{bottom:875.877767pt;}
.y125{bottom:875.963460pt;}
.y43{bottom:877.154785pt;}
.ydf{bottom:879.320557pt;}
.y124{bottom:889.296794pt;}
.y8b{bottom:891.295329pt;}
.yde{bottom:892.653890pt;}
.y42{bottom:893.821452pt;}
.y38{bottom:895.149577pt;}
.y123{bottom:902.630127pt;}
.y8a{bottom:907.373861pt;}
.y41{bottom:910.488118pt;}
.y122{bottom:915.963460pt;}
.ydd{bottom:921.987223pt;}
.y88{bottom:922.791097pt;}
.y40{bottom:927.154785pt;}
.y121{bottom:929.296794pt;}
.y89{bottom:936.113363pt;}
.y87{bottom:936.124430pt;}
.y120{bottom:942.630127pt;}
.y3f{bottom:943.821452pt;}
.y86{bottom:951.541504pt;}
.y62{bottom:955.321452pt;}
.y1{bottom:955.816895pt;}
.y11f{bottom:955.963460pt;}
.y3e{bottom:960.488118pt;}
.y85{bottom:964.874837pt;}
.y63{bottom:966.061035pt;}
.y61{bottom:968.654785pt;}
.y11e{bottom:969.296794pt;}
.y3{bottom:986.261230pt;}
.y3d{bottom:1000.633870pt;}
.y2{bottom:1000.917318pt;}
.h16{height:17.693577pt;}
.h15{height:24.696550pt;}
.h8{height:27.844140pt;}
.h25{height:30.723958pt;}
.h1d{height:31.476562pt;}
.h21{height:31.498698pt;}
.h13{height:32.826667pt;}
.h14{height:36.874903pt;}
.h6{height:37.057292pt;}
.h7{height:39.777344pt;}
.h1e{height:39.821615pt;}
.h12{height:39.850399pt;}
.h1a{height:40.045997pt;}
.h3{height:42.930667pt;}
.hf{height:43.656000pt;}
.h27{height:44.834667pt;}
.h1c{height:45.651629pt;}
.h20{height:45.977278pt;}
.h22{height:45.977441pt;}
.h23{height:45.977442pt;}
.h26{height:45.977443pt;}
.h24{height:45.977522pt;}
.h1f{height:45.977603pt;}
.h5{height:46.796875pt;}
.h2{height:49.248000pt;}
.ha{height:51.360000pt;}
.h19{height:51.411069pt;}
.h1b{height:51.411231pt;}
.h17{height:51.411394pt;}
.h9{height:52.746667pt;}
.hb{height:54.091146pt;}
.h10{height:56.156250pt;}
.hd{height:57.285333pt;}
.h11{height:57.493333pt;}
.h4{height:63.296000pt;}
.he{height:64.000000pt;}
.hc{height:82.176000pt;}
.h18{height:90.733337pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:116.837331pt;}
.w3{width:141.293335pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:27.278132pt;}
.xb{left:29.855199pt;}
.x16{left:40.146133pt;}
.xd{left:42.723200pt;}
.x11{left:66.111201pt;}
.x2{left:68.031469pt;}
.xa{left:70.608536pt;}
.x1{left:75.717199pt;}
.x13{left:79.694132pt;}
.x5{left:80.864532pt;}
.x9{left:83.149602pt;}
.x6{left:86.929067pt;}
.x2d{left:90.708669pt;}
.x1a{left:96.946131pt;}
.x15{left:101.951467pt;}
.xc{left:104.528402pt;}
.x17{left:119.303467pt;}
.xe{left:121.880533pt;}
.x18{left:127.847463pt;}
.x1b{left:129.270131pt;}
.xf{left:131.511200pt;}
.x1c{left:134.222137pt;}
.x12{left:141.056529pt;}
.x2a{left:148.084798pt;}
.x19{left:151.635467pt;}
.x10{left:156.384532pt;}
.x26{left:167.508403pt;}
.x23{left:185.581604pt;}
.x20{left:201.860799pt;}
.x1d{left:227.251729pt;}
.x28{left:254.455465pt;}
.x3{left:408.755859pt;}
.x2b{left:414.390951pt;}
.x4{left:423.873983pt;}
.x2c{left:430.866130pt;}
.x24{left:439.060140pt;}
.x21{left:444.321086pt;}
.x1e{left:455.990926pt;}
.x29{left:470.475342pt;}
.x8{left:621.794149pt;}
.x7{left:671.696655pt;}
.x27{left:680.835327pt;}
.x1f{left:684.801839pt;}
.x22{left:688.643636pt;}
.x25{left:692.610107pt;}
}




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