
    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_e610c95bf4b2b2a49ffaceb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_bcdab9e8d546e4ed1aa9b221.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_002eed7ad7f25dfc76587bec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_4c70d7eded5221d38e584c49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_74a7932be9a7eab1feb32285.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_b87c4760a31f5f2360ba0d59.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_c1b939633a5ebb9f2be27f9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_8e26aa5fcec35f218c96e5bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_52062831ba9c7f4a4707fc56.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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_95035a59588434c1d3240bd4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_1ac54206dca4dc6a9a8e1d42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_d7b48b4183d234b66045f2a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.734000;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_45067646d9c50bc225f863c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_b3f299bec33fb7d418ac59d1.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_82b5cf7434353dc20694d17c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.678000;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_7f20a1c13c895402cf9b3304.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.954000;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_0d947c14a0ad1c810ed452b8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.804688;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_5f6275dccae7c93bfb2d5f6d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.998000;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(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-6.126000px;}
.v3{vertical-align:-3.060000px;}
.v2{vertical-align:-1.360800px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.263600px;}
.lsc{letter-spacing:-1.200600px;}
.ls32{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.199985px;}
.ls2c{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.241496px;}
.lsf{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.239997px;}
.lse{letter-spacing:-0.239400px;}
.lsa{letter-spacing:-0.238497px;}
.ls9{letter-spacing:-0.237600px;}
.ls16{letter-spacing:-0.237598px;}
.lsb{letter-spacing:-0.212372px;}
.ls27{letter-spacing:-0.211976px;}
.ls17{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.792000px;}
.ls35{letter-spacing:1.128000px;}
.ls36{letter-spacing:1.134000px;}
.ls14{letter-spacing:1.363183px;}
.ls6{letter-spacing:1.367983px;}
.ls4{letter-spacing:1.703979px;}
.ls37{letter-spacing:5.107136px;}
.ls0{letter-spacing:5.486400px;}
.ls5{letter-spacing:9.446282px;}
.ls2e{letter-spacing:10.180673px;}
.ls31{letter-spacing:10.372670px;}
.ls2{letter-spacing:10.387070px;}
.ls2d{letter-spacing:10.396670px;}
.ls2f{letter-spacing:10.833465px;}
.ls28{letter-spacing:11.068662px;}
.ls1f{letter-spacing:12.738000px;}
.ls1d{letter-spacing:12.744000px;}
.ls34{letter-spacing:12.750000px;}
.ls33{letter-spacing:12.756000px;}
.ls1b{letter-spacing:12.810000px;}
.ls3{letter-spacing:12.813600px;}
.ls26{letter-spacing:12.840000px;}
.ls11{letter-spacing:12.894000px;}
.ls23{letter-spacing:12.936000px;}
.ls12{letter-spacing:12.996000px;}
.ls2b{letter-spacing:13.002000px;}
.ls18{letter-spacing:13.008000px;}
.ls21{letter-spacing:13.014000px;}
.ls24{letter-spacing:13.026000px;}
.ls25{letter-spacing:13.032000px;}
.ls1c{letter-spacing:13.074000px;}
.ls1a{letter-spacing:13.080000px;}
.ls20{letter-spacing:13.086000px;}
.ls30{letter-spacing:13.182000px;}
.ls15{letter-spacing:13.271834px;}
.ls13{letter-spacing:13.272000px;}
.ls29{letter-spacing:13.278000px;}
.ls1e{letter-spacing:13.284000px;}
.ls2a{letter-spacing:13.326000px;}
.ls22{letter-spacing:13.350000px;}
.ls1{letter-spacing:20.783740px;}
.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;}
}
.ws38{word-spacing:-25.247684px;}
.ws16a{word-spacing:-19.994233px;}
.wsa0{word-spacing:-13.740000px;}
.wsd8{word-spacing:-13.500000px;}
.ws198{word-spacing:-13.487831px;}
.ws11b{word-spacing:-13.444632px;}
.ws121{word-spacing:-13.267034px;}
.wsf{word-spacing:-13.247834px;}
.ws118{word-spacing:-13.180635px;}
.ws120{word-spacing:-13.175835px;}
.ws11e{word-spacing:-13.147036px;}
.wse6{word-spacing:-13.103836px;}
.wsed{word-spacing:-13.089436px;}
.ws11d{word-spacing:-13.031837px;}
.ws11a{word-spacing:-12.931038px;}
.wseb{word-spacing:-12.907039px;}
.wsf1{word-spacing:-12.892639px;}
.ws130{word-spacing:-12.863839px;}
.wsf3{word-spacing:-12.796640px;}
.ws132{word-spacing:-12.710241px;}
.ws3f{word-spacing:-10.799865px;}
.wsf5{word-spacing:-10.463869px;}
.ws10e{word-spacing:-7.140000px;}
.ws13c{word-spacing:-7.116000px;}
.ws10c{word-spacing:-6.942000px;}
.ws155{word-spacing:-6.810000px;}
.ws85{word-spacing:-6.804000px;}
.wsd0{word-spacing:-6.798000px;}
.wsad{word-spacing:-6.786000px;}
.ws125{word-spacing:-6.774000px;}
.ws15c{word-spacing:-6.696000px;}
.wsd3{word-spacing:-6.654000px;}
.wsd2{word-spacing:-6.642000px;}
.ws6b{word-spacing:-6.618000px;}
.ws7f{word-spacing:-6.612000px;}
.wscd{word-spacing:-6.600000px;}
.ws87{word-spacing:-6.594000px;}
.ws66{word-spacing:-6.582000px;}
.ws110{word-spacing:-6.570000px;}
.wsdc{word-spacing:-6.564000px;}
.ws15a{word-spacing:-6.558000px;}
.wsd6{word-spacing:-6.540000px;}
.ws81{word-spacing:-6.522000px;}
.ws71{word-spacing:-6.516000px;}
.ws69{word-spacing:-6.510000px;}
.ws15b{word-spacing:-6.504000px;}
.ws7d{word-spacing:-6.498000px;}
.wsac{word-spacing:-6.468000px;}
.ws67{word-spacing:-6.462000px;}
.ws113{word-spacing:-6.456000px;}
.ws6d{word-spacing:-6.450000px;}
.ws6e{word-spacing:-6.390000px;}
.ws8e{word-spacing:-6.312000px;}
.ws159{word-spacing:-6.306000px;}
.ws13f{word-spacing:-6.300000px;}
.ws162{word-spacing:-5.592000px;}
.ws14b{word-spacing:-5.476732px;}
.ws151{word-spacing:-5.299134px;}
.ws150{word-spacing:-5.279934px;}
.ws14e{word-spacing:-5.270334px;}
.ws14a{word-spacing:-5.174335px;}
.ws14c{word-spacing:-5.126336px;}
.wsaf{word-spacing:-4.456763px;}
.ws16b{word-spacing:-4.233565px;}
.ws16{word-spacing:-4.160628px;}
.ws168{word-spacing:-4.082366px;}
.ws174{word-spacing:-3.993550px;}
.ws1b7{word-spacing:-3.609555px;}
.ws1ad{word-spacing:-3.475157px;}
.ws1a9{word-spacing:-3.470357px;}
.ws24{word-spacing:-3.465600px;}
.ws17a{word-spacing:-3.451157px;}
.ws178{word-spacing:-3.441557px;}
.ws1a3{word-spacing:-3.412757px;}
.ws1b3{word-spacing:-3.403157px;}
.ws17f{word-spacing:-3.388758px;}
.ws1aa{word-spacing:-3.359958px;}
.ws176{word-spacing:-3.350358px;}
.ws1b4{word-spacing:-3.345558px;}
.ws6{word-spacing:-3.342600px;}
.ws175{word-spacing:-3.340758px;}
.ws1e{word-spacing:-3.340200px;}
.ws18d{word-spacing:-3.335958px;}
.ws25{word-spacing:-3.328800px;}
.ws1ae{word-spacing:-3.326358px;}
.ws10{word-spacing:-3.323100px;}
.ws186{word-spacing:-3.321558px;}
.wsc{word-spacing:-3.316759px;}
.ws8{word-spacing:-3.315600px;}
.ws188{word-spacing:-3.311959px;}
.ws184{word-spacing:-3.307159px;}
.wsb{word-spacing:-3.302359px;}
.wse{word-spacing:-3.297559px;}
.ws19d{word-spacing:-3.292759px;}
.ws193{word-spacing:-3.283159px;}
.ws182{word-spacing:-3.278359px;}
.ws1b0{word-spacing:-3.273559px;}
.ws7{word-spacing:-3.261600px;}
.ws19e{word-spacing:-3.259159px;}
.ws11{word-spacing:-3.254700px;}
.ws18c{word-spacing:-3.254359px;}
.ws187{word-spacing:-3.249559px;}
.ws2e{word-spacing:-3.249000px;}
.ws17e{word-spacing:-3.244759px;}
.ws20{word-spacing:-3.243300px;}
.ws9{word-spacing:-3.230360px;}
.ws1b8{word-spacing:-3.225560px;}
.ws19f{word-spacing:-3.220760px;}
.ws18b{word-spacing:-3.215960px;}
.ws17{word-spacing:-3.214800px;}
.ws1b9{word-spacing:-3.211160px;}
.ws22{word-spacing:-3.209100px;}
.ws1a7{word-spacing:-3.201560px;}
.ws33{word-spacing:-3.192000px;}
.ws1ba{word-spacing:-3.191960px;}
.ws15{word-spacing:-3.186300px;}
.ws28{word-spacing:-3.180600px;}
.ws1b5{word-spacing:-3.172760px;}
.ws15e{word-spacing:-3.167960px;}
.ws5a{word-spacing:-3.163500px;}
.ws1a0{word-spacing:-3.163160px;}
.ws12{word-spacing:-3.146400px;}
.ws5{word-spacing:-3.137400px;}
.ws1b1{word-spacing:-3.134361px;}
.ws2{word-spacing:-3.132000px;}
.wsd{word-spacing:-3.129561px;}
.ws35{word-spacing:-3.124761px;}
.ws30{word-spacing:-3.123600px;}
.ws1ab{word-spacing:-3.115161px;}
.ws1b6{word-spacing:-3.086361px;}
.ws1d{word-spacing:-3.083700px;}
.ws1b{word-spacing:-3.078000px;}
.ws185{word-spacing:-3.067162px;}
.ws5f{word-spacing:-3.066600px;}
.ws17b{word-spacing:-3.062362px;}
.ws60{word-spacing:-3.060900px;}
.ws4{word-spacing:-3.056400px;}
.ws5b{word-spacing:-3.049500px;}
.ws1bb{word-spacing:-3.023962px;}
.ws1a{word-spacing:-3.015300px;}
.ws32{word-spacing:-3.009600px;}
.ws189{word-spacing:-3.004762px;}
.ws92{word-spacing:-2.999962px;}
.ws26{word-spacing:-2.998200px;}
.ws1b2{word-spacing:-2.990363px;}
.ws1a8{word-spacing:-2.985563px;}
.ws2a{word-spacing:-2.981100px;}
.ws179{word-spacing:-2.975963px;}
.ws3{word-spacing:-2.970000px;}
.ws17c{word-spacing:-2.956763px;}
.ws1a1{word-spacing:-2.951963px;}
.ws19c{word-spacing:-2.947163px;}
.ws23{word-spacing:-2.946900px;}
.ws192{word-spacing:-2.942363px;}
.ws197{word-spacing:-2.937563px;}
.ws19{word-spacing:-2.918400px;}
.ws37{word-spacing:-2.918364px;}
.ws177{word-spacing:-2.913564px;}
.ws180{word-spacing:-2.908764px;}
.ws191{word-spacing:-2.894364px;}
.ws1a6{word-spacing:-2.889564px;}
.ws1a2{word-spacing:-2.875164px;}
.ws34{word-spacing:-2.872800px;}
.ws190{word-spacing:-2.870364px;}
.ws31{word-spacing:-2.867100px;}
.ws19b{word-spacing:-2.851164px;}
.ws14{word-spacing:-2.844300px;}
.ws199{word-spacing:-2.841564px;}
.ws5c{word-spacing:-2.832900px;}
.ws183{word-spacing:-2.831965px;}
.ws1c{word-spacing:-2.827200px;}
.ws5d{word-spacing:-2.821500px;}
.ws1{word-spacing:-2.818800px;}
.ws19a{word-spacing:-2.812765px;}
.ws195{word-spacing:-2.807965px;}
.ws181{word-spacing:-2.783965px;}
.ws17d{word-spacing:-2.779165px;}
.ws13{word-spacing:-2.775900px;}
.ws1ac{word-spacing:-2.774365px;}
.ws1a5{word-spacing:-2.769565px;}
.ws18e{word-spacing:-2.764765px;}
.ws196{word-spacing:-2.745566px;}
.ws2c{word-spacing:-2.736000px;}
.ws1a4{word-spacing:-2.731166px;}
.wsa{word-spacing:-2.683166px;}
.ws109{word-spacing:-2.664000px;}
.ws18a{word-spacing:-2.663967px;}
.ws18{word-spacing:-2.661900px;}
.ws0{word-spacing:-2.649567px;}
.ws1af{word-spacing:-2.635167px;}
.ws2b{word-spacing:-2.627700px;}
.ws2d{word-spacing:-2.536500px;}
.ws21{word-spacing:-2.530800px;}
.ws2f{word-spacing:-2.513700px;}
.ws27{word-spacing:-2.502300px;}
.ws29{word-spacing:-2.485200px;}
.ws5e{word-spacing:-2.473800px;}
.ws1f{word-spacing:-2.468100px;}
.ws4a{word-spacing:-1.055987px;}
.ws93{word-spacing:-0.969588px;}
.ws10d{word-spacing:-0.918000px;}
.ws4d{word-spacing:-0.916789px;}
.ws56{word-spacing:-0.911989px;}
.ws47{word-spacing:-0.892789px;}
.ws45{word-spacing:-0.878389px;}
.ws167{word-spacing:-0.876000px;}
.wse2{word-spacing:-0.864000px;}
.ws9a{word-spacing:-0.863989px;}
.ws3e{word-spacing:-0.849589px;}
.ws3a{word-spacing:-0.830390px;}
.ws4f{word-spacing:-0.815990px;}
.ws54{word-spacing:-0.806390px;}
.ws99{word-spacing:-0.796790px;}
.ws43{word-spacing:-0.791990px;}
.ws97{word-spacing:-0.782390px;}
.ws107{word-spacing:-0.774000px;}
.ws42{word-spacing:-0.772790px;}
.ws149{word-spacing:-0.753591px;}
.ws46{word-spacing:-0.743991px;}
.ws51{word-spacing:-0.739191px;}
.ws123{word-spacing:-0.734391px;}
.ws49{word-spacing:-0.724791px;}
.ws95{word-spacing:-0.700791px;}
.ws58{word-spacing:-0.686391px;}
.ws4b{word-spacing:-0.676792px;}
.ws4e{word-spacing:-0.671992px;}
.ws8b{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.657592px;}
.ws14d{word-spacing:-0.652792px;}
.ws3b{word-spacing:-0.638392px;}
.ws48{word-spacing:-0.633592px;}
.ws8a{word-spacing:-0.624000px;}
.ws39{word-spacing:-0.623992px;}
.ws119{word-spacing:-0.619192px;}
.wse3{word-spacing:-0.618000px;}
.ws9c{word-spacing:-0.614392px;}
.ws50{word-spacing:-0.609592px;}
.ws3c{word-spacing:-0.604792px;}
.ws41{word-spacing:-0.590393px;}
.wsde{word-spacing:-0.576000px;}
.ws13b{word-spacing:-0.575993px;}
.ws40{word-spacing:-0.571193px;}
.wsd5{word-spacing:-0.552000px;}
.ws13e{word-spacing:-0.546000px;}
.ws52{word-spacing:-0.542393px;}
.ws122{word-spacing:-0.537593px;}
.wsc1{word-spacing:-0.534000px;}
.wsa5{word-spacing:-0.528000px;}
.ws44{word-spacing:-0.527993px;}
.ws139{word-spacing:-0.518394px;}
.ws158{word-spacing:-0.516000px;}
.ws10f{word-spacing:-0.510000px;}
.ws106{word-spacing:-0.498000px;}
.ws53{word-spacing:-0.494394px;}
.ws98{word-spacing:-0.489594px;}
.ws172{word-spacing:-0.480000px;}
.ws152{word-spacing:-0.479994px;}
.ws76{word-spacing:-0.474000px;}
.ws4c{word-spacing:-0.470394px;}
.wsb2{word-spacing:-0.468000px;}
.ws55{word-spacing:-0.465594px;}
.wsdf{word-spacing:-0.462000px;}
.ws96{word-spacing:-0.460794px;}
.wsa6{word-spacing:-0.432000px;}
.wsb0{word-spacing:-0.426000px;}
.ws94{word-spacing:-0.422395px;}
.ws86{word-spacing:-0.414000px;}
.wsa8{word-spacing:-0.408000px;}
.ws73{word-spacing:-0.402000px;}
.ws111{word-spacing:-0.396000px;}
.wsa9{word-spacing:-0.390000px;}
.ws82{word-spacing:-0.384000px;}
.wsae{word-spacing:-0.378000px;}
.wse1{word-spacing:-0.372000px;}
.wsa1{word-spacing:-0.366000px;}
.ws74{word-spacing:-0.360000px;}
.wsb6{word-spacing:-0.359996px;}
.ws103{word-spacing:-0.354000px;}
.ws7b{word-spacing:-0.348000px;}
.ws12f{word-spacing:-0.345596px;}
.wscc{word-spacing:-0.342000px;}
.wsba{word-spacing:-0.335996px;}
.ws10b{word-spacing:-0.330000px;}
.ws77{word-spacing:-0.324000px;}
.ws115{word-spacing:-0.318000px;}
.ws8f{word-spacing:-0.312000px;}
.ws14f{word-spacing:-0.311996px;}
.ws9b{word-spacing:-0.307196px;}
.wsbf{word-spacing:-0.306000px;}
.ws154{word-spacing:-0.300000px;}
.ws91{word-spacing:-0.294000px;}
.ws63{word-spacing:-0.288000px;}
.ws11f{word-spacing:-0.283196px;}
.ws65{word-spacing:-0.282000px;}
.ws64{word-spacing:-0.276000px;}
.ws140{word-spacing:-0.270000px;}
.wsca{word-spacing:-0.264000px;}
.ws70{word-spacing:-0.258000px;}
.ws7e{word-spacing:-0.252000px;}
.ws89{word-spacing:-0.246000px;}
.ws88{word-spacing:-0.240000px;}
.wsbe{word-spacing:-0.235197px;}
.ws7c{word-spacing:-0.234000px;}
.wsd4{word-spacing:-0.228000px;}
.wsc9{word-spacing:-0.222000px;}
.ws83{word-spacing:-0.216000px;}
.wsdb{word-spacing:-0.210000px;}
.ws6a{word-spacing:-0.204000px;}
.wsd9{word-spacing:-0.198000px;}
.ws61{word-spacing:-0.192000px;}
.ws11c{word-spacing:-0.191998px;}
.wsd1{word-spacing:-0.186000px;}
.ws57{word-spacing:-0.182398px;}
.ws8d{word-spacing:-0.180000px;}
.ws12e{word-spacing:-0.177598px;}
.wsa2{word-spacing:-0.174000px;}
.wsb7{word-spacing:-0.172798px;}
.ws153{word-spacing:-0.168000px;}
.ws104{word-spacing:-0.162000px;}
.ws102{word-spacing:-0.156000px;}
.ws147{word-spacing:-0.150000px;}
.ws9d{word-spacing:-0.144000px;}
.wsb8{word-spacing:-0.139198px;}
.wsda{word-spacing:-0.138000px;}
.wsb1{word-spacing:-0.132000px;}
.wsab{word-spacing:-0.126000px;}
.wsa4{word-spacing:-0.120000px;}
.ws138{word-spacing:-0.115199px;}
.ws156{word-spacing:-0.114000px;}
.wsc5{word-spacing:-0.102000px;}
.wsc0{word-spacing:-0.096000px;}
.wsa7{word-spacing:-0.090000px;}
.ws13a{word-spacing:-0.086399px;}
.ws75{word-spacing:-0.084000px;}
.ws117{word-spacing:-0.081599px;}
.wsb9{word-spacing:-0.076799px;}
.ws9e{word-spacing:-0.072000px;}
.wsce{word-spacing:-0.066000px;}
.ws15d{word-spacing:-0.060000px;}
.wse4{word-spacing:-0.057599px;}
.ws8c{word-spacing:-0.054000px;}
.ws72{word-spacing:-0.048000px;}
.wsb4{word-spacing:-0.038400px;}
.ws90{word-spacing:-0.036000px;}
.wsbb{word-spacing:-0.033600px;}
.wsaa{word-spacing:-0.030000px;}
.wsb3{word-spacing:-0.028800px;}
.ws105{word-spacing:-0.024000px;}
.wse0{word-spacing:-0.018000px;}
.ws148{word-spacing:-0.014400px;}
.wsc8{word-spacing:-0.012000px;}
.wsc7{word-spacing:-0.006000px;}
.ws59{word-spacing:0.000000px;}
.ws62{word-spacing:0.006000px;}
.ws157{word-spacing:0.018000px;}
.ws79{word-spacing:0.024000px;}
.wsbc{word-spacing:0.028800px;}
.ws6f{word-spacing:0.030000px;}
.wsc4{word-spacing:0.036000px;}
.ws114{word-spacing:0.042000px;}
.ws126{word-spacing:0.043199px;}
.ws7a{word-spacing:0.048000px;}
.wsd7{word-spacing:0.054000px;}
.wsc3{word-spacing:0.060000px;}
.wsbd{word-spacing:0.062399px;}
.wsdd{word-spacing:0.066000px;}
.wsa3{word-spacing:0.084000px;}
.wscb{word-spacing:0.096000px;}
.ws108{word-spacing:0.102000px;}
.wse5{word-spacing:0.105599px;}
.ws80{word-spacing:0.108000px;}
.ws6c{word-spacing:0.132000px;}
.ws112{word-spacing:0.136799px;}
.ws84{word-spacing:0.138000px;}
.wsc2{word-spacing:0.143999px;}
.wscf{word-spacing:0.156000px;}
.wsf7{word-spacing:0.162000px;}
.ws9f{word-spacing:0.186000px;}
.ws124{word-spacing:0.208798px;}
.ws68{word-spacing:0.210000px;}
.wsf9{word-spacing:0.216000px;}
.ws13d{word-spacing:0.230398px;}
.ws101{word-spacing:0.237598px;}
.ws10a{word-spacing:0.266398px;}
.wsff{word-spacing:0.318000px;}
.wsf2{word-spacing:0.326396px;}
.ws116{word-spacing:0.335996px;}
.wsfa{word-spacing:0.338397px;}
.ws171{word-spacing:0.342000px;}
.ws127{word-spacing:0.364795px;}
.ws78{word-spacing:0.372000px;}
.wsfc{word-spacing:0.426000px;}
.ws169{word-spacing:0.432000px;}
.ws129{word-spacing:0.436795px;}
.ws142{word-spacing:0.450000px;}
.wsc6{word-spacing:0.475196px;}
.ws16d{word-spacing:0.480000px;}
.wsfe{word-spacing:0.486000px;}
.ws160{word-spacing:0.504000px;}
.wsfb{word-spacing:0.534000px;}
.ws166{word-spacing:0.540000px;}
.ws128{word-spacing:0.547193px;}
.ws161{word-spacing:0.624000px;}
.ws144{word-spacing:0.660000px;}
.ws145{word-spacing:0.666000px;}
.ws170{word-spacing:0.708000px;}
.wsfd{word-spacing:0.738000px;}
.ws143{word-spacing:0.750000px;}
.ws164{word-spacing:0.768000px;}
.ws12a{word-spacing:0.796790px;}
.ws15f{word-spacing:0.840000px;}
.ws163{word-spacing:0.852000px;}
.ws146{word-spacing:0.888000px;}
.ws16f{word-spacing:0.900000px;}
.ws100{word-spacing:0.912000px;}
.ws165{word-spacing:0.954000px;}
.ws141{word-spacing:0.960000px;}
.ws16e{word-spacing:0.978000px;}
.ws16c{word-spacing:1.158000px;}
.wsf8{word-spacing:2.883668px;}
.ws36{word-spacing:34.588368px;}
.ws18f{word-spacing:46.842614px;}
.ws194{word-spacing:46.847414px;}
.ws173{word-spacing:46.909814px;}
.ws12b{word-spacing:389.385533px;}
.ws12c{word-spacing:389.731128px;}
.ws134{word-spacing:389.764728px;}
.ws133{word-spacing:439.405707px;}
.ws135{word-spacing:441.416882px;}
.ws137{word-spacing:447.253609px;}
.ws136{word-spacing:451.333558px;}
.ws131{word-spacing:483.286759px;}
.ws12d{word-spacing:484.328346px;}
.wsb5{word-spacing:541.356433px;}
.wse8{word-spacing:656.391795px;}
.wsf6{word-spacing:742.790715px;}
.wsf4{word-spacing:771.590355px;}
.wsec{word-spacing:800.389995px;}
.wsf0{word-spacing:829.189635px;}
.wsee{word-spacing:857.989275px;}
.wse7{word-spacing:911.758203px;}
.wsef{word-spacing:915.588555px;}
.wse9{word-spacing:928.221997px;}
.wsea{word-spacing:962.733566px;}
._31{margin-left:-24.240000px;}
._a{margin-left:-19.775753px;}
._7{margin-left:-17.543781px;}
._c{margin-left:-3.972000px;}
._0{margin-left:-1.113586px;}
._2{width:1.846800px;}
._3{width:3.784800px;}
._b{width:9.331083px;}
._4{width:11.087861px;}
._9{width:12.451800px;}
._5{width:13.691400px;}
._8{width:14.832600px;}
._2f{width:15.892601px;}
._29{width:16.905459px;}
._32{width:19.698954px;}
._d{width:21.028537px;}
._1{width:25.250400px;}
._f{width:289.959575px;}
._19{width:343.512506px;}
._23{width:346.666067px;}
._26{width:357.417932px;}
._1a{width:362.486669px;}
._1f{width:369.456182px;}
._e{width:380.894439px;}
._15{width:391.675104px;}
._24{width:400.751791px;}
._22{width:415.295609px;}
._2d{width:418.645967px;}
._20{width:423.541906px;}
._16{width:445.765628px;}
._25{width:448.131998px;}
._1e{width:469.074136px;}
._1d{width:472.285296px;}
._2e{width:487.155510px;}
._2c{width:510.545618px;}
._18{width:539.777253px;}
._14{width:551.316308px;}
._1c{width:557.345033px;}
._2a{width:561.021787px;}
._12{width:576.050399px;}
._2b{width:602.670867px;}
._11{width:606.438819px;}
._17{width:614.478719px;}
._21{width:654.135823px;}
._1b{width:701.660029px;}
._27{width:724.176548px;}
._10{width:862.198822px;}
._28{width:1086.845614px;}
._13{width:1300.558143px;}
._30{width:1502.376420px;}
._6{width:1527.729703px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.995000px;}
.fs4{font-size:35.995200px;}
.fsb{font-size:39.995400px;}
.fs3{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:68.998800px;}
.fs9{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:54.000000px;}
.y194{bottom:100.517925px;}
.y14b{bottom:119.652281px;}
.y193{bottom:123.734035px;}
.ybc{bottom:124.498462px;}
.y28{bottom:124.498500px;}
.y1de{bottom:124.499943px;}
.ydb{bottom:124.500000px;}
.y4b{bottom:124.500064px;}
.y76{bottom:124.503000px;}
.y1b1{bottom:125.100000px;}
.ye9{bottom:127.902000px;}
.y192{bottom:138.019856px;}
.y1dd{bottom:138.786965px;}
.y179{bottom:138.787501px;}
.y4a{bottom:140.997458px;}
.y14a{bottom:142.867191px;}
.y12f{bottom:143.973000px;}
.yda{bottom:143.974500px;}
.y75{bottom:143.976000px;}
.y1b0{bottom:144.573000px;}
.y27{bottom:145.503000px;}
.y21a{bottom:145.846866px;}
.ye8{bottom:147.460500px;}
.ybb{bottom:151.541324px;}
.y191{bottom:152.306878px;}
.y149{bottom:157.154212px;}
.y49{bottom:157.494852px;}
.y1dc{bottom:158.260321px;}
.y219{bottom:160.048688px;}
.y12e{bottom:163.531500px;}
.yd9{bottom:163.533000px;}
.y74{bottom:163.534500px;}
.y1af{bottom:164.131500px;}
.y178{bottom:165.745164px;}
.y26{bottom:166.507500px;}
.ye7{bottom:166.935000px;}
.yba{bottom:169.483500px;}
.y148{bottom:171.356035px;}
.y1db{bottom:172.462144px;}
.y48{bottom:173.993445px;}
.yb9{bottom:174.841500px;}
.y218{bottom:179.607244px;}
.y12d{bottom:183.004500px;}
.y1b4{bottom:183.006000px;}
.yd8{bottom:183.007500px;}
.y73{bottom:183.009000px;}
.y1ae{bottom:183.606000px;}
.y177{bottom:183.773738px;}
.y147{bottom:185.641856px;}
.ye6{bottom:186.408000px;}
.y1da{bottom:186.749165px;}
.y25{bottom:187.512000px;}
.y47{bottom:190.490839px;}
.y217{bottom:193.809066px;}
.yb8{bottom:197.632171px;}
.y146{bottom:199.843679px;}
.y176{bottom:201.717114px;}
.y1b3{bottom:202.479000px;}
.yd7{bottom:202.480500px;}
.y72{bottom:202.483500px;}
.y1ad{bottom:203.080500px;}
.ye5{bottom:205.968000px;}
.y1d9{bottom:206.222522px;}
.y46{bottom:206.988233px;}
.y216{bottom:208.096087px;}
.y24{bottom:208.516500px;}
.y145{bottom:214.129500px;}
.yb7{bottom:216.341138px;}
.y175{bottom:219.745689px;}
.y1d8{bottom:220.509543px;}
.yd6{bottom:222.040500px;}
.y71{bottom:222.042000px;}
.y1ac{bottom:222.639000px;}
.y45{bottom:223.485627px;}
.ye4{bottom:225.441000px;}
.y215{bottom:227.569444px;}
.y1b2{bottom:227.991000px;}
.y23{bottom:229.521000px;}
.y1d7{bottom:234.710166px;}
.yb6{bottom:235.135303px;}
.y174{bottom:237.773063px;}
.y44{bottom:239.983020px;}
.yd5{bottom:241.513500px;}
.y70{bottom:241.515000px;}
.y214{bottom:241.856465px;}
.y1ab{bottom:242.112000px;}
.ye3{bottom:244.915500px;}
.y12c{bottom:247.719000px;}
.y12a{bottom:247.722000px;}
.yb5{bottom:253.843069px;}
.y1d6{bottom:254.269921px;}
.y12b{bottom:254.353500px;}
.y22{bottom:255.033000px;}
.y213{bottom:256.058288px;}
.yd4{bottom:260.988000px;}
.y6f{bottom:260.989500px;}
.y1aa{bottom:261.586500px;}
.ye2{bottom:264.474000px;}
.y43{bottom:265.494701px;}
.y173{bottom:265.921112px;}
.y129{bottom:267.195000px;}
.y1d5{bottom:268.471744px;}
.yb4{bottom:272.637234px;}
.y212{bottom:275.616843px;}
.yd3{bottom:280.462500px;}
.y6e{bottom:280.464000px;}
.y1a9{bottom:281.145000px;}
.y42{bottom:281.992095px;}
.y1d4{bottom:282.757565px;}
.ye1{bottom:283.948500px;}
.y172{bottom:284.630078px;}
.y128{bottom:286.669500px;}
.y211{bottom:289.818666px;}
.yb3{bottom:291.345000px;}
.yb1{bottom:291.347154px;}
.yb2{bottom:296.703000px;}
.y21{bottom:297.469500px;}
.y41{bottom:298.489489px;}
.yd2{bottom:300.021000px;}
.y6d{bottom:300.022500px;}
.y1a8{bottom:300.619500px;}
.y1d3{bottom:302.232122px;}
.ye0{bottom:303.421500px;}
.y171{bottom:303.423043px;}
.y210{bottom:304.104487px;}
.y127{bottom:306.228000px;}
.yb0{bottom:310.140119px;}
.y1d2{bottom:316.517943px;}
.y20{bottom:318.474000px;}
.yd1{bottom:319.494000px;}
.y6c{bottom:319.497000px;}
.y1a7{bottom:320.094000px;}
.y170{bottom:322.132009px;}
.ydf{bottom:322.896000px;}
.y20f{bottom:323.579044px;}
.y40{bottom:324.001170px;}
.y126{bottom:325.702500px;}
.yaf{bottom:328.849085px;}
.y1d1{bottom:330.719766px;}
.y20e{bottom:337.864865px;}
.yd0{bottom:338.968500px;}
.y6b{bottom:338.970000px;}
.y1f{bottom:339.478500px;}
.y1a6{bottom:339.567000px;}
.y3f{bottom:340.499764px;}
.y16f{bottom:340.840975px;}
.yde{bottom:342.454500px;}
.y125{bottom:345.175500px;}
.yae{bottom:347.642050px;}
.y1d0{bottom:350.278321px;}
.y20d{bottom:352.066688px;}
.y3e{bottom:356.997158px;}
.ycf{bottom:358.527000px;}
.y6a{bottom:358.528500px;}
.y1a5{bottom:359.125500px;}
.y16e{bottom:359.633940px;}
.y1e{bottom:360.483000px;}
.ydd{bottom:361.929000px;}
.y1cf{bottom:364.480144px;}
.y124{bottom:364.735500px;}
.yad{bottom:366.351016px;}
.y20c{bottom:366.353709px;}
.y3d{bottom:373.494551px;}
.yce{bottom:378.001500px;}
.y69{bottom:378.003000px;}
.y16d{bottom:378.342906px;}
.y1a4{bottom:378.600000px;}
.y1ce{bottom:378.767165px;}
.ydc{bottom:381.402000px;}
.y1d{bottom:381.487500px;}
.y123{bottom:384.208500px;}
.yac{bottom:385.145181px;}
.y20b{bottom:385.827066px;}
.y3c{bottom:389.991945px;}
.y16c{bottom:397.137071px;}
.ycd{bottom:397.474500px;}
.y68{bottom:397.477500px;}
.y1a3{bottom:398.074500px;}
.y1cd{bottom:398.240522px;}
.y20a{bottom:400.114087px;}
.y1c{bottom:402.492000px;}
.y122{bottom:403.683000px;}
.yab{bottom:403.852947px;}
.y3b{bottom:406.489339px;}
.y1cc{bottom:412.527543px;}
.y16b{bottom:415.844838px;}
.ycc{bottom:417.034500px;}
.y67{bottom:417.036000px;}
.y1a2{bottom:417.633000px;}
.y10c{bottom:418.311860px;}
.y209{bottom:419.587444px;}
.yaa{bottom:422.647112px;}
.y121{bottom:423.241500px;}
.y1b{bottom:423.496500px;}
.y1cb{bottom:432.000900px;}
.y3a{bottom:432.001020px;}
.y208{bottom:433.874465px;}
.y16a{bottom:434.639003px;}
.ycb{bottom:436.507500px;}
.y66{bottom:436.510500px;}
.y1a1{bottom:437.107500px;}
.y10b{bottom:440.847578px;}
.ya9{bottom:441.354879px;}
.y120{bottom:442.716000px;}
.y190{bottom:442.800000px;}
.y1a{bottom:444.501000px;}
.y1ca{bottom:446.287921px;}
.y207{bottom:448.076288px;}
.y169{bottom:453.346769px;}
.yca{bottom:455.982000px;}
.y65{bottom:455.983500px;}
.y1a0{bottom:456.580500px;}
.y39{bottom:457.512701px;}
.y10a{bottom:459.556544px;}
.y1c9{bottom:460.489744px;}
.y11f{bottom:462.189000px;}
.ya8{bottom:463.635000px;}
.y19{bottom:465.505500px;}
.y206{bottom:467.549644px;}
.y18f{bottom:468.312000px;}
.y168{bottom:472.140934px;}
.yc9{bottom:475.540500px;}
.y64{bottom:475.542000px;}
.y19f{bottom:476.139000px;}
.y109{bottom:478.349509px;}
.y1c8{bottom:479.963100px;}
.y11e{bottom:481.663500px;}
.y205{bottom:481.836666px;}
.y38{bottom:483.024382px;}
.y144{bottom:489.148500px;}
.y167{bottom:490.849900px;}
.y18{bottom:490.932000px;}
.y1c7{bottom:494.250122px;}
.yc8{bottom:495.015000px;}
.y63{bottom:495.016500px;}
.y19e{bottom:495.613500px;}
.y204{bottom:496.122487px;}
.y108{bottom:497.058475px;}
.ya7{bottom:498.586500px;}
.y11d{bottom:501.222000px;}
.y18e{bottom:508.198500px;}
.y1c6{bottom:508.535943px;}
.y37{bottom:508.536063px;}
.y143{bottom:508.707000px;}
.y166{bottom:509.642865px;}
.yc7{bottom:514.488000px;}
.y62{bottom:514.491000px;}
.y19d{bottom:515.088000px;}
.y203{bottom:515.597044px;}
.y107{bottom:515.851440px;}
.ya6{bottom:518.061000px;}
.y11c{bottom:520.696500px;}
.y36{bottom:525.033457px;}
.y18d{bottom:527.673000px;}
.y1c5{bottom:528.010500px;}
.y142{bottom:528.181500px;}
.y165{bottom:528.351831px;}
.y202{bottom:529.797666px;}
.y17{bottom:533.452500px;}
.yc6{bottom:533.962500px;}
.y61{bottom:533.964000px;}
.y106{bottom:534.560407px;}
.y19c{bottom:534.646500px;}
.ya5{bottom:537.534000px;}
.y11b{bottom:540.169500px;}
.y1c4{bottom:542.211122px;}
.y164{bottom:547.144796px;}
.y18c{bottom:547.231500px;}
.y141{bottom:547.654500px;}
.y201{bottom:549.357422px;}
.y35{bottom:550.545138px;}
.y105{bottom:553.354572px;}
.yc5{bottom:553.521000px;}
.y60{bottom:553.522500px;}
.y19b{bottom:554.119500px;}
.y16{bottom:554.457000px;}
.ya4{bottom:557.008500px;}
.y1c3{bottom:561.770878px;}
.y200{bottom:563.559244px;}
.y11a{bottom:565.681500px;}
.y163{bottom:565.853762px;}
.y18b{bottom:566.706000px;}
.y34{bottom:567.042532px;}
.y140{bottom:567.214500px;}
.y104{bottom:572.062338px;}
.yc4{bottom:572.995500px;}
.y5f{bottom:572.997000px;}
.y19a{bottom:573.594000px;}
.y15{bottom:575.461500px;}
.y1c2{bottom:575.971500px;}
.ya3{bottom:576.567000px;}
.y1ff{bottom:583.117800px;}
.y33{bottom:583.541126px;}
.y162{bottom:584.647927px;}
.y18a{bottom:586.179000px;}
.y13f{bottom:586.687500px;}
.y103{bottom:590.856503px;}
.yc3{bottom:592.468500px;}
.y5e{bottom:592.471500px;}
.y199{bottom:593.068500px;}
.ya2{bottom:596.041500px;}
.y1c1{bottom:596.211000px;}
.y14{bottom:596.466000px;}
.y1fe{bottom:597.319622px;}
.y32{bottom:600.038520px;}
.y161{bottom:603.355694px;}
.y119{bottom:604.885500px;}
.y189{bottom:605.653500px;}
.y13e{bottom:606.162000px;}
.y102{bottom:609.564269px;}
.y1fd{bottom:611.605443px;}
.y5d{bottom:612.030000px;}
.y198{bottom:612.627000px;}
.ya1{bottom:615.514500px;}
.y31{bottom:616.535913px;}
.y13{bottom:617.470500px;}
.yc2{bottom:617.980500px;}
.y160{bottom:622.149859px;}
.y118{bottom:624.360000px;}
.y188{bottom:625.212000px;}
.y13d{bottom:625.720500px;}
.y101{bottom:628.358434px;}
.y1fc{bottom:631.080000px;}
.y5c{bottom:631.504500px;}
.y197{bottom:632.101500px;}
.y30{bottom:633.033307px;}
.y12{bottom:638.475000px;}
.y15f{bottom:640.857625px;}
.ya0{bottom:641.026500px;}
.y117{bottom:643.918500px;}
.y187{bottom:644.686500px;}
.y13c{bottom:645.195000px;}
.y1fb{bottom:645.365821px;}
.y100{bottom:647.067400px;}
.y5b{bottom:650.977500px;}
.y196{bottom:651.574500px;}
.y1c0{bottom:653.530500px;}
.y2f{bottom:657.609000px;}
.y15e{bottom:659.651790px;}
.yc1{bottom:661.012500px;}
.y116{bottom:663.393000px;}
.y11{bottom:663.901500px;}
.y186{bottom:664.159500px;}
.y13b{bottom:664.668000px;}
.y1fa{bottom:664.840378px;}
.yff{bottom:665.860365px;}
.y5a{bottom:670.536000px;}
.y195{bottom:671.133000px;}
.y1bf{bottom:673.003500px;}
.y15d{bottom:678.360756px;}
.y1f9{bottom:679.041001px;}
.yc0{bottom:680.571000px;}
.y115{bottom:682.866000px;}
.y185{bottom:683.718000px;}
.y13a{bottom:684.226500px;}
.yfe{bottom:684.569331px;}
.y59{bottom:690.010500px;}
.y9f{bottom:690.607500px;}
.y15c{bottom:692.646577px;}
.y1f8{bottom:693.328022px;}
.ybf{bottom:700.044000px;}
.y1be{bottom:700.045500px;}
.y114{bottom:702.424500px;}
.y184{bottom:703.192500px;}
.yfd{bottom:703.362296px;}
.y221{bottom:707.615043px;}
.y58{bottom:709.485000px;}
.y139{bottom:709.654975px;}
.y9e{bottom:710.082000px;}
.y1f7{bottom:712.802578px;}
.y15b{bottom:714.841500px;}
.y10{bottom:718.413000px;}
.y220{bottom:721.815666px;}
.yfc{bottom:722.071263px;}
.y183{bottom:722.667000px;}
.ybe{bottom:725.556000px;}
.y1bd{bottom:727.003500px;}
.y1f6{bottom:727.088400px;}
.y113{bottom:727.936975px;}
.y57{bottom:728.958000px;}
.y9d{bottom:729.640500px;}
.y138{bottom:730.659000px;}
.yfb{bottom:740.865428px;}
.y1f5{bottom:741.290222px;}
.y182{bottom:742.225500px;}
.y2e{bottom:744.520500px;}
.y56{bottom:748.516500px;}
.y112{bottom:748.941000px;}
.y9c{bottom:749.115000px;}
.y15a{bottom:749.794500px;}
.y1bc{bottom:754.045500px;}
.y21f{bottom:755.577244px;}
.y8a{bottom:757.101211px;}
.yfa{bottom:759.573194px;}
.y1f4{bottom:760.848778px;}
.y181{bottom:761.700000px;}
.y2d{bottom:761.782500px;}
.y9b{bottom:768.588000px;}
.y159{bottom:769.269000px;}
.y89{bottom:773.599805px;}
.y55{bottom:774.028500px;}
.y1f3{bottom:775.050600px;}
.yf9{bottom:778.367359px;}
.yf{bottom:778.706138px;}
.y2c{bottom:778.960500px;}
.y1bb{bottom:781.003500px;}
.y180{bottom:781.173000px;}
.y137{bottom:781.852500px;}
.y111{bottom:788.061000px;}
.y9a{bottom:788.062500px;}
.y158{bottom:788.827500px;}
.y1f2{bottom:789.337622px;}
.y88{bottom:790.097199px;}
.y2b{bottom:796.224000px;}
.yf8{bottom:797.075125px;}
.y17f{bottom:800.731500px;}
.y136{bottom:801.411000px;}
.y87{bottom:806.594592px;}
.y99{bottom:807.621000px;}
.y1ba{bottom:808.045500px;}
.y157{bottom:808.300500px;}
.ye{bottom:808.724962px;}
.y1f1{bottom:808.810978px;}
.y2a{bottom:813.486000px;}
.yf7{bottom:815.869290px;}
.y17e{bottom:820.206000px;}
.y135{bottom:820.885500px;}
.y86{bottom:823.091986px;}
.y1f0{bottom:823.098000px;}
.yd{bottom:823.692375px;}
.y110{bottom:827.094000px;}
.y98{bottom:827.095500px;}
.y156{bottom:827.775000px;}
.yf6{bottom:834.578256px;}
.y1b9{bottom:835.002000px;}
.y21e{bottom:837.298622px;}
.yc{bottom:838.743787px;}
.y85{bottom:839.589380px;}
.y17d{bottom:839.680500px;}
.y134{bottom:840.360000px;}
.y1ef{bottom:842.571356px;}
.y97{bottom:846.568500px;}
.y155{bottom:847.333500px;}
.yf5{bottom:853.371221px;}
.yb{bottom:853.710000px;}
.y84{bottom:856.086774px;}
.y1ee{bottom:856.858378px;}
.y17c{bottom:859.153500px;}
.y133{bottom:859.918500px;}
.y1b8{bottom:860.514000px;}
.y96{bottom:866.127000px;}
.y154{bottom:866.808000px;}
.y54{bottom:870.888000px;}
.y1ed{bottom:871.059000px;}
.yf4{bottom:872.080187px;}
.y17b{bottom:878.712000px;}
.y132{bottom:879.391500px;}
.ya{bottom:880.668000px;}
.y7{bottom:880.668450px;}
.y8{bottom:881.008650px;}
.y83{bottom:881.598455px;}
.y21d{bottom:885.346022px;}
.y95{bottom:885.601500px;}
.y153{bottom:886.281000px;}
.y9{bottom:886.705500px;}
.y1ec{bottom:890.618756px;}
.yf3{bottom:890.873153px;}
.y53{bottom:891.892500px;}
.y5{bottom:897.250500px;}
.y82{bottom:898.095849px;}
.y6{bottom:903.202500px;}
.y17a{bottom:904.224000px;}
.y1eb{bottom:904.820578px;}
.y131{bottom:904.904925px;}
.y10f{bottom:905.074500px;}
.y94{bottom:905.076000px;}
.yf2{bottom:909.582119px;}
.y1b7{bottom:910.347000px;}
.y152{bottom:911.791500px;}
.y52{bottom:912.897000px;}
.y81{bottom:914.594442px;}
.y1e8{bottom:919.106400px;}
.y1ea{bottom:919.361996px;}
.y1e9{bottom:919.447195px;}
.y10d{bottom:922.081500px;}
.y10e{bottom:924.633000px;}
.y93{bottom:924.634500px;}
.yf1{bottom:928.376284px;}
.y1b6{bottom:929.820000px;}
.y80{bottom:931.091836px;}
.y130{bottom:931.861500px;}
.y21c{bottom:933.308222px;}
.y51{bottom:933.901500px;}
.y4{bottom:934.670100px;}
.y1e7{bottom:938.580956px;}
.y92{bottom:944.109000px;}
.yf0{bottom:947.084050px;}
.y7f{bottom:947.589230px;}
.y1e6{bottom:952.866778px;}
.y1b5{bottom:955.332000px;}
.y151{bottom:955.588500px;}
.y50{bottom:959.413500px;}
.y91{bottom:963.582000px;}
.y7e{bottom:964.086624px;}
.yef{bottom:965.793016px;}
.y1e4{bottom:967.068600px;}
.y1e5{bottom:967.324197px;}
.y3{bottom:968.430900px;}
.y150{bottom:975.147000px;}
.y7d{bottom:980.584018px;}
.y21b{bottom:981.355622px;}
.y90{bottom:983.140500px;}
.yee{bottom:984.587181px;}
.y1e3{bottom:986.541957px;}
.y14f{bottom:994.621500px;}
.y7c{bottom:997.081411px;}
.y4f{bottom:998.617500px;}
.y1e2{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y8e{bottom:1002.615000px;}
.yed{bottom:1003.294947px;}
.y8f{bottom:1003.380000px;}
.y7b{bottom:1013.578805px;}
.y14e{bottom:1014.094500px;}
.y1e1{bottom:1015.116000px;}
.y4e{bottom:1019.622000px;}
.yec{bottom:1022.089112px;}
.y8d{bottom:1022.089500px;}
.y7a{bottom:1030.076199px;}
.y14d{bottom:1033.653000px;}
.y1e0{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y4d{bottom:1040.626500px;}
.yeb{bottom:1040.796879px;}
.y8c{bottom:1041.562500px;}
.y79{bottom:1046.574793px;}
.y1df{bottom:1048.791179px;}
.y14c{bottom:1059.079500px;}
.y8b{bottom:1061.121000px;}
.y4c{bottom:1061.631000px;}
.y78{bottom:1063.072186px;}
.yea{bottom:1063.077000px;}
.ybd{bottom:1067.754000px;}
.y77{bottom:1118.692500px;}
.h10{height:23.996250px;}
.h4{height:27.932275px;}
.h11{height:29.996550px;}
.h13{height:34.079574px;}
.ha{height:34.968313px;}
.hf{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.h9{height:45.000000px;}
.he{height:46.500000px;}
.h7{height:53.543069px;}
.h12{height:53.999550px;}
.hd{height:55.871534px;}
.h6{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:54.000000px;}
.x18{left:61.058250px;}
.x15{left:65.054262px;}
.xf{left:71.433000px;}
.x16{left:152.560500px;}
.x21{left:256.901864px;}
.x23{left:258.433045px;}
.x14{left:276.886414px;}
.x17{left:278.419500px;}
.x1{left:300.018000px;}
.x24{left:307.332000px;}
.x12{left:308.608500px;}
.x19{left:314.305500px;}
.x10{left:317.961000px;}
.x1a{left:326.806500px;}
.x25{left:332.247289px;}
.x27{left:341.432792px;}
.x26{left:357.505391px;}
.x13{left:365.158500px;}
.xa{left:385.568850px;}
.x28{left:389.139396px;}
.x2{left:400.536000px;}
.xb{left:402.576000px;}
.x3{left:414.396000px;}
.xc{left:416.437500px;}
.x22{left:434.719241px;}
.x29{left:438.801975px;}
.x4{left:514.318500px;}
.x5{left:519.846000px;}
.x1b{left:522.141000px;}
.xd{left:541.191000px;}
.x1c{left:553.521000px;}
.x1d{left:588.727500px;}
.x6{left:640.771500px;}
.x7{left:654.718500px;}
.x1e{left:664.923000px;}
.x11{left:696.132000px;}
.x1f{left:711.525000px;}
.x20{left:745.285500px;}
.x8{left:762.292500px;}
.x9{left:767.820000px;}
@media print{
.v1{vertical-align:-5.445333pt;}
.v3{vertical-align:-2.720000pt;}
.v2{vertical-align:-1.209600pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.123200pt;}
.lsc{letter-spacing:-1.067200pt;}
.ls32{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-1.066653pt;}
.ls2c{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.214663pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.213331pt;}
.lse{letter-spacing:-0.212800pt;}
.lsa{letter-spacing:-0.211997pt;}
.ls9{letter-spacing:-0.211200pt;}
.ls16{letter-spacing:-0.211198pt;}
.lsb{letter-spacing:-0.188775pt;}
.ls27{letter-spacing:-0.188423pt;}
.ls17{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.704000pt;}
.ls35{letter-spacing:1.002667pt;}
.ls36{letter-spacing:1.008000pt;}
.ls14{letter-spacing:1.211718pt;}
.ls6{letter-spacing:1.215985pt;}
.ls4{letter-spacing:1.514648pt;}
.ls37{letter-spacing:4.539677pt;}
.ls0{letter-spacing:4.876800pt;}
.ls5{letter-spacing:8.396695pt;}
.ls2e{letter-spacing:9.049487pt;}
.ls31{letter-spacing:9.220151pt;}
.ls2{letter-spacing:9.232951pt;}
.ls2d{letter-spacing:9.241484pt;}
.ls2f{letter-spacing:9.629746pt;}
.ls28{letter-spacing:9.838810pt;}
.ls1f{letter-spacing:11.322667pt;}
.ls1d{letter-spacing:11.328000pt;}
.ls34{letter-spacing:11.333333pt;}
.ls33{letter-spacing:11.338667pt;}
.ls1b{letter-spacing:11.386667pt;}
.ls3{letter-spacing:11.389867pt;}
.ls26{letter-spacing:11.413333pt;}
.ls11{letter-spacing:11.461333pt;}
.ls23{letter-spacing:11.498667pt;}
.ls12{letter-spacing:11.552000pt;}
.ls2b{letter-spacing:11.557333pt;}
.ls18{letter-spacing:11.562667pt;}
.ls21{letter-spacing:11.568000pt;}
.ls24{letter-spacing:11.578667pt;}
.ls25{letter-spacing:11.584000pt;}
.ls1c{letter-spacing:11.621333pt;}
.ls1a{letter-spacing:11.626667pt;}
.ls20{letter-spacing:11.632000pt;}
.ls30{letter-spacing:11.717333pt;}
.ls15{letter-spacing:11.797186pt;}
.ls13{letter-spacing:11.797333pt;}
.ls29{letter-spacing:11.802667pt;}
.ls1e{letter-spacing:11.808000pt;}
.ls2a{letter-spacing:11.845333pt;}
.ls22{letter-spacing:11.866667pt;}
.ls1{letter-spacing:18.474436pt;}
.ws38{word-spacing:-22.442386pt;}
.ws16a{word-spacing:-17.772652pt;}
.wsa0{word-spacing:-12.213333pt;}
.wsd8{word-spacing:-12.000000pt;}
.ws198{word-spacing:-11.989183pt;}
.ws11b{word-spacing:-11.950784pt;}
.ws121{word-spacing:-11.792919pt;}
.wsf{word-spacing:-11.775853pt;}
.ws118{word-spacing:-11.716120pt;}
.ws120{word-spacing:-11.711854pt;}
.ws11e{word-spacing:-11.686254pt;}
.wse6{word-spacing:-11.647854pt;}
.wsed{word-spacing:-11.635055pt;}
.ws11d{word-spacing:-11.583855pt;}
.ws11a{word-spacing:-11.494256pt;}
.wseb{word-spacing:-11.472923pt;}
.wsf1{word-spacing:-11.460123pt;}
.ws130{word-spacing:-11.434524pt;}
.wsf3{word-spacing:-11.374791pt;}
.ws132{word-spacing:-11.297992pt;}
.ws3f{word-spacing:-9.599880pt;}
.wsf5{word-spacing:-9.301217pt;}
.ws10e{word-spacing:-6.346667pt;}
.ws13c{word-spacing:-6.325333pt;}
.ws10c{word-spacing:-6.170667pt;}
.ws155{word-spacing:-6.053333pt;}
.ws85{word-spacing:-6.048000pt;}
.wsd0{word-spacing:-6.042667pt;}
.wsad{word-spacing:-6.032000pt;}
.ws125{word-spacing:-6.021333pt;}
.ws15c{word-spacing:-5.952000pt;}
.wsd3{word-spacing:-5.914667pt;}
.wsd2{word-spacing:-5.904000pt;}
.ws6b{word-spacing:-5.882667pt;}
.ws7f{word-spacing:-5.877333pt;}
.wscd{word-spacing:-5.866667pt;}
.ws87{word-spacing:-5.861333pt;}
.ws66{word-spacing:-5.850667pt;}
.ws110{word-spacing:-5.840000pt;}
.wsdc{word-spacing:-5.834667pt;}
.ws15a{word-spacing:-5.829333pt;}
.wsd6{word-spacing:-5.813333pt;}
.ws81{word-spacing:-5.797333pt;}
.ws71{word-spacing:-5.792000pt;}
.ws69{word-spacing:-5.786667pt;}
.ws15b{word-spacing:-5.781333pt;}
.ws7d{word-spacing:-5.776000pt;}
.wsac{word-spacing:-5.749333pt;}
.ws67{word-spacing:-5.744000pt;}
.ws113{word-spacing:-5.738667pt;}
.ws6d{word-spacing:-5.733333pt;}
.ws6e{word-spacing:-5.680000pt;}
.ws8e{word-spacing:-5.610667pt;}
.ws159{word-spacing:-5.605333pt;}
.ws13f{word-spacing:-5.600000pt;}
.ws162{word-spacing:-4.970667pt;}
.ws14b{word-spacing:-4.868206pt;}
.ws151{word-spacing:-4.710341pt;}
.ws150{word-spacing:-4.693275pt;}
.ws14e{word-spacing:-4.684741pt;}
.ws14a{word-spacing:-4.599409pt;}
.ws14c{word-spacing:-4.556743pt;}
.wsaf{word-spacing:-3.961567pt;}
.ws16b{word-spacing:-3.763169pt;}
.ws16{word-spacing:-3.698336pt;}
.ws168{word-spacing:-3.628770pt;}
.ws174{word-spacing:-3.549822pt;}
.ws1b7{word-spacing:-3.208493pt;}
.ws1ad{word-spacing:-3.089028pt;}
.ws1a9{word-spacing:-3.084761pt;}
.ws24{word-spacing:-3.080533pt;}
.ws17a{word-spacing:-3.067695pt;}
.ws178{word-spacing:-3.059162pt;}
.ws1a3{word-spacing:-3.033562pt;}
.ws1b3{word-spacing:-3.025029pt;}
.ws17f{word-spacing:-3.012229pt;}
.ws1aa{word-spacing:-2.986629pt;}
.ws176{word-spacing:-2.978096pt;}
.ws1b4{word-spacing:-2.973829pt;}
.ws6{word-spacing:-2.971200pt;}
.ws175{word-spacing:-2.969563pt;}
.ws1e{word-spacing:-2.969067pt;}
.ws18d{word-spacing:-2.965296pt;}
.ws25{word-spacing:-2.958933pt;}
.ws1ae{word-spacing:-2.956763pt;}
.ws10{word-spacing:-2.953867pt;}
.ws186{word-spacing:-2.952496pt;}
.wsc{word-spacing:-2.948230pt;}
.ws8{word-spacing:-2.947200pt;}
.ws188{word-spacing:-2.943963pt;}
.ws184{word-spacing:-2.939697pt;}
.wsb{word-spacing:-2.935430pt;}
.wse{word-spacing:-2.931163pt;}
.ws19d{word-spacing:-2.926897pt;}
.ws193{word-spacing:-2.918364pt;}
.ws182{word-spacing:-2.914097pt;}
.ws1b0{word-spacing:-2.909830pt;}
.ws7{word-spacing:-2.899200pt;}
.ws19e{word-spacing:-2.897030pt;}
.ws11{word-spacing:-2.893067pt;}
.ws18c{word-spacing:-2.892764pt;}
.ws187{word-spacing:-2.888497pt;}
.ws2e{word-spacing:-2.888000pt;}
.ws17e{word-spacing:-2.884231pt;}
.ws20{word-spacing:-2.882933pt;}
.ws9{word-spacing:-2.871431pt;}
.ws1b8{word-spacing:-2.867164pt;}
.ws19f{word-spacing:-2.862898pt;}
.ws18b{word-spacing:-2.858631pt;}
.ws17{word-spacing:-2.857600pt;}
.ws1b9{word-spacing:-2.854364pt;}
.ws22{word-spacing:-2.852533pt;}
.ws1a7{word-spacing:-2.845831pt;}
.ws33{word-spacing:-2.837333pt;}
.ws1ba{word-spacing:-2.837298pt;}
.ws15{word-spacing:-2.832267pt;}
.ws28{word-spacing:-2.827200pt;}
.ws1b5{word-spacing:-2.820231pt;}
.ws15e{word-spacing:-2.815965pt;}
.ws5a{word-spacing:-2.812000pt;}
.ws1a0{word-spacing:-2.811698pt;}
.ws12{word-spacing:-2.796800pt;}
.ws5{word-spacing:-2.788800pt;}
.ws1b1{word-spacing:-2.786099pt;}
.ws2{word-spacing:-2.784000pt;}
.wsd{word-spacing:-2.781832pt;}
.ws35{word-spacing:-2.777565pt;}
.ws30{word-spacing:-2.776533pt;}
.ws1ab{word-spacing:-2.769032pt;}
.ws1b6{word-spacing:-2.743432pt;}
.ws1d{word-spacing:-2.741067pt;}
.ws1b{word-spacing:-2.736000pt;}
.ws185{word-spacing:-2.726366pt;}
.ws5f{word-spacing:-2.725867pt;}
.ws17b{word-spacing:-2.722099pt;}
.ws60{word-spacing:-2.720800pt;}
.ws4{word-spacing:-2.716800pt;}
.ws5b{word-spacing:-2.710667pt;}
.ws1bb{word-spacing:-2.687966pt;}
.ws1a{word-spacing:-2.680267pt;}
.ws32{word-spacing:-2.675200pt;}
.ws189{word-spacing:-2.670900pt;}
.ws92{word-spacing:-2.666633pt;}
.ws26{word-spacing:-2.665067pt;}
.ws1b2{word-spacing:-2.658100pt;}
.ws1a8{word-spacing:-2.653833pt;}
.ws2a{word-spacing:-2.649867pt;}
.ws179{word-spacing:-2.645300pt;}
.ws3{word-spacing:-2.640000pt;}
.ws17c{word-spacing:-2.628234pt;}
.ws1a1{word-spacing:-2.623967pt;}
.ws19c{word-spacing:-2.619701pt;}
.ws23{word-spacing:-2.619467pt;}
.ws192{word-spacing:-2.615434pt;}
.ws197{word-spacing:-2.611167pt;}
.ws19{word-spacing:-2.594133pt;}
.ws37{word-spacing:-2.594101pt;}
.ws177{word-spacing:-2.589834pt;}
.ws180{word-spacing:-2.585568pt;}
.ws191{word-spacing:-2.572768pt;}
.ws1a6{word-spacing:-2.568501pt;}
.ws1a2{word-spacing:-2.555701pt;}
.ws34{word-spacing:-2.553600pt;}
.ws190{word-spacing:-2.551435pt;}
.ws31{word-spacing:-2.548533pt;}
.ws19b{word-spacing:-2.534368pt;}
.ws14{word-spacing:-2.528267pt;}
.ws199{word-spacing:-2.525835pt;}
.ws5c{word-spacing:-2.518133pt;}
.ws183{word-spacing:-2.517302pt;}
.ws1c{word-spacing:-2.513067pt;}
.ws5d{word-spacing:-2.508000pt;}
.ws1{word-spacing:-2.505600pt;}
.ws19a{word-spacing:-2.500235pt;}
.ws195{word-spacing:-2.495969pt;}
.ws181{word-spacing:-2.474636pt;}
.ws17d{word-spacing:-2.470369pt;}
.ws13{word-spacing:-2.467467pt;}
.ws1ac{word-spacing:-2.466103pt;}
.ws1a5{word-spacing:-2.461836pt;}
.ws18e{word-spacing:-2.457569pt;}
.ws196{word-spacing:-2.440503pt;}
.ws2c{word-spacing:-2.432000pt;}
.ws1a4{word-spacing:-2.427703pt;}
.wsa{word-spacing:-2.385037pt;}
.ws109{word-spacing:-2.368000pt;}
.ws18a{word-spacing:-2.367970pt;}
.ws18{word-spacing:-2.366133pt;}
.ws0{word-spacing:-2.355171pt;}
.ws1af{word-spacing:-2.342371pt;}
.ws2b{word-spacing:-2.335733pt;}
.ws2d{word-spacing:-2.254667pt;}
.ws21{word-spacing:-2.249600pt;}
.ws2f{word-spacing:-2.234400pt;}
.ws27{word-spacing:-2.224267pt;}
.ws29{word-spacing:-2.209067pt;}
.ws5e{word-spacing:-2.198933pt;}
.ws1f{word-spacing:-2.193867pt;}
.ws4a{word-spacing:-0.938655pt;}
.ws93{word-spacing:-0.861856pt;}
.ws10d{word-spacing:-0.816000pt;}
.ws4d{word-spacing:-0.814923pt;}
.ws56{word-spacing:-0.810657pt;}
.ws47{word-spacing:-0.793590pt;}
.ws45{word-spacing:-0.780790pt;}
.ws167{word-spacing:-0.778667pt;}
.wse2{word-spacing:-0.768000pt;}
.ws9a{word-spacing:-0.767990pt;}
.ws3e{word-spacing:-0.755191pt;}
.ws3a{word-spacing:-0.738124pt;}
.ws4f{word-spacing:-0.725324pt;}
.ws54{word-spacing:-0.716791pt;}
.ws99{word-spacing:-0.708258pt;}
.ws43{word-spacing:-0.703991pt;}
.ws97{word-spacing:-0.695458pt;}
.ws107{word-spacing:-0.688000pt;}
.ws42{word-spacing:-0.686925pt;}
.ws149{word-spacing:-0.669858pt;}
.ws46{word-spacing:-0.661325pt;}
.ws51{word-spacing:-0.657058pt;}
.ws123{word-spacing:-0.652792pt;}
.ws49{word-spacing:-0.644259pt;}
.ws95{word-spacing:-0.622926pt;}
.ws58{word-spacing:-0.610126pt;}
.ws4b{word-spacing:-0.601592pt;}
.ws4e{word-spacing:-0.597326pt;}
.ws8b{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.584526pt;}
.ws14d{word-spacing:-0.580259pt;}
.ws3b{word-spacing:-0.567460pt;}
.ws48{word-spacing:-0.563193pt;}
.ws8a{word-spacing:-0.554667pt;}
.ws39{word-spacing:-0.554660pt;}
.ws119{word-spacing:-0.550393pt;}
.wse3{word-spacing:-0.549333pt;}
.ws9c{word-spacing:-0.546127pt;}
.ws50{word-spacing:-0.541860pt;}
.ws3c{word-spacing:-0.537593pt;}
.ws41{word-spacing:-0.524793pt;}
.wsde{word-spacing:-0.512000pt;}
.ws13b{word-spacing:-0.511994pt;}
.ws40{word-spacing:-0.507727pt;}
.wsd5{word-spacing:-0.490667pt;}
.ws13e{word-spacing:-0.485333pt;}
.ws52{word-spacing:-0.482127pt;}
.ws122{word-spacing:-0.477861pt;}
.wsc1{word-spacing:-0.474667pt;}
.wsa5{word-spacing:-0.469333pt;}
.ws44{word-spacing:-0.469327pt;}
.ws139{word-spacing:-0.460794pt;}
.ws158{word-spacing:-0.458667pt;}
.ws10f{word-spacing:-0.453333pt;}
.ws106{word-spacing:-0.442667pt;}
.ws53{word-spacing:-0.439461pt;}
.ws98{word-spacing:-0.435195pt;}
.ws172{word-spacing:-0.426667pt;}
.ws152{word-spacing:-0.426661pt;}
.ws76{word-spacing:-0.421333pt;}
.ws4c{word-spacing:-0.418128pt;}
.wsb2{word-spacing:-0.416000pt;}
.ws55{word-spacing:-0.413861pt;}
.wsdf{word-spacing:-0.410667pt;}
.ws96{word-spacing:-0.409595pt;}
.wsa6{word-spacing:-0.384000pt;}
.wsb0{word-spacing:-0.378667pt;}
.ws94{word-spacing:-0.375462pt;}
.ws86{word-spacing:-0.368000pt;}
.wsa8{word-spacing:-0.362667pt;}
.ws73{word-spacing:-0.357333pt;}
.ws111{word-spacing:-0.352000pt;}
.wsa9{word-spacing:-0.346667pt;}
.ws82{word-spacing:-0.341333pt;}
.wsae{word-spacing:-0.336000pt;}
.wse1{word-spacing:-0.330667pt;}
.wsa1{word-spacing:-0.325333pt;}
.ws74{word-spacing:-0.320000pt;}
.wsb6{word-spacing:-0.319996pt;}
.ws103{word-spacing:-0.314667pt;}
.ws7b{word-spacing:-0.309333pt;}
.ws12f{word-spacing:-0.307196pt;}
.wscc{word-spacing:-0.304000pt;}
.wsba{word-spacing:-0.298663pt;}
.ws10b{word-spacing:-0.293333pt;}
.ws77{word-spacing:-0.288000pt;}
.ws115{word-spacing:-0.282667pt;}
.ws8f{word-spacing:-0.277333pt;}
.ws14f{word-spacing:-0.277330pt;}
.ws9b{word-spacing:-0.273063pt;}
.wsbf{word-spacing:-0.272000pt;}
.ws154{word-spacing:-0.266667pt;}
.ws91{word-spacing:-0.261333pt;}
.ws63{word-spacing:-0.256000pt;}
.ws11f{word-spacing:-0.251730pt;}
.ws65{word-spacing:-0.250667pt;}
.ws64{word-spacing:-0.245333pt;}
.ws140{word-spacing:-0.240000pt;}
.wsca{word-spacing:-0.234667pt;}
.ws70{word-spacing:-0.229333pt;}
.ws7e{word-spacing:-0.224000pt;}
.ws89{word-spacing:-0.218667pt;}
.ws88{word-spacing:-0.213333pt;}
.wsbe{word-spacing:-0.209064pt;}
.ws7c{word-spacing:-0.208000pt;}
.wsd4{word-spacing:-0.202667pt;}
.wsc9{word-spacing:-0.197333pt;}
.ws83{word-spacing:-0.192000pt;}
.wsdb{word-spacing:-0.186667pt;}
.ws6a{word-spacing:-0.181333pt;}
.wsd9{word-spacing:-0.176000pt;}
.ws61{word-spacing:-0.170667pt;}
.ws11c{word-spacing:-0.170665pt;}
.wsd1{word-spacing:-0.165333pt;}
.ws57{word-spacing:-0.162131pt;}
.ws8d{word-spacing:-0.160000pt;}
.ws12e{word-spacing:-0.157865pt;}
.wsa2{word-spacing:-0.154667pt;}
.wsb7{word-spacing:-0.153598pt;}
.ws153{word-spacing:-0.149333pt;}
.ws104{word-spacing:-0.144000pt;}
.ws102{word-spacing:-0.138667pt;}
.ws147{word-spacing:-0.133333pt;}
.ws9d{word-spacing:-0.128000pt;}
.wsb8{word-spacing:-0.123732pt;}
.wsda{word-spacing:-0.122667pt;}
.wsb1{word-spacing:-0.117333pt;}
.wsab{word-spacing:-0.112000pt;}
.wsa4{word-spacing:-0.106667pt;}
.ws138{word-spacing:-0.102399pt;}
.ws156{word-spacing:-0.101333pt;}
.wsc5{word-spacing:-0.090667pt;}
.wsc0{word-spacing:-0.085333pt;}
.wsa7{word-spacing:-0.080000pt;}
.ws13a{word-spacing:-0.076799pt;}
.ws75{word-spacing:-0.074667pt;}
.ws117{word-spacing:-0.072532pt;}
.wsb9{word-spacing:-0.068266pt;}
.ws9e{word-spacing:-0.064000pt;}
.wsce{word-spacing:-0.058667pt;}
.ws15d{word-spacing:-0.053333pt;}
.wse4{word-spacing:-0.051199pt;}
.ws8c{word-spacing:-0.048000pt;}
.ws72{word-spacing:-0.042667pt;}
.wsb4{word-spacing:-0.034133pt;}
.ws90{word-spacing:-0.032000pt;}
.wsbb{word-spacing:-0.029866pt;}
.wsaa{word-spacing:-0.026667pt;}
.wsb3{word-spacing:-0.025600pt;}
.ws105{word-spacing:-0.021333pt;}
.wse0{word-spacing:-0.016000pt;}
.ws148{word-spacing:-0.012800pt;}
.wsc8{word-spacing:-0.010667pt;}
.wsc7{word-spacing:-0.005333pt;}
.ws59{word-spacing:0.000000pt;}
.ws62{word-spacing:0.005333pt;}
.ws157{word-spacing:0.016000pt;}
.ws79{word-spacing:0.021333pt;}
.wsbc{word-spacing:0.025600pt;}
.ws6f{word-spacing:0.026667pt;}
.wsc4{word-spacing:0.032000pt;}
.ws114{word-spacing:0.037333pt;}
.ws126{word-spacing:0.038400pt;}
.ws7a{word-spacing:0.042667pt;}
.wsd7{word-spacing:0.048000pt;}
.wsc3{word-spacing:0.053333pt;}
.wsbd{word-spacing:0.055466pt;}
.wsdd{word-spacing:0.058667pt;}
.wsa3{word-spacing:0.074667pt;}
.wscb{word-spacing:0.085333pt;}
.ws108{word-spacing:0.090667pt;}
.wse5{word-spacing:0.093865pt;}
.ws80{word-spacing:0.096000pt;}
.ws6c{word-spacing:0.117333pt;}
.ws112{word-spacing:0.121599pt;}
.ws84{word-spacing:0.122667pt;}
.wsc2{word-spacing:0.127999pt;}
.wscf{word-spacing:0.138667pt;}
.wsf7{word-spacing:0.144000pt;}
.ws9f{word-spacing:0.165333pt;}
.ws124{word-spacing:0.185598pt;}
.ws68{word-spacing:0.186667pt;}
.wsf9{word-spacing:0.192000pt;}
.ws13d{word-spacing:0.204798pt;}
.ws101{word-spacing:0.211198pt;}
.ws10a{word-spacing:0.236798pt;}
.wsff{word-spacing:0.282667pt;}
.wsf2{word-spacing:0.290130pt;}
.ws116{word-spacing:0.298663pt;}
.wsfa{word-spacing:0.300797pt;}
.ws171{word-spacing:0.304000pt;}
.ws127{word-spacing:0.324263pt;}
.ws78{word-spacing:0.330667pt;}
.wsfc{word-spacing:0.378667pt;}
.ws169{word-spacing:0.384000pt;}
.ws129{word-spacing:0.388262pt;}
.ws142{word-spacing:0.400000pt;}
.wsc6{word-spacing:0.422396pt;}
.ws16d{word-spacing:0.426667pt;}
.wsfe{word-spacing:0.432000pt;}
.ws160{word-spacing:0.448000pt;}
.wsfb{word-spacing:0.474667pt;}
.ws166{word-spacing:0.480000pt;}
.ws128{word-spacing:0.486394pt;}
.ws161{word-spacing:0.554667pt;}
.ws144{word-spacing:0.586667pt;}
.ws145{word-spacing:0.592000pt;}
.ws170{word-spacing:0.629333pt;}
.wsfd{word-spacing:0.656000pt;}
.ws143{word-spacing:0.666667pt;}
.ws164{word-spacing:0.682667pt;}
.ws12a{word-spacing:0.708258pt;}
.ws15f{word-spacing:0.746667pt;}
.ws163{word-spacing:0.757333pt;}
.ws146{word-spacing:0.789333pt;}
.ws16f{word-spacing:0.800000pt;}
.ws100{word-spacing:0.810667pt;}
.ws165{word-spacing:0.848000pt;}
.ws141{word-spacing:0.853333pt;}
.ws16e{word-spacing:0.869333pt;}
.ws16c{word-spacing:1.029333pt;}
.wsf8{word-spacing:2.563261pt;}
.ws36{word-spacing:30.745216pt;}
.ws18f{word-spacing:41.637880pt;}
.ws194{word-spacing:41.642146pt;}
.ws173{word-spacing:41.697612pt;}
.ws12b{word-spacing:346.120473pt;}
.ws12c{word-spacing:346.427670pt;}
.ws134{word-spacing:346.457536pt;}
.ws133{word-spacing:390.582851pt;}
.ws135{word-spacing:392.370562pt;}
.ws137{word-spacing:397.558764pt;}
.ws136{word-spacing:401.185385pt;}
.ws131{word-spacing:429.588230pt;}
.ws12d{word-spacing:430.514085pt;}
.wsb5{word-spacing:481.205718pt;}
.wse8{word-spacing:583.459373pt;}
.wsf6{word-spacing:660.258413pt;}
.wsf4{word-spacing:685.858093pt;}
.wsec{word-spacing:711.457773pt;}
.wsf0{word-spacing:737.057453pt;}
.wsee{word-spacing:762.657133pt;}
.wse7{word-spacing:810.451736pt;}
.wsef{word-spacing:813.856493pt;}
.wse9{word-spacing:825.086220pt;}
.wsea{word-spacing:855.763169pt;}
._31{margin-left:-21.546667pt;}
._a{margin-left:-17.578447pt;}
._7{margin-left:-15.594472pt;}
._c{margin-left:-3.530667pt;}
._0{margin-left:-0.989854pt;}
._2{width:1.641600pt;}
._3{width:3.364267pt;}
._b{width:8.294296pt;}
._4{width:9.855877pt;}
._9{width:11.068267pt;}
._5{width:12.170133pt;}
._8{width:13.184533pt;}
._2f{width:14.126757pt;}
._29{width:15.027075pt;}
._32{width:17.510181pt;}
._d{width:18.692033pt;}
._1{width:22.444800pt;}
._f{width:257.741845pt;}
._19{width:305.344450pt;}
._23{width:308.147615pt;}
._26{width:317.704829pt;}
._1a{width:322.210372pt;}
._1f{width:328.405495pt;}
._e{width:338.572834pt;}
._15{width:348.155648pt;}
._24{width:356.223814pt;}
._22{width:369.151652pt;}
._2d{width:372.129748pt;}
._20{width:376.481694pt;}
._16{width:396.236114pt;}
._25{width:398.339554pt;}
._1e{width:416.954788pt;}
._1d{width:419.809152pt;}
._2e{width:433.027120pt;}
._2c{width:453.818327pt;}
._18{width:479.802002pt;}
._14{width:490.058941pt;}
._1c{width:495.417807pt;}
._2a{width:498.686033pt;}
._12{width:512.044799pt;}
._2b{width:535.707437pt;}
._11{width:539.056728pt;}
._17{width:546.203306pt;}
._21{width:581.454065pt;}
._1b{width:623.697804pt;}
._27{width:643.712487pt;}
._10{width:766.398953pt;}
._28{width:966.084990pt;}
._13{width:1156.051683pt;}
._30{width:1335.445707pt;}
._6{width:1357.981958pt;}
.fsa{font-size:28.440000pt;}
.fs4{font-size:31.995733pt;}
.fsb{font-size:35.551467pt;}
.fs3{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:61.332267pt;}
.fs9{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:48.000000pt;}
.y194{bottom:89.349267pt;}
.y14b{bottom:106.357583pt;}
.y193{bottom:109.985809pt;}
.ybc{bottom:110.665300pt;}
.y28{bottom:110.665333pt;}
.y1de{bottom:110.666616pt;}
.ydb{bottom:110.666667pt;}
.y4b{bottom:110.666724pt;}
.y76{bottom:110.669333pt;}
.y1b1{bottom:111.200000pt;}
.ye9{bottom:113.690667pt;}
.y192{bottom:122.684317pt;}
.y1dd{bottom:123.366191pt;}
.y179{bottom:123.366667pt;}
.y4a{bottom:125.331074pt;}
.y14a{bottom:126.993058pt;}
.y12f{bottom:127.976000pt;}
.yda{bottom:127.977333pt;}
.y75{bottom:127.978667pt;}
.y1b0{bottom:128.509333pt;}
.y27{bottom:129.336000pt;}
.y21a{bottom:129.641658pt;}
.ye8{bottom:131.076000pt;}
.ybb{bottom:134.703399pt;}
.y191{bottom:135.383891pt;}
.y149{bottom:139.692633pt;}
.y49{bottom:139.995424pt;}
.y1dc{bottom:140.675841pt;}
.y219{bottom:142.265500pt;}
.y12e{bottom:145.361333pt;}
.yd9{bottom:145.362667pt;}
.y74{bottom:145.364000pt;}
.y1af{bottom:145.894667pt;}
.y178{bottom:147.329034pt;}
.y26{bottom:148.006667pt;}
.ye7{bottom:148.386667pt;}
.yba{bottom:150.652000pt;}
.y148{bottom:152.316475pt;}
.y1db{bottom:153.299683pt;}
.y48{bottom:154.660840pt;}
.yb9{bottom:155.414667pt;}
.y218{bottom:159.650883pt;}
.y12d{bottom:162.670667pt;}
.y1b4{bottom:162.672000pt;}
.yd8{bottom:162.673333pt;}
.y73{bottom:162.674667pt;}
.y1ae{bottom:163.205333pt;}
.y177{bottom:163.354434pt;}
.y147{bottom:165.014983pt;}
.ye6{bottom:165.696000pt;}
.y1da{bottom:165.999258pt;}
.y25{bottom:166.677333pt;}
.y47{bottom:169.325190pt;}
.y217{bottom:172.274725pt;}
.yb8{bottom:175.673041pt;}
.y146{bottom:177.638825pt;}
.y176{bottom:179.304101pt;}
.y1b3{bottom:179.981333pt;}
.yd7{bottom:179.982667pt;}
.y72{bottom:179.985333pt;}
.y1ad{bottom:180.516000pt;}
.ye5{bottom:183.082667pt;}
.y1d9{bottom:183.308908pt;}
.y46{bottom:183.989540pt;}
.y216{bottom:184.974300pt;}
.y24{bottom:185.348000pt;}
.y145{bottom:190.337333pt;}
.yb7{bottom:192.303233pt;}
.y175{bottom:195.329501pt;}
.y1d8{bottom:196.008483pt;}
.yd6{bottom:197.369333pt;}
.y71{bottom:197.370667pt;}
.y1ac{bottom:197.901333pt;}
.y45{bottom:198.653890pt;}
.ye4{bottom:200.392000pt;}
.y215{bottom:202.283950pt;}
.y1b2{bottom:202.658667pt;}
.y23{bottom:204.018667pt;}
.y1d7{bottom:208.631259pt;}
.yb6{bottom:209.009158pt;}
.y174{bottom:211.353834pt;}
.y44{bottom:213.318240pt;}
.yd5{bottom:214.678667pt;}
.y70{bottom:214.680000pt;}
.y214{bottom:214.983525pt;}
.y1ab{bottom:215.210667pt;}
.ye3{bottom:217.702667pt;}
.y12c{bottom:220.194667pt;}
.y12a{bottom:220.197333pt;}
.yb5{bottom:225.638283pt;}
.y1d6{bottom:226.017708pt;}
.y12b{bottom:226.092000pt;}
.y22{bottom:226.696000pt;}
.y213{bottom:227.607367pt;}
.yd4{bottom:231.989333pt;}
.y6f{bottom:231.990667pt;}
.y1aa{bottom:232.521333pt;}
.ye2{bottom:235.088000pt;}
.y43{bottom:235.995290pt;}
.y173{bottom:236.374321pt;}
.y129{bottom:237.506667pt;}
.y1d5{bottom:238.641550pt;}
.yb4{bottom:242.344208pt;}
.y212{bottom:244.992750pt;}
.yd3{bottom:249.300000pt;}
.y6e{bottom:249.301333pt;}
.y1a9{bottom:249.906667pt;}
.y42{bottom:250.659640pt;}
.y1d4{bottom:251.340058pt;}
.ye1{bottom:252.398667pt;}
.y172{bottom:253.004514pt;}
.y128{bottom:254.817333pt;}
.y211{bottom:257.616592pt;}
.yb3{bottom:258.973333pt;}
.yb1{bottom:258.975248pt;}
.yb2{bottom:263.736000pt;}
.y21{bottom:264.417333pt;}
.y41{bottom:265.323990pt;}
.yd2{bottom:266.685333pt;}
.y6d{bottom:266.686667pt;}
.y1a8{bottom:267.217333pt;}
.y1d3{bottom:268.650775pt;}
.ye0{bottom:269.708000pt;}
.y171{bottom:269.709371pt;}
.y210{bottom:270.315100pt;}
.y127{bottom:272.202667pt;}
.yb0{bottom:275.680106pt;}
.y1d2{bottom:281.349283pt;}
.y20{bottom:283.088000pt;}
.yd1{bottom:283.994667pt;}
.y6c{bottom:283.997333pt;}
.y1a7{bottom:284.528000pt;}
.y170{bottom:286.339563pt;}
.ydf{bottom:287.018667pt;}
.y20f{bottom:287.625817pt;}
.y40{bottom:288.001040pt;}
.y126{bottom:289.513333pt;}
.yaf{bottom:292.310298pt;}
.y1d1{bottom:293.973125pt;}
.y20e{bottom:300.324325pt;}
.yd0{bottom:301.305333pt;}
.y6b{bottom:301.306667pt;}
.y1f{bottom:301.758667pt;}
.y1a6{bottom:301.837333pt;}
.y3f{bottom:302.666457pt;}
.y16f{bottom:302.969756pt;}
.yde{bottom:304.404000pt;}
.y125{bottom:306.822667pt;}
.yae{bottom:309.015155pt;}
.y1d0{bottom:311.358508pt;}
.y20d{bottom:312.948167pt;}
.y3e{bottom:317.330807pt;}
.ycf{bottom:318.690667pt;}
.y6a{bottom:318.692000pt;}
.y1a5{bottom:319.222667pt;}
.y16e{bottom:319.674613pt;}
.y1e{bottom:320.429333pt;}
.ydd{bottom:321.714667pt;}
.y1cf{bottom:323.982350pt;}
.y124{bottom:324.209333pt;}
.yad{bottom:325.645348pt;}
.y20c{bottom:325.647741pt;}
.y3d{bottom:331.995157pt;}
.yce{bottom:336.001333pt;}
.y69{bottom:336.002667pt;}
.y16d{bottom:336.304806pt;}
.y1a4{bottom:336.533333pt;}
.y1ce{bottom:336.681925pt;}
.ydc{bottom:339.024000pt;}
.y1d{bottom:339.100000pt;}
.y123{bottom:341.518667pt;}
.yac{bottom:342.351272pt;}
.y20b{bottom:342.957392pt;}
.y3c{bottom:346.659507pt;}
.y16c{bottom:353.010730pt;}
.ycd{bottom:353.310667pt;}
.y68{bottom:353.313333pt;}
.y1a3{bottom:353.844000pt;}
.y1cd{bottom:353.991575pt;}
.y20a{bottom:355.656966pt;}
.y1c{bottom:357.770667pt;}
.y122{bottom:358.829333pt;}
.yab{bottom:358.980398pt;}
.y3b{bottom:361.323857pt;}
.y1cc{bottom:366.691149pt;}
.y16b{bottom:369.639856pt;}
.ycc{bottom:370.697333pt;}
.y67{bottom:370.698667pt;}
.y1a2{bottom:371.229333pt;}
.y10c{bottom:371.832764pt;}
.y209{bottom:372.966617pt;}
.yaa{bottom:375.686322pt;}
.y121{bottom:376.214667pt;}
.y1b{bottom:376.441333pt;}
.y1cb{bottom:384.000800pt;}
.y3a{bottom:384.000907pt;}
.y208{bottom:385.666191pt;}
.y16a{bottom:386.345780pt;}
.ycb{bottom:388.006667pt;}
.y66{bottom:388.009333pt;}
.y1a1{bottom:388.540000pt;}
.y10b{bottom:391.864514pt;}
.ya9{bottom:392.315448pt;}
.y120{bottom:393.525333pt;}
.y190{bottom:393.600000pt;}
.y1a{bottom:395.112000pt;}
.y1ca{bottom:396.700374pt;}
.y207{bottom:398.290033pt;}
.y169{bottom:402.974906pt;}
.yca{bottom:405.317333pt;}
.y65{bottom:405.318667pt;}
.y1a0{bottom:405.849333pt;}
.y39{bottom:406.677957pt;}
.y10a{bottom:408.494706pt;}
.y1c9{bottom:409.324216pt;}
.y11f{bottom:410.834667pt;}
.ya8{bottom:412.120000pt;}
.y19{bottom:413.782667pt;}
.y206{bottom:415.599684pt;}
.y18f{bottom:416.277333pt;}
.y168{bottom:419.680830pt;}
.yc9{bottom:422.702667pt;}
.y64{bottom:422.704000pt;}
.y19f{bottom:423.234667pt;}
.y109{bottom:425.199564pt;}
.y1c8{bottom:426.633867pt;}
.y11e{bottom:428.145333pt;}
.y205{bottom:428.299258pt;}
.y38{bottom:429.355007pt;}
.y144{bottom:434.798667pt;}
.y167{bottom:436.311022pt;}
.y18{bottom:436.384000pt;}
.y1c7{bottom:439.333441pt;}
.yc8{bottom:440.013333pt;}
.y63{bottom:440.014667pt;}
.y19e{bottom:440.545333pt;}
.y204{bottom:440.997766pt;}
.y108{bottom:441.829756pt;}
.ya7{bottom:443.188000pt;}
.y11d{bottom:445.530667pt;}
.y18e{bottom:451.732000pt;}
.y1c6{bottom:452.031949pt;}
.y37{bottom:452.032056pt;}
.y143{bottom:452.184000pt;}
.y166{bottom:453.015880pt;}
.yc7{bottom:457.322667pt;}
.y62{bottom:457.325333pt;}
.y19d{bottom:457.856000pt;}
.y203{bottom:458.308483pt;}
.y107{bottom:458.534614pt;}
.ya6{bottom:460.498667pt;}
.y11c{bottom:462.841333pt;}
.y36{bottom:466.696406pt;}
.y18d{bottom:469.042667pt;}
.y1c5{bottom:469.342666pt;}
.y142{bottom:469.494667pt;}
.y165{bottom:469.646072pt;}
.y202{bottom:470.931259pt;}
.y17{bottom:474.180000pt;}
.yc6{bottom:474.633333pt;}
.y61{bottom:474.634667pt;}
.y106{bottom:475.164806pt;}
.y19c{bottom:475.241333pt;}
.ya5{bottom:477.808000pt;}
.y11b{bottom:480.150667pt;}
.y1c4{bottom:481.965442pt;}
.y164{bottom:486.350930pt;}
.y18c{bottom:486.428000pt;}
.y141{bottom:486.804000pt;}
.y201{bottom:488.317708pt;}
.y35{bottom:489.373456pt;}
.y105{bottom:491.870730pt;}
.yc5{bottom:492.018667pt;}
.y60{bottom:492.020000pt;}
.y19b{bottom:492.550667pt;}
.y16{bottom:492.850667pt;}
.ya4{bottom:495.118667pt;}
.y1c3{bottom:499.351891pt;}
.y200{bottom:500.941550pt;}
.y11a{bottom:502.828000pt;}
.y163{bottom:502.981122pt;}
.y18b{bottom:503.738667pt;}
.y34{bottom:504.037806pt;}
.y140{bottom:504.190667pt;}
.y104{bottom:508.499856pt;}
.yc4{bottom:509.329333pt;}
.y5f{bottom:509.330667pt;}
.y19a{bottom:509.861333pt;}
.y15{bottom:511.521333pt;}
.y1c2{bottom:511.974667pt;}
.ya3{bottom:512.504000pt;}
.y1ff{bottom:518.326933pt;}
.y33{bottom:518.703223pt;}
.y162{bottom:519.687047pt;}
.y18a{bottom:521.048000pt;}
.y13f{bottom:521.500000pt;}
.y103{bottom:525.205780pt;}
.yc3{bottom:526.638667pt;}
.y5e{bottom:526.641333pt;}
.y199{bottom:527.172000pt;}
.ya2{bottom:529.814667pt;}
.y1c1{bottom:529.965333pt;}
.y14{bottom:530.192000pt;}
.y1fe{bottom:530.950775pt;}
.y32{bottom:533.367573pt;}
.y161{bottom:536.316172pt;}
.y119{bottom:537.676000pt;}
.y189{bottom:538.358667pt;}
.y13e{bottom:538.810667pt;}
.y102{bottom:541.834906pt;}
.y1fd{bottom:543.649283pt;}
.y5d{bottom:544.026667pt;}
.y198{bottom:544.557333pt;}
.ya1{bottom:547.124000pt;}
.y31{bottom:548.031923pt;}
.y13{bottom:548.862667pt;}
.yc2{bottom:549.316000pt;}
.y160{bottom:553.022097pt;}
.y118{bottom:554.986667pt;}
.y188{bottom:555.744000pt;}
.y13d{bottom:556.196000pt;}
.y101{bottom:558.540830pt;}
.y1fc{bottom:560.960000pt;}
.y5c{bottom:561.337333pt;}
.y197{bottom:561.868000pt;}
.y30{bottom:562.696273pt;}
.y12{bottom:567.533333pt;}
.y15f{bottom:569.651222pt;}
.ya0{bottom:569.801333pt;}
.y117{bottom:572.372000pt;}
.y187{bottom:573.054667pt;}
.y13c{bottom:573.506667pt;}
.y1fb{bottom:573.658508pt;}
.y100{bottom:575.171022pt;}
.y5b{bottom:578.646667pt;}
.y196{bottom:579.177333pt;}
.y1c0{bottom:580.916000pt;}
.y2f{bottom:584.541333pt;}
.y15e{bottom:586.357147pt;}
.yc1{bottom:587.566667pt;}
.y116{bottom:589.682667pt;}
.y11{bottom:590.134667pt;}
.y186{bottom:590.364000pt;}
.y13b{bottom:590.816000pt;}
.y1fa{bottom:590.969225pt;}
.yff{bottom:591.875880pt;}
.y5a{bottom:596.032000pt;}
.y195{bottom:596.562667pt;}
.y1bf{bottom:598.225333pt;}
.y15d{bottom:602.987339pt;}
.y1f9{bottom:603.592000pt;}
.yc0{bottom:604.952000pt;}
.y115{bottom:606.992000pt;}
.y185{bottom:607.749333pt;}
.y13a{bottom:608.201333pt;}
.yfe{bottom:608.506072pt;}
.y59{bottom:613.342667pt;}
.y9f{bottom:613.873333pt;}
.y15c{bottom:615.685847pt;}
.y1f8{bottom:616.291575pt;}
.ybf{bottom:622.261333pt;}
.y1be{bottom:622.262667pt;}
.y114{bottom:624.377333pt;}
.y184{bottom:625.060000pt;}
.yfd{bottom:625.210930pt;}
.y221{bottom:628.991150pt;}
.y58{bottom:630.653333pt;}
.y139{bottom:630.804422pt;}
.y9e{bottom:631.184000pt;}
.y1f7{bottom:633.602292pt;}
.y15b{bottom:635.414667pt;}
.y10{bottom:638.589333pt;}
.y220{bottom:641.613925pt;}
.yfc{bottom:641.841122pt;}
.y183{bottom:642.370667pt;}
.ybe{bottom:644.938667pt;}
.y1bd{bottom:646.225333pt;}
.y1f6{bottom:646.300800pt;}
.y113{bottom:647.055089pt;}
.y57{bottom:647.962667pt;}
.y9d{bottom:648.569333pt;}
.y138{bottom:649.474667pt;}
.yfb{bottom:658.547047pt;}
.y1f5{bottom:658.924642pt;}
.y182{bottom:659.756000pt;}
.y2e{bottom:661.796000pt;}
.y56{bottom:665.348000pt;}
.y112{bottom:665.725333pt;}
.y9c{bottom:665.880000pt;}
.y15a{bottom:666.484000pt;}
.y1bc{bottom:670.262667pt;}
.y21f{bottom:671.624217pt;}
.y8a{bottom:672.978854pt;}
.yfa{bottom:675.176172pt;}
.y1f4{bottom:676.310025pt;}
.y181{bottom:677.066667pt;}
.y2d{bottom:677.140000pt;}
.y9b{bottom:683.189333pt;}
.y159{bottom:683.794667pt;}
.y89{bottom:687.644271pt;}
.y55{bottom:688.025333pt;}
.y1f3{bottom:688.933867pt;}
.yf9{bottom:691.882097pt;}
.yf{bottom:692.183233pt;}
.y2c{bottom:692.409333pt;}
.y1bb{bottom:694.225333pt;}
.y180{bottom:694.376000pt;}
.y137{bottom:694.980000pt;}
.y111{bottom:700.498667pt;}
.y9a{bottom:700.500000pt;}
.y158{bottom:701.180000pt;}
.y1f2{bottom:701.633442pt;}
.y88{bottom:702.308621pt;}
.y2b{bottom:707.754667pt;}
.yf8{bottom:708.511222pt;}
.y17f{bottom:711.761333pt;}
.y136{bottom:712.365333pt;}
.y87{bottom:716.972971pt;}
.y99{bottom:717.885333pt;}
.y1ba{bottom:718.262667pt;}
.y157{bottom:718.489333pt;}
.ye{bottom:718.866633pt;}
.y1f1{bottom:718.943092pt;}
.y2a{bottom:723.098667pt;}
.yf7{bottom:725.217147pt;}
.y17e{bottom:729.072000pt;}
.y135{bottom:729.676000pt;}
.y86{bottom:731.637321pt;}
.y1f0{bottom:731.642666pt;}
.yd{bottom:732.171000pt;}
.y110{bottom:735.194667pt;}
.y98{bottom:735.196000pt;}
.y156{bottom:735.800000pt;}
.yf6{bottom:741.847339pt;}
.y1b9{bottom:742.224000pt;}
.y21e{bottom:744.265442pt;}
.yc{bottom:745.550033pt;}
.y85{bottom:746.301671pt;}
.y17d{bottom:746.382667pt;}
.y134{bottom:746.986667pt;}
.y1ef{bottom:748.952317pt;}
.y97{bottom:752.505333pt;}
.y155{bottom:753.185333pt;}
.yf5{bottom:758.552197pt;}
.yb{bottom:758.853333pt;}
.y84{bottom:760.966021pt;}
.y1ee{bottom:761.651891pt;}
.y17c{bottom:763.692000pt;}
.y133{bottom:764.372000pt;}
.y1b8{bottom:764.901333pt;}
.y96{bottom:769.890667pt;}
.y154{bottom:770.496000pt;}
.y54{bottom:774.122667pt;}
.y1ed{bottom:774.274667pt;}
.yf4{bottom:775.182389pt;}
.y17b{bottom:781.077333pt;}
.y132{bottom:781.681333pt;}
.ya{bottom:782.816000pt;}
.y7{bottom:782.816400pt;}
.y8{bottom:783.118800pt;}
.y83{bottom:783.643071pt;}
.y21d{bottom:786.974241pt;}
.y95{bottom:787.201333pt;}
.y153{bottom:787.805333pt;}
.y9{bottom:788.182667pt;}
.y1ec{bottom:791.661116pt;}
.yf3{bottom:791.887247pt;}
.y53{bottom:792.793333pt;}
.y5{bottom:797.556000pt;}
.y82{bottom:798.307421pt;}
.y6{bottom:802.846667pt;}
.y17a{bottom:803.754667pt;}
.y1eb{bottom:804.284958pt;}
.y131{bottom:804.359933pt;}
.y10f{bottom:804.510667pt;}
.y94{bottom:804.512000pt;}
.yf2{bottom:808.517439pt;}
.y1b7{bottom:809.197333pt;}
.y152{bottom:810.481333pt;}
.y52{bottom:811.464000pt;}
.y81{bottom:812.972838pt;}
.y1e8{bottom:816.983466pt;}
.y1ea{bottom:817.210664pt;}
.y1e9{bottom:817.286396pt;}
.y10d{bottom:819.628000pt;}
.y10e{bottom:821.896000pt;}
.y93{bottom:821.897333pt;}
.yf1{bottom:825.223363pt;}
.y1b6{bottom:826.506667pt;}
.y80{bottom:827.637188pt;}
.y130{bottom:828.321333pt;}
.y21c{bottom:829.607309pt;}
.y51{bottom:830.134667pt;}
.y4{bottom:830.817867pt;}
.y1e7{bottom:834.294183pt;}
.y92{bottom:839.208000pt;}
.yf0{bottom:841.852489pt;}
.y7f{bottom:842.301538pt;}
.y1e6{bottom:846.992691pt;}
.y1b5{bottom:849.184000pt;}
.y151{bottom:849.412000pt;}
.y50{bottom:852.812000pt;}
.y91{bottom:856.517333pt;}
.y7e{bottom:856.965888pt;}
.yef{bottom:858.482681pt;}
.y1e4{bottom:859.616533pt;}
.y1e5{bottom:859.843731pt;}
.y3{bottom:860.827467pt;}
.y150{bottom:866.797333pt;}
.y7d{bottom:871.630238pt;}
.y21b{bottom:872.316108pt;}
.y90{bottom:873.902667pt;}
.yee{bottom:875.188605pt;}
.y1e3{bottom:876.926184pt;}
.y14f{bottom:884.108000pt;}
.y7c{bottom:886.294588pt;}
.y4f{bottom:887.660000pt;}
.y1e2{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y8e{bottom:891.213333pt;}
.yed{bottom:891.817731pt;}
.y8f{bottom:891.893333pt;}
.y7b{bottom:900.958938pt;}
.y14e{bottom:901.417333pt;}
.y1e1{bottom:902.325333pt;}
.y4e{bottom:906.330667pt;}
.yec{bottom:908.523655pt;}
.y8d{bottom:908.524000pt;}
.y7a{bottom:915.623288pt;}
.y14d{bottom:918.802667pt;}
.y1e0{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y4d{bottom:925.001333pt;}
.yeb{bottom:925.152781pt;}
.y8c{bottom:925.833333pt;}
.y79{bottom:930.288705pt;}
.y1df{bottom:932.258825pt;}
.y14c{bottom:941.404000pt;}
.y8b{bottom:943.218667pt;}
.y4c{bottom:943.672000pt;}
.y78{bottom:944.953055pt;}
.yea{bottom:944.957333pt;}
.ybd{bottom:949.114667pt;}
.y77{bottom:994.393333pt;}
.h10{height:21.330000pt;}
.h4{height:24.828689pt;}
.h11{height:26.663600pt;}
.h13{height:30.292955pt;}
.ha{height:31.082945pt;}
.hf{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.h9{height:40.000000pt;}
.he{height:41.333333pt;}
.h7{height:47.593839pt;}
.h12{height:47.999600pt;}
.hd{height:49.663586pt;}
.h6{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:48.000000pt;}
.x18{left:54.274000pt;}
.x15{left:57.826011pt;}
.xf{left:63.496000pt;}
.x16{left:135.609333pt;}
.x21{left:228.357212pt;}
.x23{left:229.718262pt;}
.x14{left:246.121257pt;}
.x17{left:247.484000pt;}
.x1{left:266.682667pt;}
.x24{left:273.184000pt;}
.x12{left:274.318667pt;}
.x19{left:279.382667pt;}
.x10{left:282.632000pt;}
.x1a{left:290.494667pt;}
.x25{left:295.330923pt;}
.x27{left:303.495815pt;}
.x26{left:317.782570pt;}
.x13{left:324.585333pt;}
.xa{left:342.727867pt;}
.x28{left:345.901685pt;}
.x2{left:356.032000pt;}
.xb{left:357.845333pt;}
.x3{left:368.352000pt;}
.xc{left:370.166667pt;}
.x22{left:386.417103pt;}
.x29{left:390.046200pt;}
.x4{left:457.172000pt;}
.x5{left:462.085333pt;}
.x1b{left:464.125333pt;}
.xd{left:481.058667pt;}
.x1c{left:492.018667pt;}
.x1d{left:523.313333pt;}
.x6{left:569.574667pt;}
.x7{left:581.972000pt;}
.x1e{left:591.042667pt;}
.x11{left:618.784000pt;}
.x1f{left:632.466667pt;}
.x20{left:662.476000pt;}
.x8{left:677.593333pt;}
.x9{left:682.506667pt;}
}




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