
    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_8d269a54653f7e8774466692.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003005;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_715fb6ac53feac805ae01476.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_15dcda98b554ca1f413e1201.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_ad65b4ffa7dc18e05b61197f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_c6576bcc6950b707b6cbec48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.820000;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_5782bdc391d3a61bb52abf92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.261613;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_6cf20c4611200c3343c33990.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118000;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_495e393713c61b7f61afa490.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172000;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_ca782daa7965ec64950c8c51.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_cd45a784855b98b89144c060.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068000;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_8e41bc0d3a64cb97d21cd59c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c666c378e7badf54ee6e1dc5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.816406;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_0f75d3e50afd3501b9cbbe41.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.076000;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_42831c360e8d9ec712a038b1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.181000;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_eac84fa701d6b5251fcddf40.woff2')format("woff");}.fff{font-family:fff;line-height:1.150000;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.816406;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_5477e8952795eb3a6035c62b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.076000;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.816406;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.816406;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.816406;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.816406;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.816406;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_3cba2a262c993365b353b8d6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162499,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212502,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:19.980600px;}
.ls18{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.840004px;}
.lsc{letter-spacing:-0.840000px;}
.ls17{letter-spacing:-0.699600px;}
.ls11{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.524700px;}
.ls16{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.279840px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.013412px;}
.ls4{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.174649px;}
.ls9{letter-spacing:0.175355px;}
.ls8{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.296000px;}
.lsd{letter-spacing:7.416000px;}
.lse{letter-spacing:55.584000px;}
.ls13{letter-spacing:56.160000px;}
.ls14{letter-spacing:56.976000px;}
.lsa{letter-spacing:71.136000px;}
.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;}
}
.ws4{word-spacing:-16.680000px;}
.ws4d{word-spacing:-13.344000px;}
.ws5{word-spacing:-11.676000px;}
.ws1{word-spacing:-10.962000px;}
.ws1b{word-spacing:-9.724440px;}
.ws2{word-spacing:-9.396000px;}
.ws4c{word-spacing:-9.199740px;}
.ws1c{word-spacing:-7.779552px;}
.ws81{word-spacing:-7.499712px;}
.wsa0{word-spacing:-7.380000px;}
.ws82{word-spacing:-7.079952px;}
.wsa8{word-spacing:-6.600000px;}
.ws3{word-spacing:-6.577200px;}
.wsb8{word-spacing:-6.360000px;}
.wsc0{word-spacing:-5.700000px;}
.wsc4{word-spacing:-5.400000px;}
.ws4b{word-spacing:-4.968000px;}
.wsd0{word-spacing:-4.440000px;}
.wsad{word-spacing:-4.416000px;}
.wsce{word-spacing:-4.260000px;}
.ws19{word-spacing:-4.140000px;}
.wsb{word-spacing:-3.720000px;}
.wsa1{word-spacing:-3.660000px;}
.wsc6{word-spacing:-3.360000px;}
.ws15{word-spacing:-3.240000px;}
.wsc3{word-spacing:-3.180000px;}
.wsbf{word-spacing:-3.060000px;}
.ws59{word-spacing:-3.000000px;}
.ws4f{word-spacing:-2.940000px;}
.ws8f{word-spacing:-2.928000px;}
.ws49{word-spacing:-2.880000px;}
.ws61{word-spacing:-2.820000px;}
.wsa5{word-spacing:-2.760000px;}
.ws79{word-spacing:-2.700000px;}
.ws48{word-spacing:-2.640000px;}
.ws43{word-spacing:-2.580000px;}
.ws6e{word-spacing:-2.520000px;}
.ws9d{word-spacing:-2.460000px;}
.ws5a{word-spacing:-2.400000px;}
.ws76{word-spacing:-2.340000px;}
.ws41{word-spacing:-2.280000px;}
.ws46{word-spacing:-2.220000px;}
.ws97{word-spacing:-2.160000px;}
.wsc5{word-spacing:-2.100000px;}
.ws38{word-spacing:-2.040000px;}
.wsb9{word-spacing:-1.980000px;}
.wsbb{word-spacing:-1.920000px;}
.ws80{word-spacing:-1.872000px;}
.ws86{word-spacing:-1.860000px;}
.ws9a{word-spacing:-1.800000px;}
.wsae{word-spacing:-1.776000px;}
.ws77{word-spacing:-1.740000px;}
.ws12{word-spacing:-1.680000px;}
.ws91{word-spacing:-1.632000px;}
.wsbd{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.560000px;}
.ws39{word-spacing:-1.536000px;}
.wsa2{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.380000px;}
.ws72{word-spacing:-1.344000px;}
.ws9f{word-spacing:-1.320000px;}
.wsc1{word-spacing:-1.260000px;}
.wsa9{word-spacing:-1.200000px;}
.ws4a{word-spacing:-1.152000px;}
.ws17{word-spacing:-1.140000px;}
.wsac{word-spacing:-1.056000px;}
.ws74{word-spacing:-1.020000px;}
.ws8a{word-spacing:-0.960000px;}
.ws87{word-spacing:-0.900000px;}
.ws75{word-spacing:-0.840000px;}
.ws98{word-spacing:-0.780000px;}
.ws8c{word-spacing:-0.768000px;}
.wsc8{word-spacing:-0.720000px;}
.wsc7{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.648000px;}
.wsa7{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.576000px;}
.ws32{word-spacing:-0.480000px;}
.wscb{word-spacing:-0.420000px;}
.ws30{word-spacing:-0.300000px;}
.ws50{word-spacing:-0.240000px;}
.ws6f{word-spacing:-0.192000px;}
.wsc9{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.162000px;}
.ws0{word-spacing:-0.084000px;}
.ws6{word-spacing:0.000000px;}
.ws7a{word-spacing:0.060000px;}
.wsb7{word-spacing:0.120000px;}
.wsd{word-spacing:0.180000px;}
.ws8d{word-spacing:0.192000px;}
.wsaa{word-spacing:0.240000px;}
.wsbe{word-spacing:0.300000px;}
.wsab{word-spacing:0.360000px;}
.ws9{word-spacing:0.378000px;}
.ws1d{word-spacing:0.420000px;}
.wsf{word-spacing:0.480000px;}
.wsc2{word-spacing:0.540000px;}
.ws73{word-spacing:0.600000px;}
.ws3e{word-spacing:0.624000px;}
.ws1e{word-spacing:0.660000px;}
.ws24{word-spacing:0.720000px;}
.ws44{word-spacing:0.780000px;}
.ws84{word-spacing:0.840000px;}
.ws92{word-spacing:0.864000px;}
.ws5f{word-spacing:0.900000px;}
.ws68{word-spacing:0.960000px;}
.ws3d{word-spacing:1.008000px;}
.ws18{word-spacing:1.020000px;}
.ws3a{word-spacing:1.056000px;}
.wsd2{word-spacing:1.080000px;}
.ws7d{word-spacing:1.140000px;}
.ws45{word-spacing:1.200000px;}
.ws40{word-spacing:1.248000px;}
.wscd{word-spacing:1.260000px;}
.ws3f{word-spacing:1.344000px;}
.wsa3{word-spacing:1.440000px;}
.ws9c{word-spacing:1.500000px;}
.ws7e{word-spacing:1.560000px;}
.ws90{word-spacing:1.584000px;}
.wse{word-spacing:1.620000px;}
.ws3b{word-spacing:1.632000px;}
.ws71{word-spacing:1.680000px;}
.ws89{word-spacing:1.740000px;}
.wsb1{word-spacing:1.860000px;}
.ws6b{word-spacing:1.920000px;}
.ws2f{word-spacing:1.980000px;}
.wsbc{word-spacing:2.040000px;}
.ws78{word-spacing:2.100000px;}
.ws5c{word-spacing:2.160000px;}
.wsb3{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.ws27{word-spacing:2.340000px;}
.ws42{word-spacing:2.400000px;}
.wsc{word-spacing:2.460000px;}
.ws88{word-spacing:2.580000px;}
.ws9b{word-spacing:2.640000px;}
.ws85{word-spacing:2.700000px;}
.ws31{word-spacing:2.760000px;}
.wsa4{word-spacing:2.820000px;}
.ws7f{word-spacing:2.880000px;}
.ws8b{word-spacing:2.928000px;}
.wsb0{word-spacing:2.976000px;}
.ws6d{word-spacing:3.000000px;}
.wsb4{word-spacing:3.060000px;}
.wsb5{word-spacing:3.120000px;}
.ws83{word-spacing:3.180000px;}
.ws95{word-spacing:3.240000px;}
.ws94{word-spacing:3.300000px;}
.ws93{word-spacing:3.360000px;}
.ws11{word-spacing:3.420000px;}
.wsaf{word-spacing:3.504000px;}
.ws6a{word-spacing:3.540000px;}
.wsba{word-spacing:3.600000px;}
.ws70{word-spacing:3.696000px;}
.wsb6{word-spacing:3.720000px;}
.ws2e{word-spacing:3.840000px;}
.ws2a{word-spacing:4.020000px;}
.wsa6{word-spacing:4.080000px;}
.ws47{word-spacing:4.140000px;}
.ws14{word-spacing:4.200000px;}
.ws4e{word-spacing:4.260000px;}
.ws69{word-spacing:4.320000px;}
.wsd3{word-spacing:4.500000px;}
.ws8e{word-spacing:4.704000px;}
.ws34{word-spacing:4.740000px;}
.ws1a{word-spacing:4.860000px;}
.ws54{word-spacing:4.920000px;}
.ws99{word-spacing:4.980000px;}
.wsd5{word-spacing:5.040000px;}
.ws37{word-spacing:5.100000px;}
.wscc{word-spacing:5.220000px;}
.ws63{word-spacing:5.280000px;}
.wsb2{word-spacing:5.400000px;}
.ws13{word-spacing:5.700000px;}
.ws5b{word-spacing:5.760000px;}
.ws20{word-spacing:5.820000px;}
.ws7b{word-spacing:6.000000px;}
.wsca{word-spacing:6.120000px;}
.ws28{word-spacing:6.360000px;}
.ws57{word-spacing:6.540000px;}
.wscf{word-spacing:6.660000px;}
.ws22{word-spacing:6.720000px;}
.wsd4{word-spacing:6.900000px;}
.ws23{word-spacing:7.200000px;}
.ws2c{word-spacing:7.260000px;}
.ws96{word-spacing:7.380000px;}
.ws6c{word-spacing:7.440000px;}
.ws10{word-spacing:7.680000px;}
.wsa{word-spacing:7.860000px;}
.ws66{word-spacing:7.920000px;}
.wsd1{word-spacing:8.040000px;}
.ws26{word-spacing:8.160000px;}
.ws2d{word-spacing:8.220000px;}
.ws5d{word-spacing:8.880000px;}
.ws52{word-spacing:8.940000px;}
.ws1f{word-spacing:9.720000px;}
.ws5e{word-spacing:10.440000px;}
.ws56{word-spacing:10.620000px;}
.ws35{word-spacing:10.680000px;}
.ws64{word-spacing:11.340000px;}
.ws16{word-spacing:11.580000px;}
.ws53{word-spacing:11.760000px;}
.ws58{word-spacing:11.820000px;}
.ws51{word-spacing:12.420000px;}
.ws2b{word-spacing:12.840000px;}
.ws36{word-spacing:12.900000px;}
.ws55{word-spacing:12.960000px;}
.ws33{word-spacing:15.120000px;}
.ws21{word-spacing:16.680000px;}
.ws65{word-spacing:17.880000px;}
.ws62{word-spacing:18.060000px;}
.ws67{word-spacing:18.180000px;}
.ws25{word-spacing:23.160000px;}
.ws60{word-spacing:28.980000px;}
._c{margin-left:-34.115400px;}
._3{margin-left:-11.523600px;}
._0{margin-left:-6.930000px;}
._9{margin-left:-5.520000px;}
._7{margin-left:-4.410000px;}
._d{margin-left:-3.292800px;}
._4{margin-left:-2.127600px;}
._2{margin-left:-1.015200px;}
._1{width:1.549800px;}
._e{width:3.060000px;}
._11{width:4.320000px;}
._10{width:5.798400px;}
._5{width:17.707400px;}
._6{width:35.445529px;}
._b{width:38.485129px;}
._8{width:43.225129px;}
._12{width:55.583910px;}
._f{width:71.135955px;}
._a{width:133.002000px;}
.fc4{color:rgb(189,186,218);}
.fc3{color:rgb(66,93,151);}
.fc2{color:rgb(22,52,95);}
.fc1{color:rgb(66,94,151);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs9{font-size:84.000401px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:9.126900px;}
.y2a{bottom:9.126944px;}
.y29{bottom:15.431250px;}
.y1{bottom:51.023550px;}
.y28{bottom:93.361500px;}
.y18f{bottom:106.222800px;}
.y1e2{bottom:106.243500px;}
.y208{bottom:106.295100px;}
.yea{bottom:106.299150px;}
.y58{bottom:106.299300px;}
.yba{bottom:106.299450px;}
.y1b8{bottom:106.303500px;}
.y27{bottom:107.131500px;}
.y113{bottom:110.295150px;}
.y6d{bottom:110.295300px;}
.y13d{bottom:120.699150px;}
.y9e{bottom:120.699300px;}
.y26{bottom:120.901500px;}
.y1e1{bottom:124.633500px;}
.ye9{bottom:124.695150px;}
.y57{bottom:124.695300px;}
.yb9{bottom:124.695450px;}
.y207{bottom:124.715100px;}
.y1b7{bottom:124.873500px;}
.y112{bottom:128.947200px;}
.y6c{bottom:128.947500px;}
.y18e{bottom:133.282800px;}
.y25{bottom:134.671500px;}
.y9d{bottom:135.099300px;}
.y13c{bottom:139.095150px;}
.y56{bottom:139.351500px;}
.y1e0{bottom:143.023500px;}
.ye8{bottom:143.347200px;}
.y1b6{bottom:143.443500px;}
.y111{bottom:147.599100px;}
.y6b{bottom:147.599550px;}
.y24{bottom:148.441500px;}
.y9c{bottom:149.499300px;}
.y206{bottom:151.635000px;}
.y18d{bottom:151.837800px;}
.y13b{bottom:157.747200px;}
.y55{bottom:157.747500px;}
.ye7{bottom:158.003100px;}
.y1df{bottom:161.413500px;}
.y6a{bottom:162.255750px;}
.y164{bottom:163.234350px;}
.y9b{bottom:167.895300px;}
.y1b5{bottom:168.393450px;}
.y18c{bottom:170.392800px;}
.ye6{bottom:172.403100px;}
.y54{bottom:172.403550px;}
.y13a{bottom:176.399100px;}
.y69{bottom:176.655750px;}
.yb8{bottom:178.302600px;}
.y1de{bottom:179.803500px;}
.y163{bottom:181.429350px;}
.y205{bottom:182.802600px;}
.y9a{bottom:186.547500px;}
.y53{bottom:186.803550px;}
.y18b{bottom:188.947800px;}
.ye5{bottom:190.799100px;}
.y139{bottom:195.051150px;}
.y68{bottom:195.051750px;}
.yb7{bottom:196.302600px;}
.y1dd{bottom:198.193500px;}
.y162{bottom:199.624350px;}
.y1b4{bottom:199.728000px;}
.y110{bottom:200.517000px;}
.y204{bottom:201.222600px;}
.y52{bottom:205.199550px;}
.ye4{bottom:205.455150px;}
.y138{bottom:213.703050px;}
.yb6{bottom:214.302600px;}
.y18a{bottom:216.007800px;}
.y1dc{bottom:216.583500px;}
.y161{bottom:217.819350px;}
.y1b3{bottom:218.298000px;}
.y10f{bottom:218.671650px;}
.y51{bottom:219.855750px;}
.ye3{bottom:223.851150px;}
.y203{bottom:228.142500px;}
.y137{bottom:228.359100px;}
.yb5{bottom:232.302600px;}
.y1f{bottom:234.128100px;}
.y50{bottom:234.255750px;}
.y189{bottom:234.562800px;}
.y160{bottom:236.014350px;}
.y1b2{bottom:236.868000px;}
.ye2{bottom:242.503050px;}
.y1db{bottom:243.463500px;}
.y10e{bottom:245.356650px;}
.y136{bottom:246.755100px;}
.y70{bottom:248.649450px;}
.yb4{bottom:250.302600px;}
.y4f{bottom:252.651750px;}
.y188{bottom:253.117800px;}
.y15f{bottom:254.209350px;}
.y1b1{bottom:255.438000px;}
.y1e{bottom:256.380150px;}
.ye1{bottom:257.159100px;}
.y99{bottom:258.060600px;}
.y202{bottom:259.310100px;}
.ya6{bottom:259.848000px;}
.y1da{bottom:261.853500px;}
.y10d{bottom:263.536650px;}
.y6f{bottom:263.647950px;}
.y135{bottom:265.407000px;}
.y4e{bottom:267.307800px;}
.ye0{bottom:271.559100px;}
.y187{bottom:271.672800px;}
.y1d{bottom:274.380150px;}
.ya5{bottom:274.846500px;}
.y98{bottom:276.165600px;}
.yb3{bottom:276.807600px;}
.y201{bottom:277.730100px;}
.y6e{bottom:278.646450px;}
.y1d9{bottom:280.243500px;}
.y1b0{bottom:280.388100px;}
.y15e{bottom:280.911300px;}
.y4d{bottom:281.707800px;}
.y134{bottom:284.059050px;}
.ydf{bottom:285.958950px;}
.ya4{bottom:289.845000px;}
.y10c{bottom:290.221650px;}
.y186{bottom:290.227800px;}
.y1c{bottom:292.380150px;}
.y97{bottom:294.270600px;}
.yb2{bottom:294.807600px;}
.y1d8{bottom:298.633500px;}
.y133{bottom:298.714950px;}
.y4c{bottom:300.103800px;}
.yde{bottom:304.355100px;}
.y200{bottom:304.649850px;}
.ya3{bottom:304.843500px;}
.y10b{bottom:308.401650px;}
.y185{bottom:308.782800px;}
.y1b{bottom:310.380150px;}
.y1af{bottom:311.727450px;}
.y15d{bottom:311.889000px;}
.y96{bottom:312.375600px;}
.yb1{bottom:312.807600px;}
.y132{bottom:317.110950px;}
.ydd{bottom:319.011000px;}
.ya2{bottom:319.842000px;}
.y1d7{bottom:325.520400px;}
.y226{bottom:325.625100px;}
.y184{bottom:327.337800px;}
.y1a{bottom:328.380150px;}
.y15c{bottom:330.084000px;}
.y1ae{bottom:330.297450px;}
.y95{bottom:330.480600px;}
.yb0{bottom:330.807600px;}
.ydc{bottom:333.411000px;}
.y10a{bottom:335.079750px;}
.y1ff{bottom:335.808300px;}
.y225{bottom:343.625100px;}
.y183{bottom:345.892800px;}
.y19{bottom:346.380150px;}
.y15b{bottom:348.279000px;}
.y94{bottom:348.585600px;}
.yaf{bottom:348.807600px;}
.ydb{bottom:351.807000px;}
.y5b{bottom:352.916400px;}
.y4b{bottom:353.025450px;}
.y1fe{bottom:354.228300px;}
.y1ad{bottom:355.242450px;}
.y1d6{bottom:356.603550px;}
.y224{bottom:361.625100px;}
.y18{bottom:364.380150px;}
.y109{bottom:365.962350px;}
.y93{bottom:366.690600px;}
.yae{bottom:366.807600px;}
.y5a{bottom:367.914900px;}
.y131{bottom:370.036950px;}
.yda{bottom:370.458900px;}
.y182{bottom:372.945600px;}
.y4a{bottom:372.990450px;}
.y1ac{bottom:373.812450px;}
.y15a{bottom:374.979000px;}
.y1d5{bottom:374.993550px;}
.y223{bottom:379.625100px;}
.y1fd{bottom:381.153300px;}
.y17{bottom:382.380150px;}
.y59{bottom:382.913400px;}
.y108{bottom:384.142350px;}
.y92{bottom:384.795600px;}
.yad{bottom:384.807600px;}
.y130{bottom:388.404150px;}
.y1ab{bottom:392.382450px;}
.y49{bottom:392.955450px;}
.y159{bottom:393.174000px;}
.y1d4{bottom:393.383550px;}
.y222{bottom:397.625100px;}
.y1fc{bottom:399.573300px;}
.y16{bottom:400.380150px;}
.yac{bottom:402.807600px;}
.y91{bottom:402.900600px;}
.y181{bottom:404.168850px;}
.y12f{bottom:406.764150px;}
.y107{bottom:410.827350px;}
.y158{bottom:411.369000px;}
.y48{bottom:412.920450px;}
.y1aa{bottom:417.332550px;}
.y1d3{bottom:420.263550px;}
.yab{bottom:420.807600px;}
.y90{bottom:421.005600px;}
.y180{bottom:422.723850px;}
.yd9{bottom:423.398100px;}
.y221{bottom:424.130100px;}
.y12e{bottom:425.124150px;}
.y1fb{bottom:426.493200px;}
.y15{bottom:426.884100px;}
.y106{bottom:429.007350px;}
.y157{bottom:429.564000px;}
.y47{bottom:432.885450px;}
.y1d2{bottom:438.653550px;}
.yaa{bottom:438.807600px;}
.y8f{bottom:439.110600px;}
.yd8{bottom:441.593100px;}
.y12d{bottom:443.486550px;}
.y105{bottom:447.187350px;}
.y156{bottom:447.759000px;}
.y1a9{bottom:448.677600px;}
.y17f{bottom:449.783850px;}
.y14{bottom:452.084100px;}
.y46{bottom:452.845200px;}
.ya9{bottom:456.807600px;}
.y1d1{bottom:457.043550px;}
.y8e{bottom:457.215600px;}
.y1fa{bottom:457.656750px;}
.yd7{bottom:459.788100px;}
.y12c{bottom:461.848950px;}
.y104{bottom:465.367350px;}
.y155{bottom:465.954000px;}
.y1a8{bottom:467.247600px;}
.y17e{bottom:468.338850px;}
.y45{bottom:472.810200px;}
.ya8{bottom:474.807600px;}
.y8d{bottom:475.320600px;}
.y1d0{bottom:475.433550px;}
.y1f9{bottom:476.076750px;}
.y220{bottom:476.150100px;}
.yd6{bottom:477.983100px;}
.y12b{bottom:480.226950px;}
.y103{bottom:483.547350px;}
.y1a7{bottom:485.817600px;}
.y17d{bottom:486.893850px;}
.y154{bottom:492.655950px;}
.y44{bottom:492.775200px;}
.y8c{bottom:493.425600px;}
.y1cf{bottom:493.823550px;}
.y21f{bottom:494.150100px;}
.y1f8{bottom:494.496750px;}
.y12a{bottom:498.586950px;}
.ya7{bottom:501.312600px;}
.y102{bottom:501.727350px;}
.y1a6{bottom:504.387600px;}
.yd5{bottom:504.687150px;}
.y17c{bottom:505.448850px;}
.y13{bottom:507.047850px;}
.y8b{bottom:511.530600px;}
.y21e{bottom:512.150100px;}
.y1ce{bottom:512.213550px;}
.y43{bottom:512.740200px;}
.y129{bottom:516.946950px;}
.y101{bottom:519.907350px;}
.y1f7{bottom:521.416500px;}
.y1a5{bottom:522.957600px;}
.y153{bottom:523.668600px;}
.y17b{bottom:524.003850px;}
.y12{bottom:529.299750px;}
.y21d{bottom:530.150100px;}
.y1cd{bottom:530.603550px;}
.y42{bottom:532.705200px;}
.yd4{bottom:535.648350px;}
.y8a{bottom:536.411700px;}
.ybd{bottom:541.351350px;}
.yc0{bottom:541.354350px;}
.y1a4{bottom:541.527600px;}
.y152{bottom:541.863600px;}
.y17a{bottom:542.558850px;}
.y128{bottom:543.811950px;}
.y100{bottom:546.585600px;}
.y11{bottom:547.299750px;}
.y21c{bottom:548.150100px;}
.y1cc{bottom:548.993550px;}
.y1f6{bottom:552.563700px;}
.y41{bottom:552.670200px;}
.yd3{bottom:553.843350px;}
.y89{bottom:554.516700px;}
.ybf{bottom:556.352850px;}
.y1a3{bottom:560.097600px;}
.y179{bottom:561.113850px;}
.y127{bottom:562.171950px;}
.y10{bottom:565.299750px;}
.y21b{bottom:566.150100px;}
.y151{bottom:568.563600px;}
.y1f5{bottom:570.983700px;}
.ybe{bottom:571.351350px;}
.y88{bottom:572.621700px;}
.y40{bottom:572.635200px;}
.y1cb{bottom:575.880450px;}
.yff{bottom:577.416000px;}
.y1a2{bottom:578.667600px;}
.y178{bottom:579.668850px;}
.y126{bottom:580.531950px;}
.yd2{bottom:580.547400px;}
.yf{bottom:583.299750px;}
.y150{bottom:586.758600px;}
.y1f4{bottom:589.403700px;}
.y87{bottom:590.726700px;}
.y3f{bottom:592.600200px;}
.y21a{bottom:592.654200px;}
.yfe{bottom:595.596000px;}
.y1a1{bottom:597.237600px;}
.y177{bottom:598.223850px;}
.y125{bottom:598.891950px;}
.ye{bottom:601.299750px;}
.y14f{bottom:604.953600px;}
.y1ca{bottom:606.984600px;}
.y1f3{bottom:607.823700px;}
.y86{bottom:608.732550px;}
.yd1{bottom:611.506650px;}
.y3e{bottom:612.565200px;}
.yfd{bottom:613.776000px;}
.y176{bottom:616.778850px;}
.y124{bottom:617.251950px;}
.yd{bottom:619.299750px;}
.y1a0{bottom:622.187850px;}
.y14e{bottom:623.148600px;}
.y219{bottom:623.410050px;}
.y1c9{bottom:625.374600px;}
.y1f2{bottom:626.243700px;}
.y85{bottom:626.837550px;}
.yfc{bottom:631.956000px;}
.y3d{bottom:632.530200px;}
.y175{bottom:635.333850px;}
.y123{bottom:635.611950px;}
.yc{bottom:637.299750px;}
.y14d{bottom:641.343600px;}
.y218{bottom:641.410050px;}
.y1c8{bottom:643.764600px;}
.y1f1{bottom:644.663700px;}
.y84{bottom:644.942550px;}
.ya1{bottom:645.239250px;}
.yd0{bottom:646.716750px;}
.y19f{bottom:653.531550px;}
.y174{bottom:653.888850px;}
.yb{bottom:655.299750px;}
.yfb{bottom:658.641000px;}
.y217{bottom:659.410050px;}
.y14c{bottom:659.538600px;}
.ya0{bottom:660.237750px;}
.y3c{bottom:660.999450px;}
.y1c7{bottom:662.154600px;}
.y122{bottom:662.478300px;}
.y83{bottom:663.047550px;}
.y1f0{bottom:663.083700px;}
.ycf{bottom:664.937250px;}
.y19e{bottom:672.101550px;}
.ya{bottom:673.299750px;}
.y9f{bottom:675.236250px;}
.yfa{bottom:676.821000px;}
.y216{bottom:677.410050px;}
.y14b{bottom:677.733600px;}
.y1c6{bottom:680.544600px;}
.y173{bottom:680.941650px;}
.y3b{bottom:680.964450px;}
.y82{bottom:681.152550px;}
.yce{bottom:683.132250px;}
.y1ef{bottom:690.003450px;}
.y19d{bottom:690.671550px;}
.y9{bottom:691.299750px;}
.y121{bottom:693.598950px;}
.yf9{bottom:695.001000px;}
.y14a{bottom:695.928600px;}
.y1c5{bottom:698.934600px;}
.y81{bottom:699.257550px;}
.y3a{bottom:700.927650px;}
.ycd{bottom:701.327250px;}
.y215{bottom:703.914000px;}
.y120{bottom:711.958950px;}
.y172{bottom:712.157550px;}
.yf8{bottom:713.181000px;}
.y149{bottom:714.123600px;}
.y19c{bottom:715.616550px;}
.y80{bottom:717.362550px;}
.y23{bottom:719.667000px;}
.y39{bottom:720.892650px;}
.y1ee{bottom:721.171200px;}
.y1c4{bottom:725.821500px;}
.ycc{bottom:728.027250px;}
.y171{bottom:730.712550px;}
.yf7{bottom:731.361000px;}
.y148{bottom:732.318600px;}
.y19b{bottom:734.186550px;}
.y214{bottom:734.668800px;}
.y7f{bottom:735.467550px;}
.y11f{bottom:738.825300px;}
.y1ed{bottom:739.591200px;}
.y38{bottom:740.857650px;}
.y4{bottom:746.950050px;}
.yf6{bottom:749.541000px;}
.y213{bottom:752.668800px;}
.y19a{bottom:752.756550px;}
.y7e{bottom:753.572550px;}
.y1c3{bottom:756.911700px;}
.y170{bottom:757.772550px;}
.y147{bottom:759.018600px;}
.y37{bottom:760.822650px;}
.y3{bottom:761.948550px;}
.y1ec{bottom:766.510950px;}
.yf5{bottom:767.721000px;}
.y67{bottom:768.826650px;}
.y11e{bottom:769.948350px;}
.y212{bottom:770.668800px;}
.y199{bottom:771.326550px;}
.y7d{bottom:771.677550px;}
.y1c2{bottom:775.301700px;}
.y16f{bottom:776.327550px;}
.y146{bottom:777.213600px;}
.y2{bottom:779.080050px;}
.ycb{bottom:780.242250px;}
.y36{bottom:780.784050px;}
.yf4{bottom:785.901000px;}
.ybc{bottom:786.994350px;}
.y66{bottom:787.171650px;}
.y11d{bottom:788.308350px;}
.y7c{bottom:789.782550px;}
.y16e{bottom:794.882550px;}
.y145{bottom:795.408600px;}
.y198{bottom:796.276650px;}
.y211{bottom:797.173800px;}
.y1eb{bottom:797.642550px;}
.yca{bottom:798.437250px;}
.y35{bottom:800.749050px;}
.ybb{bottom:801.992850px;}
.y1c1{bottom:802.181700px;}
.yf3{bottom:804.081000px;}
.y65{bottom:805.516650px;}
.y11c{bottom:806.670600px;}
.y7b{bottom:807.887550px;}
.y8{bottom:811.047750px;}
.y16d{bottom:813.437550px;}
.y144{bottom:813.603600px;}
.y210{bottom:815.173800px;}
.y1ea{bottom:816.062550px;}
.yc9{bottom:816.637500px;}
.y1c0{bottom:820.571700px;}
.y34{bottom:820.714050px;}
.yf2{bottom:822.261000px;}
.y64{bottom:823.845450px;}
.y11b{bottom:825.046350px;}
.y7a{bottom:825.992550px;}
.y197{bottom:827.622450px;}
.y143{bottom:831.798600px;}
.y16c{bottom:831.992550px;}
.y20f{bottom:833.173800px;}
.y1e9{bottom:834.482550px;}
.yc8{bottom:834.842700px;}
.y1bf{bottom:838.961700px;}
.yf1{bottom:840.441000px;}
.y33{bottom:840.679050px;}
.y7{bottom:841.151700px;}
.y63{bottom:842.190450px;}
.y11a{bottom:843.406350px;}
.y79{bottom:844.097550px;}
.y196{bottom:846.192450px;}
.y142{bottom:849.993600px;}
.y16b{bottom:850.547550px;}
.y20e{bottom:851.173800px;}
.yc7{bottom:853.037700px;}
.y1be{bottom:857.351700px;}
.yf0{bottom:858.621000px;}
.y62{bottom:860.535450px;}
.y32{bottom:860.644050px;}
.y1e8{bottom:861.407550px;}
.y78{bottom:862.202550px;}
.y141{bottom:868.188600px;}
.y20d{bottom:869.173800px;}
.y119{bottom:870.271350px;}
.y6{bottom:870.697350px;}
.y195{bottom:871.137450px;}
.yc6{bottom:871.232700px;}
.y1bd{bottom:875.741700px;}
.yef{bottom:876.801000px;}
.y16a{bottom:877.607550px;}
.y61{bottom:878.880450px;}
.y1e7{bottom:879.827550px;}
.y77{bottom:880.307550px;}
.y31{bottom:880.609050px;}
.y20c{bottom:887.173800px;}
.y118{bottom:888.631350px;}
.y194{bottom:889.707450px;}
.y1bc{bottom:894.131700px;}
.y140{bottom:894.888600px;}
.yee{bottom:894.981000px;}
.y169{bottom:896.162550px;}
.y60{bottom:897.225450px;}
.yc5{bottom:897.952200px;}
.y76{bottom:898.412550px;}
.y5{bottom:899.497350px;}
.y30{bottom:900.574050px;}
.y1e6{bottom:906.752550px;}
.y117{bottom:906.991350px;}
.y193{bottom:908.277450px;}
.y1bb{bottom:912.521700px;}
.y13f{bottom:913.083600px;}
.y20b{bottom:913.677750px;}
.y168{bottom:914.717550px;}
.y5f{bottom:915.557550px;}
.yc4{bottom:916.147200px;}
.y75{bottom:916.517550px;}
.y2f{bottom:920.539050px;}
.yed{bottom:921.659100px;}
.y1e5{bottom:925.172550px;}
.y116{bottom:925.351350px;}
.y192{bottom:926.847450px;}
.y1ba{bottom:930.911700px;}
.y167{bottom:933.272550px;}
.y5e{bottom:933.902550px;}
.yc3{bottom:934.342200px;}
.y74{bottom:934.622550px;}
.y13e{bottom:939.785550px;}
.y2e{bottom:940.504050px;}
.y1e4{bottom:943.592550px;}
.y115{bottom:943.711350px;}
.y20a{bottom:944.433600px;}
.y191{bottom:945.417450px;}
.y166{bottom:951.827550px;}
.y5d{bottom:952.247550px;}
.yc2{bottom:952.547550px;}
.yec{bottom:952.577550px;}
.y73{bottom:952.727550px;}
.y22{bottom:956.692950px;}
.y1b9{bottom:957.798600px;}
.y2d{bottom:960.469050px;}
.y114{bottom:962.071350px;}
.y209{bottom:962.433600px;}
.y190{bottom:963.987450px;}
.y165{bottom:970.382550px;}
.y1e3{bottom:970.517550px;}
.y5c{bottom:970.592550px;}
.yc1{bottom:970.742550px;}
.yeb{bottom:970.757550px;}
.y72{bottom:970.832550px;}
.y2c{bottom:988.937550px;}
.y21{bottom:998.692950px;}
.y20{bottom:1040.692950px;}
.y2b{bottom:1045.984350px;}
.h21{height:27.407400px;}
.h14{height:27.408000px;}
.h1b{height:31.383750px;}
.he{height:31.383900px;}
.h7{height:35.964000px;}
.hc{height:37.962000px;}
.h15{height:43.392000px;}
.h22{height:43.392600px;}
.h3{height:43.578000px;}
.hd{height:43.794000px;}
.h17{height:48.816000px;}
.h16{height:49.302000px;}
.h9{height:54.240000px;}
.h12{height:54.243000px;}
.h11{height:54.247200px;}
.h20{height:54.248400px;}
.h10{height:54.254400px;}
.h13{height:54.261000px;}
.h25{height:54.263400px;}
.h1a{height:54.279000px;}
.h18{height:54.291600px;}
.h19{height:54.304800px;}
.h1e{height:54.315600px;}
.h24{height:54.341400px;}
.h23{height:54.430200px;}
.h1f{height:54.490800px;}
.h1d{height:54.636600px;}
.h8{height:54.780000px;}
.h1c{height:67.552734px;}
.hf{height:67.553057px;}
.ha{height:67.788000px;}
.h6{height:71.332031px;}
.h2{height:74.238281px;}
.h5{height:77.472000px;}
.h4{height:92.556000px;}
.hb{height:135.576000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w3{width:106.299000px;}
.w4{width:106.299150px;}
.w2{width:106.299300px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x15{left:15.766178px;}
.xf{left:21.259800px;}
.x10{left:25.877287px;}
.x11{left:106.299300px;}
.x8{left:127.559100px;}
.x21{left:132.586950px;}
.x18{left:140.878050px;}
.xe{left:144.751500px;}
.xa{left:146.977350px;}
.x6{left:161.805600px;}
.x19{left:183.129000px;}
.xc{left:185.207250px;}
.xb{left:194.340150px;}
.x17{left:196.761300px;}
.x7{left:221.083650px;}
.x9{left:233.240100px;}
.x20{left:237.675000px;}
.x16{left:270.246150px;}
.x2{left:276.378000px;}
.x3{left:302.682750px;}
.x1a{left:340.983675px;}
.x1b{left:348.947325px;}
.x12{left:367.432800px;}
.x1d{left:371.587725px;}
.x1f{left:392.242725px;}
.x1c{left:397.429425px;}
.x14{left:400.756200px;}
.x1e{left:412.748550px;}
.x13{left:423.109500px;}
.xd{left:425.772750px;}
.x22{left:433.886400px;}
.x24{left:442.366425px;}
.x4{left:481.536900px;}
.x23{left:484.422300px;}
.x5{left:527.310150px;}
.x1{left:680.314950px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:17.760533pt;}
.ls18{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.746670pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls17{letter-spacing:-0.621867pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.466400pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.248747pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011922pt;}
.ls4{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.155244pt;}
.ls9{letter-spacing:0.155871pt;}
.ls8{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.533333pt;}
.ls0{letter-spacing:1.152000pt;}
.lsd{letter-spacing:6.592000pt;}
.lse{letter-spacing:49.408000pt;}
.ls13{letter-spacing:49.920000pt;}
.ls14{letter-spacing:50.645333pt;}
.lsa{letter-spacing:63.232000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws4d{word-spacing:-11.861333pt;}
.ws5{word-spacing:-10.378667pt;}
.ws1{word-spacing:-9.744000pt;}
.ws1b{word-spacing:-8.643947pt;}
.ws2{word-spacing:-8.352000pt;}
.ws4c{word-spacing:-8.177547pt;}
.ws1c{word-spacing:-6.915157pt;}
.ws81{word-spacing:-6.666411pt;}
.wsa0{word-spacing:-6.560000pt;}
.ws82{word-spacing:-6.293291pt;}
.wsa8{word-spacing:-5.866667pt;}
.ws3{word-spacing:-5.846400pt;}
.wsb8{word-spacing:-5.653333pt;}
.wsc0{word-spacing:-5.066667pt;}
.wsc4{word-spacing:-4.800000pt;}
.ws4b{word-spacing:-4.416000pt;}
.wsd0{word-spacing:-3.946667pt;}
.wsad{word-spacing:-3.925333pt;}
.wsce{word-spacing:-3.786667pt;}
.ws19{word-spacing:-3.680000pt;}
.wsb{word-spacing:-3.306667pt;}
.wsa1{word-spacing:-3.253333pt;}
.wsc6{word-spacing:-2.986667pt;}
.ws15{word-spacing:-2.880000pt;}
.wsc3{word-spacing:-2.826667pt;}
.wsbf{word-spacing:-2.720000pt;}
.ws59{word-spacing:-2.666667pt;}
.ws4f{word-spacing:-2.613333pt;}
.ws8f{word-spacing:-2.602667pt;}
.ws49{word-spacing:-2.560000pt;}
.ws61{word-spacing:-2.506667pt;}
.wsa5{word-spacing:-2.453333pt;}
.ws79{word-spacing:-2.400000pt;}
.ws48{word-spacing:-2.346667pt;}
.ws43{word-spacing:-2.293333pt;}
.ws6e{word-spacing:-2.240000pt;}
.ws9d{word-spacing:-2.186667pt;}
.ws5a{word-spacing:-2.133333pt;}
.ws76{word-spacing:-2.080000pt;}
.ws41{word-spacing:-2.026667pt;}
.ws46{word-spacing:-1.973333pt;}
.ws97{word-spacing:-1.920000pt;}
.wsc5{word-spacing:-1.866667pt;}
.ws38{word-spacing:-1.813333pt;}
.wsb9{word-spacing:-1.760000pt;}
.wsbb{word-spacing:-1.706667pt;}
.ws80{word-spacing:-1.664000pt;}
.ws86{word-spacing:-1.653333pt;}
.ws9a{word-spacing:-1.600000pt;}
.wsae{word-spacing:-1.578667pt;}
.ws77{word-spacing:-1.546667pt;}
.ws12{word-spacing:-1.493333pt;}
.ws91{word-spacing:-1.450667pt;}
.wsbd{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.386667pt;}
.ws39{word-spacing:-1.365333pt;}
.wsa2{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.226667pt;}
.ws72{word-spacing:-1.194667pt;}
.ws9f{word-spacing:-1.173333pt;}
.wsc1{word-spacing:-1.120000pt;}
.wsa9{word-spacing:-1.066667pt;}
.ws4a{word-spacing:-1.024000pt;}
.ws17{word-spacing:-1.013333pt;}
.wsac{word-spacing:-0.938667pt;}
.ws74{word-spacing:-0.906667pt;}
.ws8a{word-spacing:-0.853333pt;}
.ws87{word-spacing:-0.800000pt;}
.ws75{word-spacing:-0.746667pt;}
.ws98{word-spacing:-0.693333pt;}
.ws8c{word-spacing:-0.682667pt;}
.wsc8{word-spacing:-0.640000pt;}
.wsc7{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.576000pt;}
.wsa7{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws32{word-spacing:-0.426667pt;}
.wscb{word-spacing:-0.373333pt;}
.ws30{word-spacing:-0.266667pt;}
.ws50{word-spacing:-0.213333pt;}
.ws6f{word-spacing:-0.170667pt;}
.wsc9{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.144000pt;}
.ws0{word-spacing:-0.074667pt;}
.ws6{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.053333pt;}
.wsb7{word-spacing:0.106667pt;}
.wsd{word-spacing:0.160000pt;}
.ws8d{word-spacing:0.170667pt;}
.wsaa{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.266667pt;}
.wsab{word-spacing:0.320000pt;}
.ws9{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.373333pt;}
.wsf{word-spacing:0.426667pt;}
.wsc2{word-spacing:0.480000pt;}
.ws73{word-spacing:0.533333pt;}
.ws3e{word-spacing:0.554667pt;}
.ws1e{word-spacing:0.586667pt;}
.ws24{word-spacing:0.640000pt;}
.ws44{word-spacing:0.693333pt;}
.ws84{word-spacing:0.746667pt;}
.ws92{word-spacing:0.768000pt;}
.ws5f{word-spacing:0.800000pt;}
.ws68{word-spacing:0.853333pt;}
.ws3d{word-spacing:0.896000pt;}
.ws18{word-spacing:0.906667pt;}
.ws3a{word-spacing:0.938667pt;}
.wsd2{word-spacing:0.960000pt;}
.ws7d{word-spacing:1.013333pt;}
.ws45{word-spacing:1.066667pt;}
.ws40{word-spacing:1.109333pt;}
.wscd{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.194667pt;}
.wsa3{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.333333pt;}
.ws7e{word-spacing:1.386667pt;}
.ws90{word-spacing:1.408000pt;}
.wse{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.450667pt;}
.ws71{word-spacing:1.493333pt;}
.ws89{word-spacing:1.546667pt;}
.wsb1{word-spacing:1.653333pt;}
.ws6b{word-spacing:1.706667pt;}
.ws2f{word-spacing:1.760000pt;}
.wsbc{word-spacing:1.813333pt;}
.ws78{word-spacing:1.866667pt;}
.ws5c{word-spacing:1.920000pt;}
.wsb3{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.ws27{word-spacing:2.080000pt;}
.ws42{word-spacing:2.133333pt;}
.wsc{word-spacing:2.186667pt;}
.ws88{word-spacing:2.293333pt;}
.ws9b{word-spacing:2.346667pt;}
.ws85{word-spacing:2.400000pt;}
.ws31{word-spacing:2.453333pt;}
.wsa4{word-spacing:2.506667pt;}
.ws7f{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.602667pt;}
.wsb0{word-spacing:2.645333pt;}
.ws6d{word-spacing:2.666667pt;}
.wsb4{word-spacing:2.720000pt;}
.wsb5{word-spacing:2.773333pt;}
.ws83{word-spacing:2.826667pt;}
.ws95{word-spacing:2.880000pt;}
.ws94{word-spacing:2.933333pt;}
.ws93{word-spacing:2.986667pt;}
.ws11{word-spacing:3.040000pt;}
.wsaf{word-spacing:3.114667pt;}
.ws6a{word-spacing:3.146667pt;}
.wsba{word-spacing:3.200000pt;}
.ws70{word-spacing:3.285333pt;}
.wsb6{word-spacing:3.306667pt;}
.ws2e{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.573333pt;}
.wsa6{word-spacing:3.626667pt;}
.ws47{word-spacing:3.680000pt;}
.ws14{word-spacing:3.733333pt;}
.ws4e{word-spacing:3.786667pt;}
.ws69{word-spacing:3.840000pt;}
.wsd3{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.181333pt;}
.ws34{word-spacing:4.213333pt;}
.ws1a{word-spacing:4.320000pt;}
.ws54{word-spacing:4.373333pt;}
.ws99{word-spacing:4.426667pt;}
.wsd5{word-spacing:4.480000pt;}
.ws37{word-spacing:4.533333pt;}
.wscc{word-spacing:4.640000pt;}
.ws63{word-spacing:4.693333pt;}
.wsb2{word-spacing:4.800000pt;}
.ws13{word-spacing:5.066667pt;}
.ws5b{word-spacing:5.120000pt;}
.ws20{word-spacing:5.173333pt;}
.ws7b{word-spacing:5.333333pt;}
.wsca{word-spacing:5.440000pt;}
.ws28{word-spacing:5.653333pt;}
.ws57{word-spacing:5.813333pt;}
.wscf{word-spacing:5.920000pt;}
.ws22{word-spacing:5.973333pt;}
.wsd4{word-spacing:6.133333pt;}
.ws23{word-spacing:6.400000pt;}
.ws2c{word-spacing:6.453333pt;}
.ws96{word-spacing:6.560000pt;}
.ws6c{word-spacing:6.613333pt;}
.ws10{word-spacing:6.826667pt;}
.wsa{word-spacing:6.986667pt;}
.ws66{word-spacing:7.040000pt;}
.wsd1{word-spacing:7.146667pt;}
.ws26{word-spacing:7.253333pt;}
.ws2d{word-spacing:7.306667pt;}
.ws5d{word-spacing:7.893333pt;}
.ws52{word-spacing:7.946667pt;}
.ws1f{word-spacing:8.640000pt;}
.ws5e{word-spacing:9.280000pt;}
.ws56{word-spacing:9.440000pt;}
.ws35{word-spacing:9.493333pt;}
.ws64{word-spacing:10.080000pt;}
.ws16{word-spacing:10.293333pt;}
.ws53{word-spacing:10.453333pt;}
.ws58{word-spacing:10.506667pt;}
.ws51{word-spacing:11.040000pt;}
.ws2b{word-spacing:11.413333pt;}
.ws36{word-spacing:11.466667pt;}
.ws55{word-spacing:11.520000pt;}
.ws33{word-spacing:13.440000pt;}
.ws21{word-spacing:14.826667pt;}
.ws65{word-spacing:15.893333pt;}
.ws62{word-spacing:16.053333pt;}
.ws67{word-spacing:16.160000pt;}
.ws25{word-spacing:20.586667pt;}
.ws60{word-spacing:25.760000pt;}
._c{margin-left:-30.324800pt;}
._3{margin-left:-10.243200pt;}
._0{margin-left:-6.160000pt;}
._9{margin-left:-4.906667pt;}
._7{margin-left:-3.920000pt;}
._d{margin-left:-2.926933pt;}
._4{margin-left:-1.891200pt;}
._2{margin-left:-0.902400pt;}
._1{width:1.377600pt;}
._e{width:2.720000pt;}
._11{width:3.840000pt;}
._10{width:5.154133pt;}
._5{width:15.739911pt;}
._6{width:31.507137pt;}
._b{width:34.209004pt;}
._8{width:38.422337pt;}
._12{width:49.407920pt;}
._f{width:63.231960pt;}
._a{width:118.224000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs9{font-size:74.667024pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:8.112800pt;}
.y2a{bottom:8.112839pt;}
.y29{bottom:13.716667pt;}
.y1{bottom:45.354267pt;}
.y28{bottom:82.988000pt;}
.y18f{bottom:94.420267pt;}
.y1e2{bottom:94.438667pt;}
.y208{bottom:94.484533pt;}
.yea{bottom:94.488133pt;}
.y58{bottom:94.488267pt;}
.yba{bottom:94.488400pt;}
.y1b8{bottom:94.492000pt;}
.y27{bottom:95.228000pt;}
.y113{bottom:98.040133pt;}
.y6d{bottom:98.040267pt;}
.y13d{bottom:107.288133pt;}
.y9e{bottom:107.288267pt;}
.y26{bottom:107.468000pt;}
.y1e1{bottom:110.785333pt;}
.ye9{bottom:110.840133pt;}
.y57{bottom:110.840267pt;}
.yb9{bottom:110.840400pt;}
.y207{bottom:110.857867pt;}
.y1b7{bottom:110.998667pt;}
.y112{bottom:114.619733pt;}
.y6c{bottom:114.620000pt;}
.y18e{bottom:118.473600pt;}
.y25{bottom:119.708000pt;}
.y9d{bottom:120.088267pt;}
.y13c{bottom:123.640133pt;}
.y56{bottom:123.868000pt;}
.y1e0{bottom:127.132000pt;}
.ye8{bottom:127.419733pt;}
.y1b6{bottom:127.505333pt;}
.y111{bottom:131.199200pt;}
.y6b{bottom:131.199600pt;}
.y24{bottom:131.948000pt;}
.y9c{bottom:132.888267pt;}
.y206{bottom:134.786667pt;}
.y18d{bottom:134.966933pt;}
.y13b{bottom:140.219733pt;}
.y55{bottom:140.220000pt;}
.ye7{bottom:140.447200pt;}
.y1df{bottom:143.478667pt;}
.y6a{bottom:144.227333pt;}
.y164{bottom:145.097200pt;}
.y9b{bottom:149.240267pt;}
.y1b5{bottom:149.683067pt;}
.y18c{bottom:151.460267pt;}
.ye6{bottom:153.247200pt;}
.y54{bottom:153.247600pt;}
.y13a{bottom:156.799200pt;}
.y69{bottom:157.027333pt;}
.yb8{bottom:158.491200pt;}
.y1de{bottom:159.825333pt;}
.y163{bottom:161.270533pt;}
.y205{bottom:162.491200pt;}
.y9a{bottom:165.820000pt;}
.y53{bottom:166.047600pt;}
.y18b{bottom:167.953600pt;}
.ye5{bottom:169.599200pt;}
.y139{bottom:173.378800pt;}
.y68{bottom:173.379333pt;}
.yb7{bottom:174.491200pt;}
.y1dd{bottom:176.172000pt;}
.y162{bottom:177.443867pt;}
.y1b4{bottom:177.536000pt;}
.y110{bottom:178.237333pt;}
.y204{bottom:178.864533pt;}
.y52{bottom:182.399600pt;}
.ye4{bottom:182.626800pt;}
.y138{bottom:189.958267pt;}
.yb6{bottom:190.491200pt;}
.y18a{bottom:192.006933pt;}
.y1dc{bottom:192.518667pt;}
.y161{bottom:193.617200pt;}
.y1b3{bottom:194.042667pt;}
.y10f{bottom:194.374800pt;}
.y51{bottom:195.427333pt;}
.ye3{bottom:198.978800pt;}
.y203{bottom:202.793333pt;}
.y137{bottom:202.985867pt;}
.yb5{bottom:206.491200pt;}
.y1f{bottom:208.113867pt;}
.y50{bottom:208.227333pt;}
.y189{bottom:208.500267pt;}
.y160{bottom:209.790533pt;}
.y1b2{bottom:210.549333pt;}
.ye2{bottom:215.558267pt;}
.y1db{bottom:216.412000pt;}
.y10e{bottom:218.094800pt;}
.y136{bottom:219.337867pt;}
.y70{bottom:221.021733pt;}
.yb4{bottom:222.491200pt;}
.y4f{bottom:224.579333pt;}
.y188{bottom:224.993600pt;}
.y15f{bottom:225.963867pt;}
.y1b1{bottom:227.056000pt;}
.y1e{bottom:227.893467pt;}
.ye1{bottom:228.585867pt;}
.y99{bottom:229.387200pt;}
.y202{bottom:230.497867pt;}
.ya6{bottom:230.976000pt;}
.y1da{bottom:232.758667pt;}
.y10d{bottom:234.254800pt;}
.y6f{bottom:234.353733pt;}
.y135{bottom:235.917333pt;}
.y4e{bottom:237.606933pt;}
.ye0{bottom:241.385867pt;}
.y187{bottom:241.486933pt;}
.y1d{bottom:243.893467pt;}
.ya5{bottom:244.308000pt;}
.y98{bottom:245.480533pt;}
.yb3{bottom:246.051200pt;}
.y201{bottom:246.871200pt;}
.y6e{bottom:247.685733pt;}
.y1d9{bottom:249.105333pt;}
.y1b0{bottom:249.233867pt;}
.y15e{bottom:249.698933pt;}
.y4d{bottom:250.406933pt;}
.y134{bottom:252.496933pt;}
.ydf{bottom:254.185733pt;}
.ya4{bottom:257.640000pt;}
.y10c{bottom:257.974800pt;}
.y186{bottom:257.980267pt;}
.y1c{bottom:259.893467pt;}
.y97{bottom:261.573867pt;}
.yb2{bottom:262.051200pt;}
.y1d8{bottom:265.452000pt;}
.y133{bottom:265.524400pt;}
.y4c{bottom:266.758933pt;}
.yde{bottom:270.537867pt;}
.y200{bottom:270.799867pt;}
.ya3{bottom:270.972000pt;}
.y10b{bottom:274.134800pt;}
.y185{bottom:274.473600pt;}
.y1b{bottom:275.893467pt;}
.y1af{bottom:277.091067pt;}
.y15d{bottom:277.234667pt;}
.y96{bottom:277.667200pt;}
.yb1{bottom:278.051200pt;}
.y132{bottom:281.876400pt;}
.ydd{bottom:283.565333pt;}
.ya2{bottom:284.304000pt;}
.y1d7{bottom:289.351467pt;}
.y226{bottom:289.444533pt;}
.y184{bottom:290.966933pt;}
.y1a{bottom:291.893467pt;}
.y15c{bottom:293.408000pt;}
.y1ae{bottom:293.597733pt;}
.y95{bottom:293.760533pt;}
.yb0{bottom:294.051200pt;}
.ydc{bottom:296.365333pt;}
.y10a{bottom:297.848667pt;}
.y1ff{bottom:298.496267pt;}
.y225{bottom:305.444533pt;}
.y183{bottom:307.460267pt;}
.y19{bottom:307.893467pt;}
.y15b{bottom:309.581333pt;}
.y94{bottom:309.853867pt;}
.yaf{bottom:310.051200pt;}
.ydb{bottom:312.717333pt;}
.y5b{bottom:313.703467pt;}
.y4b{bottom:313.800400pt;}
.y1fe{bottom:314.869600pt;}
.y1ad{bottom:315.771067pt;}
.y1d6{bottom:316.980933pt;}
.y224{bottom:321.444533pt;}
.y18{bottom:323.893467pt;}
.y109{bottom:325.299867pt;}
.y93{bottom:325.947200pt;}
.yae{bottom:326.051200pt;}
.y5a{bottom:327.035467pt;}
.y131{bottom:328.921733pt;}
.yda{bottom:329.296800pt;}
.y182{bottom:331.507200pt;}
.y4a{bottom:331.547067pt;}
.y1ac{bottom:332.277733pt;}
.y15a{bottom:333.314667pt;}
.y1d5{bottom:333.327600pt;}
.y223{bottom:337.444533pt;}
.y1fd{bottom:338.802933pt;}
.y17{bottom:339.893467pt;}
.y59{bottom:340.367467pt;}
.y108{bottom:341.459867pt;}
.y92{bottom:342.040533pt;}
.yad{bottom:342.051200pt;}
.y130{bottom:345.248133pt;}
.y1ab{bottom:348.784400pt;}
.y49{bottom:349.293733pt;}
.y159{bottom:349.488000pt;}
.y1d4{bottom:349.674267pt;}
.y222{bottom:353.444533pt;}
.y1fc{bottom:355.176267pt;}
.y16{bottom:355.893467pt;}
.yac{bottom:358.051200pt;}
.y91{bottom:358.133867pt;}
.y181{bottom:359.261200pt;}
.y12f{bottom:361.568133pt;}
.y107{bottom:365.179867pt;}
.y158{bottom:365.661333pt;}
.y48{bottom:367.040400pt;}
.y1aa{bottom:370.962267pt;}
.y1d3{bottom:373.567600pt;}
.yab{bottom:374.051200pt;}
.y90{bottom:374.227200pt;}
.y180{bottom:375.754533pt;}
.yd9{bottom:376.353867pt;}
.y221{bottom:377.004533pt;}
.y12e{bottom:377.888133pt;}
.y1fb{bottom:379.105067pt;}
.y15{bottom:379.452533pt;}
.y106{bottom:381.339867pt;}
.y157{bottom:381.834667pt;}
.y47{bottom:384.787067pt;}
.y1d2{bottom:389.914267pt;}
.yaa{bottom:390.051200pt;}
.y8f{bottom:390.320533pt;}
.yd8{bottom:392.527200pt;}
.y12d{bottom:394.210267pt;}
.y105{bottom:397.499867pt;}
.y156{bottom:398.008000pt;}
.y1a9{bottom:398.824533pt;}
.y17f{bottom:399.807867pt;}
.y14{bottom:401.852533pt;}
.y46{bottom:402.529067pt;}
.ya9{bottom:406.051200pt;}
.y1d1{bottom:406.260933pt;}
.y8e{bottom:406.413867pt;}
.y1fa{bottom:406.806000pt;}
.yd7{bottom:408.700533pt;}
.y12c{bottom:410.532400pt;}
.y104{bottom:413.659867pt;}
.y155{bottom:414.181333pt;}
.y1a8{bottom:415.331200pt;}
.y17e{bottom:416.301200pt;}
.y45{bottom:420.275733pt;}
.ya8{bottom:422.051200pt;}
.y8d{bottom:422.507200pt;}
.y1d0{bottom:422.607600pt;}
.y1f9{bottom:423.179333pt;}
.y220{bottom:423.244533pt;}
.yd6{bottom:424.873867pt;}
.y12b{bottom:426.868400pt;}
.y103{bottom:429.819867pt;}
.y1a7{bottom:431.837867pt;}
.y17d{bottom:432.794533pt;}
.y154{bottom:437.916400pt;}
.y44{bottom:438.022400pt;}
.y8c{bottom:438.600533pt;}
.y1cf{bottom:438.954267pt;}
.y21f{bottom:439.244533pt;}
.y1f8{bottom:439.552667pt;}
.y12a{bottom:443.188400pt;}
.ya7{bottom:445.611200pt;}
.y102{bottom:445.979867pt;}
.y1a6{bottom:448.344533pt;}
.yd5{bottom:448.610800pt;}
.y17c{bottom:449.287867pt;}
.y13{bottom:450.709200pt;}
.y8b{bottom:454.693867pt;}
.y21e{bottom:455.244533pt;}
.y1ce{bottom:455.300933pt;}
.y43{bottom:455.769067pt;}
.y129{bottom:459.508400pt;}
.y101{bottom:462.139867pt;}
.y1f7{bottom:463.481333pt;}
.y1a5{bottom:464.851200pt;}
.y153{bottom:465.483200pt;}
.y17b{bottom:465.781200pt;}
.y12{bottom:470.488667pt;}
.y21d{bottom:471.244533pt;}
.y1cd{bottom:471.647600pt;}
.y42{bottom:473.515733pt;}
.yd4{bottom:476.131867pt;}
.y8a{bottom:476.810400pt;}
.ybd{bottom:481.201200pt;}
.yc0{bottom:481.203867pt;}
.y1a4{bottom:481.357867pt;}
.y152{bottom:481.656533pt;}
.y17a{bottom:482.274533pt;}
.y128{bottom:483.388400pt;}
.y100{bottom:485.853867pt;}
.y11{bottom:486.488667pt;}
.y21c{bottom:487.244533pt;}
.y1cc{bottom:487.994267pt;}
.y1f6{bottom:491.167733pt;}
.y41{bottom:491.262400pt;}
.yd3{bottom:492.305200pt;}
.y89{bottom:492.903733pt;}
.ybf{bottom:494.535867pt;}
.y1a3{bottom:497.864533pt;}
.y179{bottom:498.767867pt;}
.y127{bottom:499.708400pt;}
.y10{bottom:502.488667pt;}
.y21b{bottom:503.244533pt;}
.y151{bottom:505.389867pt;}
.y1f5{bottom:507.541067pt;}
.ybe{bottom:507.867867pt;}
.y88{bottom:508.997067pt;}
.y40{bottom:509.009067pt;}
.y1cb{bottom:511.893733pt;}
.yff{bottom:513.258667pt;}
.y1a2{bottom:514.371200pt;}
.y178{bottom:515.261200pt;}
.y126{bottom:516.028400pt;}
.yd2{bottom:516.042133pt;}
.yf{bottom:518.488667pt;}
.y150{bottom:521.563200pt;}
.y1f4{bottom:523.914400pt;}
.y87{bottom:525.090400pt;}
.y3f{bottom:526.755733pt;}
.y21a{bottom:526.803733pt;}
.yfe{bottom:529.418667pt;}
.y1a1{bottom:530.877867pt;}
.y177{bottom:531.754533pt;}
.y125{bottom:532.348400pt;}
.ye{bottom:534.488667pt;}
.y14f{bottom:537.736533pt;}
.y1ca{bottom:539.541867pt;}
.y1f3{bottom:540.287733pt;}
.y86{bottom:541.095600pt;}
.yd1{bottom:543.561467pt;}
.y3e{bottom:544.502400pt;}
.yfd{bottom:545.578667pt;}
.y176{bottom:548.247867pt;}
.y124{bottom:548.668400pt;}
.yd{bottom:550.488667pt;}
.y1a0{bottom:553.055867pt;}
.y14e{bottom:553.909867pt;}
.y219{bottom:554.142267pt;}
.y1c9{bottom:555.888533pt;}
.y1f2{bottom:556.661067pt;}
.y85{bottom:557.188933pt;}
.yfc{bottom:561.738667pt;}
.y3d{bottom:562.249067pt;}
.y175{bottom:564.741200pt;}
.y123{bottom:564.988400pt;}
.yc{bottom:566.488667pt;}
.y14d{bottom:570.083200pt;}
.y218{bottom:570.142267pt;}
.y1c8{bottom:572.235200pt;}
.y1f1{bottom:573.034400pt;}
.y84{bottom:573.282267pt;}
.ya1{bottom:573.546000pt;}
.yd0{bottom:574.859333pt;}
.y19f{bottom:580.916933pt;}
.y174{bottom:581.234533pt;}
.yb{bottom:582.488667pt;}
.yfb{bottom:585.458667pt;}
.y217{bottom:586.142267pt;}
.y14c{bottom:586.256533pt;}
.ya0{bottom:586.878000pt;}
.y3c{bottom:587.555067pt;}
.y1c7{bottom:588.581867pt;}
.y122{bottom:588.869600pt;}
.y83{bottom:589.375600pt;}
.y1f0{bottom:589.407733pt;}
.ycf{bottom:591.055333pt;}
.y19e{bottom:597.423600pt;}
.ya{bottom:598.488667pt;}
.y9f{bottom:600.210000pt;}
.yfa{bottom:601.618667pt;}
.y216{bottom:602.142267pt;}
.y14b{bottom:602.429867pt;}
.y1c6{bottom:604.928533pt;}
.y173{bottom:605.281467pt;}
.y3b{bottom:605.301733pt;}
.y82{bottom:605.468933pt;}
.yce{bottom:607.228667pt;}
.y1ef{bottom:613.336400pt;}
.y19d{bottom:613.930267pt;}
.y9{bottom:614.488667pt;}
.y121{bottom:616.532400pt;}
.yf9{bottom:617.778667pt;}
.y14a{bottom:618.603200pt;}
.y1c5{bottom:621.275200pt;}
.y81{bottom:621.562267pt;}
.y3a{bottom:623.046800pt;}
.ycd{bottom:623.402000pt;}
.y215{bottom:625.701333pt;}
.y120{bottom:632.852400pt;}
.y172{bottom:633.028933pt;}
.yf8{bottom:633.938667pt;}
.y149{bottom:634.776533pt;}
.y19c{bottom:636.103600pt;}
.y80{bottom:637.655600pt;}
.y23{bottom:639.704000pt;}
.y39{bottom:640.793467pt;}
.y1ee{bottom:641.041067pt;}
.y1c4{bottom:645.174667pt;}
.ycc{bottom:647.135333pt;}
.y171{bottom:649.522267pt;}
.yf7{bottom:650.098667pt;}
.y148{bottom:650.949867pt;}
.y19b{bottom:652.610267pt;}
.y214{bottom:653.038933pt;}
.y7f{bottom:653.748933pt;}
.y11f{bottom:656.733600pt;}
.y1ed{bottom:657.414400pt;}
.y38{bottom:658.540133pt;}
.y4{bottom:663.955600pt;}
.yf6{bottom:666.258667pt;}
.y213{bottom:669.038933pt;}
.y19a{bottom:669.116933pt;}
.y7e{bottom:669.842267pt;}
.y1c3{bottom:672.810400pt;}
.y170{bottom:673.575600pt;}
.y147{bottom:674.683200pt;}
.y37{bottom:676.286800pt;}
.y3{bottom:677.287600pt;}
.y1ec{bottom:681.343067pt;}
.yf5{bottom:682.418667pt;}
.y67{bottom:683.401467pt;}
.y11e{bottom:684.398533pt;}
.y212{bottom:685.038933pt;}
.y199{bottom:685.623600pt;}
.y7d{bottom:685.935600pt;}
.y1c2{bottom:689.157067pt;}
.y16f{bottom:690.068933pt;}
.y146{bottom:690.856533pt;}
.y2{bottom:692.515600pt;}
.ycb{bottom:693.548667pt;}
.y36{bottom:694.030267pt;}
.yf4{bottom:698.578667pt;}
.ybc{bottom:699.550533pt;}
.y66{bottom:699.708133pt;}
.y11d{bottom:700.718533pt;}
.y7c{bottom:702.028933pt;}
.y16e{bottom:706.562267pt;}
.y145{bottom:707.029867pt;}
.y198{bottom:707.801467pt;}
.y211{bottom:708.598933pt;}
.y1eb{bottom:709.015600pt;}
.yca{bottom:709.722000pt;}
.y35{bottom:711.776933pt;}
.ybb{bottom:712.882533pt;}
.y1c1{bottom:713.050400pt;}
.yf3{bottom:714.738667pt;}
.y65{bottom:716.014800pt;}
.y11c{bottom:717.040533pt;}
.y7b{bottom:718.122267pt;}
.y8{bottom:720.931333pt;}
.y16d{bottom:723.055600pt;}
.y144{bottom:723.203200pt;}
.y210{bottom:724.598933pt;}
.y1ea{bottom:725.388933pt;}
.yc9{bottom:725.900000pt;}
.y1c0{bottom:729.397067pt;}
.y34{bottom:729.523600pt;}
.yf2{bottom:730.898667pt;}
.y64{bottom:732.307067pt;}
.y11b{bottom:733.374533pt;}
.y7a{bottom:734.215600pt;}
.y197{bottom:735.664400pt;}
.y143{bottom:739.376533pt;}
.y16c{bottom:739.548933pt;}
.y20f{bottom:740.598933pt;}
.y1e9{bottom:741.762267pt;}
.yc8{bottom:742.082400pt;}
.y1bf{bottom:745.743733pt;}
.yf1{bottom:747.058667pt;}
.y33{bottom:747.270267pt;}
.y7{bottom:747.690400pt;}
.y63{bottom:748.613733pt;}
.y11a{bottom:749.694533pt;}
.y79{bottom:750.308933pt;}
.y196{bottom:752.171067pt;}
.y142{bottom:755.549867pt;}
.y16b{bottom:756.042267pt;}
.y20e{bottom:756.598933pt;}
.yc7{bottom:758.255733pt;}
.y1be{bottom:762.090400pt;}
.yf0{bottom:763.218667pt;}
.y62{bottom:764.920400pt;}
.y32{bottom:765.016933pt;}
.y1e8{bottom:765.695600pt;}
.y78{bottom:766.402267pt;}
.y141{bottom:771.723200pt;}
.y20d{bottom:772.598933pt;}
.y119{bottom:773.574533pt;}
.y6{bottom:773.953200pt;}
.y195{bottom:774.344400pt;}
.yc6{bottom:774.429067pt;}
.y1bd{bottom:778.437067pt;}
.yef{bottom:779.378667pt;}
.y16a{bottom:780.095600pt;}
.y61{bottom:781.227067pt;}
.y1e7{bottom:782.068933pt;}
.y77{bottom:782.495600pt;}
.y31{bottom:782.763600pt;}
.y20c{bottom:788.598933pt;}
.y118{bottom:789.894533pt;}
.y194{bottom:790.851067pt;}
.y1bc{bottom:794.783733pt;}
.y140{bottom:795.456533pt;}
.yee{bottom:795.538667pt;}
.y169{bottom:796.588933pt;}
.y60{bottom:797.533733pt;}
.yc5{bottom:798.179733pt;}
.y76{bottom:798.588933pt;}
.y5{bottom:799.553200pt;}
.y30{bottom:800.510267pt;}
.y1e6{bottom:806.002267pt;}
.y117{bottom:806.214533pt;}
.y193{bottom:807.357733pt;}
.y1bb{bottom:811.130400pt;}
.y13f{bottom:811.629867pt;}
.y20b{bottom:812.158000pt;}
.y168{bottom:813.082267pt;}
.y5f{bottom:813.828933pt;}
.yc4{bottom:814.353067pt;}
.y75{bottom:814.682267pt;}
.y2f{bottom:818.256933pt;}
.yed{bottom:819.252533pt;}
.y1e5{bottom:822.375600pt;}
.y116{bottom:822.534533pt;}
.y192{bottom:823.864400pt;}
.y1ba{bottom:827.477067pt;}
.y167{bottom:829.575600pt;}
.y5e{bottom:830.135600pt;}
.yc3{bottom:830.526400pt;}
.y74{bottom:830.775600pt;}
.y13e{bottom:835.364933pt;}
.y2e{bottom:836.003600pt;}
.y1e4{bottom:838.748933pt;}
.y115{bottom:838.854533pt;}
.y20a{bottom:839.496533pt;}
.y191{bottom:840.371067pt;}
.y166{bottom:846.068933pt;}
.y5d{bottom:846.442267pt;}
.yc2{bottom:846.708933pt;}
.yec{bottom:846.735600pt;}
.y73{bottom:846.868933pt;}
.y22{bottom:850.393733pt;}
.y1b9{bottom:851.376533pt;}
.y2d{bottom:853.750267pt;}
.y114{bottom:855.174533pt;}
.y209{bottom:855.496533pt;}
.y190{bottom:856.877733pt;}
.y165{bottom:862.562267pt;}
.y1e3{bottom:862.682267pt;}
.y5c{bottom:862.748933pt;}
.yc1{bottom:862.882267pt;}
.yeb{bottom:862.895600pt;}
.y72{bottom:862.962267pt;}
.y2c{bottom:879.055600pt;}
.y21{bottom:887.727067pt;}
.y20{bottom:925.060400pt;}
.y2b{bottom:929.763867pt;}
.h21{height:24.362133pt;}
.h14{height:24.362667pt;}
.h1b{height:27.896667pt;}
.he{height:27.896800pt;}
.h7{height:31.968000pt;}
.hc{height:33.744000pt;}
.h15{height:38.570667pt;}
.h22{height:38.571200pt;}
.h3{height:38.736000pt;}
.hd{height:38.928000pt;}
.h17{height:43.392000pt;}
.h16{height:43.824000pt;}
.h9{height:48.213333pt;}
.h12{height:48.216000pt;}
.h11{height:48.219733pt;}
.h20{height:48.220800pt;}
.h10{height:48.226133pt;}
.h13{height:48.232000pt;}
.h25{height:48.234133pt;}
.h1a{height:48.248000pt;}
.h18{height:48.259200pt;}
.h19{height:48.270933pt;}
.h1e{height:48.280533pt;}
.h24{height:48.303467pt;}
.h23{height:48.382400pt;}
.h1f{height:48.436267pt;}
.h1d{height:48.565867pt;}
.h8{height:48.693333pt;}
.h1c{height:60.046875pt;}
.hf{height:60.047162pt;}
.ha{height:60.256000pt;}
.h6{height:63.406250pt;}
.h2{height:65.989583pt;}
.h5{height:68.864000pt;}
.h4{height:82.272000pt;}
.hb{height:120.512000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w3{width:94.488000pt;}
.w4{width:94.488133pt;}
.w2{width:94.488267pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x15{left:14.014380pt;}
.xf{left:18.897600pt;}
.x10{left:23.002032pt;}
.x11{left:94.488267pt;}
.x8{left:113.385867pt;}
.x21{left:117.855067pt;}
.x18{left:125.224933pt;}
.xe{left:128.668000pt;}
.xa{left:130.646533pt;}
.x6{left:143.827200pt;}
.x19{left:162.781333pt;}
.xc{left:164.628667pt;}
.xb{left:172.746800pt;}
.x17{left:174.898933pt;}
.x7{left:196.518800pt;}
.x9{left:207.324533pt;}
.x20{left:211.266667pt;}
.x16{left:240.218800pt;}
.x2{left:245.669333pt;}
.x3{left:269.051333pt;}
.x1a{left:303.096600pt;}
.x1b{left:310.175400pt;}
.x12{left:326.606933pt;}
.x1d{left:330.300200pt;}
.x1f{left:348.660200pt;}
.x1c{left:353.270600pt;}
.x14{left:356.227733pt;}
.x1e{left:366.887600pt;}
.x13{left:376.097333pt;}
.xd{left:378.464667pt;}
.x22{left:385.676800pt;}
.x24{left:393.214600pt;}
.x4{left:428.032800pt;}
.x23{left:430.597600pt;}
.x5{left:468.720133pt;}
.x1{left:604.724400pt;}
}




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