
    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_28da2d556b4435866947c7e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_cbb4a0f017125dc85b5d073a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_5c0b306ba1f9c1c4f26a0dd4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;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_147d0421e1efad3bacde4b35.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_eaa72de770f6315d624cccbd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_8b73c4f08c319a4acfdd8afa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_aa9b3f1ab97b07a897c0e9a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_dc68d52fe35097b597b724ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.166504;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_67318556ef899e08ab2fed39.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;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_9aeed838c10d01f1b480d2e2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_757f3d39068036473e8aeaee.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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_3c61cd9d864a20d128b9536e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957520;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_5decfed6d42d306033dd9d22.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.758789;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_aaf06b4ed00bbf32254d9c6d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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_1dca1463b4541ca221ec8465.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.401855;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_76a7e9682939e45df4c4734c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.166504;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_3b927823538a00aa8b986c81.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_5d1d8fc3862c2eab7aae5069.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.974609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c207354e8c50d46173ae657d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.128906;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.240000px;}
.v1{vertical-align:18.180000px;}
.ls23{letter-spacing:-1.620000px;}
.ls24{letter-spacing:-1.386000px;}
.ls25{letter-spacing:-1.260000px;}
.ls26{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.188000px;}
.ls1f{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.684000px;}
.ls27{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.lse{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.152400px;}
.ls20{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.522000px;}
.ls4{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.670320px;}
.ls8{letter-spacing:0.684000px;}
.ls1b{letter-spacing:0.738000px;}
.lsb{letter-spacing:0.756000px;}
.ls13{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.116000px;}
.ls6{letter-spacing:1.188000px;}
.ls9{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.278000px;}
.ls14{letter-spacing:1.386000px;}
.ls18{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.458000px;}
.lsa{letter-spacing:1.476000px;}
.ls19{letter-spacing:1.530000px;}
.ls2b{letter-spacing:1.548000px;}
.ls21{letter-spacing:1.620000px;}
.ls28{letter-spacing:1.674000px;}
.ls2a{letter-spacing:1.692000px;}
.ls29{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.800000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-27.216000px;}
.ws4{word-spacing:-21.187920px;}
.ws3{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.966720px;}
.ws20{word-spacing:-15.444000px;}
.ws1e{word-spacing:-15.390000px;}
.ws21{word-spacing:-15.264000px;}
.ws1d{word-spacing:-15.192000px;}
.ws13{word-spacing:-14.796000px;}
.ws22{word-spacing:-14.706000px;}
.ws16{word-spacing:-14.544000px;}
.wsa{word-spacing:-14.472000px;}
.ws12{word-spacing:-14.418000px;}
.wsb{word-spacing:-14.274000px;}
.ws1f{word-spacing:-14.130000px;}
.ws17{word-spacing:-13.896000px;}
.ws5{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.536000px;}
.ws0{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.032000px;}
.ws6{word-spacing:-13.014000px;}
.ws10{word-spacing:-12.960000px;}
.wsf{word-spacing:-12.834000px;}
.ws1c{word-spacing:-12.582000px;}
.ws1b{word-spacing:-12.492000px;}
.ws1a{word-spacing:-12.456000px;}
.ws19{word-spacing:-12.330000px;}
.ws23{word-spacing:-11.826000px;}
.ws18{word-spacing:-11.628000px;}
.wsc{word-spacing:-10.152000px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.wse{word-spacing:-9.432000px;}
.wsd{word-spacing:-8.676000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-2.364000px;}
._1{margin-left:-1.296000px;}
._0{width:1.169040px;}
._8{width:2.748240px;}
._7{width:3.855840px;}
._c{width:5.015760px;}
._b{width:6.070080px;}
._e{width:7.834800px;}
._4{width:9.650880px;}
._3{width:10.730880px;}
._23{width:11.988000px;}
._6{width:14.121600px;}
._f{width:15.181440px;}
._1b{width:16.688400px;}
._10{width:17.832720px;}
._a{width:19.302960px;}
._9{width:20.608800px;}
._13{width:21.650880px;}
._d{width:22.736880px;}
._14{width:24.586080px;}
._11{width:25.766640px;}
._2b{width:26.829600px;}
._12{width:27.876960px;}
._1f{width:29.511600px;}
._20{width:31.490640px;}
._21{width:33.348480px;}
._39{width:34.369920px;}
._1a{width:35.402160px;}
._15{width:36.728640px;}
._2{width:38.024640px;}
._26{width:39.927840px;}
._31{width:41.423760px;}
._2e{width:42.849600px;}
._2f{width:44.478240px;}
._1e{width:45.486960px;}
._1d{width:46.646640px;}
._32{width:48.087600px;}
._25{width:49.850400px;}
._1c{width:50.898480px;}
._17{width:55.183440px;}
._19{width:56.209440px;}
._18{width:57.874800px;}
._2c{width:59.840640px;}
._2d{width:61.363920px;}
._24{width:62.966880px;}
._30{width:64.807680px;}
._36{width:65.968320px;}
._28{width:67.705680px;}
._29{width:69.598560px;}
._2a{width:71.405040px;}
._38{width:72.840720px;}
._34{width:81.354480px;}
._33{width:82.388640px;}
._37{width:88.599120px;}
._16{width:94.244400px;}
._22{width:96.016800px;}
._35{width:119.386560px;}
._27{width:126.938880px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs4{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fsf{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y4c{bottom:-18.390000px;}
.y41{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.440000px;}
.y14{bottom:1.620000px;}
.y35{bottom:1.785000px;}
.y18{bottom:2.160000px;}
.y23{bottom:2.340000px;}
.y4b{bottom:2.850000px;}
.yed{bottom:3.045000px;}
.y1a{bottom:3.060000px;}
.y113{bottom:3.090000px;}
.y1e{bottom:3.240000px;}
.y4e{bottom:3.420000px;}
.y20{bottom:3.600000px;}
.y1c{bottom:4.500000px;}
.y3e{bottom:6.465000px;}
.y3b{bottom:6.645000px;}
.y37{bottom:7.725000px;}
.y33{bottom:10.785000px;}
.y51{bottom:11.700000px;}
.y39{bottom:12.585000px;}
.y52{bottom:13.680000px;}
.y16{bottom:13.860000px;}
.y12{bottom:14.040000px;}
.y9{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y53{bottom:16.560000px;}
.yd{bottom:17.640000px;}
.yec{bottom:18.345000px;}
.yd5{bottom:18.360000px;}
.yd9{bottom:18.540000px;}
.y4a{bottom:27.330000px;}
.y32{bottom:33.825000px;}
.yd4{bottom:33.840000px;}
.y11{bottom:41.940000px;}
.y8{bottom:45.540000px;}
.y54{bottom:47.520000px;}
.y49{bottom:50.550000px;}
.yc{bottom:53.280000px;}
.y31{bottom:56.865000px;}
.y3{bottom:58.320000px;}
.y50{bottom:63.720000px;}
.y48{bottom:73.590000px;}
.y1{bottom:74.520000px;}
.y7{bottom:76.680000px;}
.y30{bottom:79.905000px;}
.y47{bottom:97.350000px;}
.y2f{bottom:102.990000px;}
.y5{bottom:107.640000px;}
.y6{bottom:107.820000px;}
.yfb{bottom:112.320000px;}
.y1ca{bottom:112.860000px;}
.y1f4{bottom:116.100000px;}
.y83{bottom:118.620000px;}
.yd2{bottom:118.800000px;}
.yb2{bottom:119.340000px;}
.y155{bottom:121.860000px;}
.y2e{bottom:125.850000px;}
.y12c{bottom:126.720000px;}
.y45{bottom:126.900000px;}
.y149{bottom:127.440000px;}
.yfa{bottom:134.640000px;}
.y1c9{bottom:135.720000px;}
.y1a1{bottom:135.900000px;}
.y1f3{bottom:139.320000px;}
.y82{bottom:140.760000px;}
.yd1{bottom:140.940000px;}
.yb1{bottom:141.660000px;}
.y154{bottom:144.000000px;}
.y12b{bottom:148.860000px;}
.y2d{bottom:148.890000px;}
.y17a{bottom:149.040000px;}
.y148{bottom:149.760000px;}
.y44{bottom:149.940000px;}
.yf9{bottom:156.780000px;}
.y1c8{bottom:158.580000px;}
.y1a0{bottom:160.380000px;}
.y1f2{bottom:162.720000px;}
.y81{bottom:163.080000px;}
.yd0{bottom:163.260000px;}
.yb0{bottom:163.800000px;}
.y153{bottom:166.320000px;}
.y12a{bottom:171.180000px;}
.y147{bottom:171.900000px;}
.y2c{bottom:171.930000px;}
.y43{bottom:172.980000px;}
.yf8{bottom:179.100000px;}
.y1c7{bottom:181.440000px;}
.y19f{bottom:185.040000px;}
.y80{bottom:185.220000px;}
.ycf{bottom:185.400000px;}
.y1f1{bottom:185.940000px;}
.yaf{bottom:186.120000px;}
.y152{bottom:188.460000px;}
.y179{bottom:192.420000px;}
.y129{bottom:193.500000px;}
.y146{bottom:194.220000px;}
.y2b{bottom:194.970000px;}
.y42{bottom:196.020000px;}
.yf7{bottom:201.240000px;}
.y1c6{bottom:204.300000px;}
.y7f{bottom:207.570000px;}
.yce{bottom:207.750000px;}
.y40{bottom:208.125000px;}
.yae{bottom:208.290000px;}
.y1f0{bottom:209.370000px;}
.y19e{bottom:209.550000px;}
.y151{bottom:210.810000px;}
.y178{bottom:213.330000px;}
.y128{bottom:215.670000px;}
.y145{bottom:216.570000px;}
.y2a{bottom:218.010000px;}
.yf6{bottom:223.590000px;}
.y1c5{bottom:227.190000px;}
.y3f{bottom:227.565000px;}
.y7e{bottom:229.890000px;}
.yad{bottom:230.610000px;}
.y1ef{bottom:232.770000px;}
.y150{bottom:233.130000px;}
.y19d{bottom:234.030000px;}
.y177{bottom:235.470000px;}
.y127{bottom:237.990000px;}
.y144{bottom:238.710000px;}
.y29{bottom:241.050000px;}
.yf5{bottom:245.730000px;}
.y3d{bottom:247.005000px;}
.y1c4{bottom:250.050000px;}
.y7d{bottom:252.030000px;}
.ycd{bottom:252.210000px;}
.yac{bottom:252.750000px;}
.y14f{bottom:255.270000px;}
.y1ee{bottom:255.990000px;}
.y176{bottom:257.790000px;}
.y19c{bottom:258.690000px;}
.y126{bottom:260.130000px;}
.y143{bottom:261.030000px;}
.y28{bottom:263.910000px;}
.y3c{bottom:266.265000px;}
.yf4{bottom:268.050000px;}
.y1c3{bottom:273.090000px;}
.y7c{bottom:274.350000px;}
.ycc{bottom:274.530000px;}
.yab{bottom:275.070000px;}
.y14e{bottom:277.590000px;}
.y1ed{bottom:279.390000px;}
.y175{bottom:279.930000px;}
.y125{bottom:282.450000px;}
.y142{bottom:283.170000px;}
.y3a{bottom:285.705000px;}
.y27{bottom:286.950000px;}
.yf3{bottom:290.370000px;}
.y1c2{bottom:295.950000px;}
.y7b{bottom:296.490000px;}
.ycb{bottom:296.670000px;}
.yaa{bottom:297.390000px;}
.y14d{bottom:299.730000px;}
.y174{bottom:302.250000px;}
.y1ec{bottom:302.610000px;}
.y141{bottom:303.150000px;}
.y124{bottom:304.590000px;}
.y38{bottom:305.145000px;}
.y19b{bottom:307.650000px;}
.y26{bottom:309.990000px;}
.yf2{bottom:312.510000px;}
.y7a{bottom:318.810000px;}
.yca{bottom:318.990000px;}
.ya9{bottom:319.530000px;}
.y14c{bottom:322.050000px;}
.y140{bottom:322.770000px;}
.y173{bottom:324.570000px;}
.y1eb{bottom:326.010000px;}
.y123{bottom:326.910000px;}
.y36{bottom:330.525000px;}
.y19a{bottom:332.310000px;}
.y25{bottom:333.060000px;}
.yf1{bottom:334.830000px;}
.y79{bottom:340.950000px;}
.yc9{bottom:341.130000px;}
.y1c1{bottom:341.670000px;}
.ya8{bottom:341.850000px;}
.y14b{bottom:344.190000px;}
.y13f{bottom:345.090000px;}
.y172{bottom:346.710000px;}
.y34{bottom:347.805000px;}
.y122{bottom:349.230000px;}
.y1ea{bottom:349.410000px;}
.y24{bottom:354.645000px;}
.y199{bottom:356.790000px;}
.yf0{bottom:356.970000px;}
.y78{bottom:363.270000px;}
.yc8{bottom:363.450000px;}
.ya7{bottom:363.990000px;}
.y1c0{bottom:364.530000px;}
.y14a{bottom:365.430000px;}
.y13e{bottom:367.230000px;}
.y171{bottom:369.030000px;}
.y121{bottom:371.370000px;}
.y1e9{bottom:372.630000px;}
.yef{bottom:379.290000px;}
.y198{bottom:381.270000px;}
.y77{bottom:385.590000px;}
.ya6{bottom:386.310000px;}
.y1bf{bottom:387.390000px;}
.y13d{bottom:389.550000px;}
.y170{bottom:391.170000px;}
.y120{bottom:393.690000px;}
.y1e8{bottom:396.030000px;}
.yee{bottom:401.430000px;}
.y197{bottom:405.930000px;}
.y76{bottom:407.730000px;}
.yc7{bottom:407.910000px;}
.ya5{bottom:408.450000px;}
.y1be{bottom:410.250000px;}
.y13c{bottom:411.690000px;}
.y16f{bottom:413.490000px;}
.y11f{bottom:415.830000px;}
.yeb{bottom:416.025000px;}
.y1e7{bottom:419.250000px;}
.y75{bottom:430.050000px;}
.y196{bottom:430.410000px;}
.ya4{bottom:430.770000px;}
.y1bd{bottom:433.110000px;}
.y13b{bottom:434.010000px;}
.y16e{bottom:435.630000px;}
.y11e{bottom:438.150000px;}
.y1e6{bottom:442.695000px;}
.yea{bottom:447.915000px;}
.y74{bottom:452.235000px;}
.yc6{bottom:452.415000px;}
.ya3{bottom:452.955000px;}
.y195{bottom:454.935000px;}
.y13a{bottom:456.195000px;}
.y16d{bottom:457.995000px;}
.y11d{bottom:460.335000px;}
.ye9{bottom:464.295000px;}
.y1e5{bottom:466.095000px;}
.y73{bottom:474.555000px;}
.yc5{bottom:474.735000px;}
.ya2{bottom:475.275000px;}
.y139{bottom:478.515000px;}
.y1bc{bottom:479.055000px;}
.y194{bottom:479.595000px;}
.y16c{bottom:480.135000px;}
.ye8{bottom:480.855000px;}
.y11c{bottom:482.655000px;}
.y1e4{bottom:489.315000px;}
.y72{bottom:496.695000px;}
.yc4{bottom:496.875000px;}
.ya1{bottom:497.595000px;}
.y138{bottom:500.655000px;}
.y1bb{bottom:501.915000px;}
.y16b{bottom:502.455000px;}
.y193{bottom:504.075000px;}
.y11b{bottom:504.795000px;}
.ye7{bottom:512.535000px;}
.y1e3{bottom:512.715000px;}
.y71{bottom:519.015000px;}
.yc3{bottom:519.195000px;}
.ya0{bottom:519.735000px;}
.y137{bottom:522.975000px;}
.y16a{bottom:524.775000px;}
.y11a{bottom:527.115000px;}
.y192{bottom:528.555000px;}
.ye6{bottom:529.095000px;}
.y1e2{bottom:535.935000px;}
.y70{bottom:541.155000px;}
.yc2{bottom:541.335000px;}
.y9f{bottom:542.055000px;}
.y136{bottom:545.295000px;}
.ye5{bottom:545.475000px;}
.y169{bottom:546.915000px;}
.y1ba{bottom:547.635000px;}
.y119{bottom:549.435000px;}
.y191{bottom:553.215000px;}
.y1e1{bottom:559.335000px;}
.ye4{bottom:562.035000px;}
.y6f{bottom:563.475000px;}
.yc1{bottom:563.655000px;}
.y9e{bottom:564.195000px;}
.y135{bottom:567.435000px;}
.y168{bottom:569.235000px;}
.y1b9{bottom:570.495000px;}
.y118{bottom:571.575000px;}
.y190{bottom:577.695000px;}
.ye3{bottom:578.415000px;}
.y1e0{bottom:582.735000px;}
.y6e{bottom:585.795000px;}
.y9d{bottom:586.515000px;}
.y134{bottom:589.755000px;}
.y167{bottom:591.375000px;}
.y1b8{bottom:593.355000px;}
.y117{bottom:593.895000px;}
.y18f{bottom:602.175000px;}
.y1df{bottom:605.955000px;}
.y6d{bottom:607.935000px;}
.yc0{bottom:608.115000px;}
.y116{bottom:608.295000px;}
.y9c{bottom:608.655000px;}
.ye2{bottom:610.275000px;}
.y133{bottom:611.895000px;}
.y166{bottom:613.695000px;}
.y1b7{bottom:616.215000px;}
.ye1{bottom:626.655000px;}
.y18e{bottom:626.835000px;}
.y1de{bottom:629.355000px;}
.y6c{bottom:630.255000px;}
.ybf{bottom:630.435000px;}
.y9b{bottom:630.975000px;}
.y132{bottom:634.215000px;}
.y165{bottom:635.835000px;}
.y1b6{bottom:639.075000px;}
.y115{bottom:640.155000px;}
.ye0{bottom:643.215000px;}
.y18d{bottom:651.315000px;}
.y6b{bottom:652.395000px;}
.ybe{bottom:652.575000px;}
.y9a{bottom:653.295000px;}
.y131{bottom:656.355000px;}
.y114{bottom:656.535000px;}
.y164{bottom:658.155000px;}
.ydf{bottom:659.595000px;}
.y1b5{bottom:662.115000px;}
.y112{bottom:673.095000px;}
.y6a{bottom:674.715000px;}
.ybd{bottom:674.895000px;}
.y99{bottom:675.435000px;}
.y18c{bottom:676.005000px;}
.yde{bottom:676.185000px;}
.y130{bottom:678.705000px;}
.y163{bottom:680.505000px;}
.y1b4{bottom:685.005000px;}
.y111{bottom:689.505000px;}
.y69{bottom:696.885000px;}
.ybc{bottom:697.065000px;}
.y98{bottom:697.785000px;}
.y1dd{bottom:699.405000px;}
.y22{bottom:699.765000px;}
.y18b{bottom:700.485000px;}
.y12f{bottom:701.025000px;}
.y162{bottom:702.645000px;}
.y110{bottom:706.065000px;}
.ydd{bottom:707.865000px;}
.y21{bottom:710.025000px;}
.y68{bottom:719.205000px;}
.ybb{bottom:719.385000px;}
.y97{bottom:719.925000px;}
.y10f{bottom:722.445000px;}
.y1dc{bottom:722.625000px;}
.y12e{bottom:723.165000px;}
.ydc{bottom:724.425000px;}
.y161{bottom:724.965000px;}
.y1f{bottom:725.325000px;}
.y1b3{bottom:730.725000px;}
.y10e{bottom:740.085000px;}
.ydb{bottom:740.805000px;}
.y67{bottom:741.525000px;}
.y96{bottom:742.245000px;}
.y1d{bottom:742.425000px;}
.y12d{bottom:745.485000px;}
.y1db{bottom:746.025000px;}
.y160{bottom:747.105000px;}
.y18a{bottom:749.625000px;}
.y1b2{bottom:753.585000px;}
.yda{bottom:757.365000px;}
.y1b{bottom:760.785000px;}
.y66{bottom:763.665000px;}
.yba{bottom:763.845000px;}
.y95{bottom:764.385000px;}
.y10d{bottom:767.625000px;}
.y15f{bottom:768.345000px;}
.y1da{bottom:769.245000px;}
.yd8{bottom:773.745000px;}
.y189{bottom:774.105000px;}
.y1b1{bottom:776.445000px;}
.y19{bottom:777.705000px;}
.y65{bottom:785.985000px;}
.yb9{bottom:786.165000px;}
.y94{bottom:786.705000px;}
.y15e{bottom:789.225000px;}
.y10c{bottom:789.945000px;}
.y1d9{bottom:792.645000px;}
.y17{bottom:793.005000px;}
.y188{bottom:798.585000px;}
.y1b0{bottom:799.305000px;}
.y15{bottom:801.465000px;}
.y10b{bottom:804.345000px;}
.yd7{bottom:805.605000px;}
.y64{bottom:808.125000px;}
.yb8{bottom:808.305000px;}
.y93{bottom:809.025000px;}
.y15d{bottom:811.365000px;}
.y1d8{bottom:816.045000px;}
.y10a{bottom:820.905000px;}
.yd6{bottom:821.985000px;}
.y1af{bottom:822.165000px;}
.y187{bottom:823.245000px;}
.y63{bottom:830.445000px;}
.yb7{bottom:830.625000px;}
.y92{bottom:831.165000px;}
.y15c{bottom:833.685000px;}
.y109{bottom:837.285000px;}
.y1d7{bottom:839.265000px;}
.yd3{bottom:839.625000px;}
.y1ae{bottom:845.025000px;}
.y186{bottom:847.725000px;}
.y62{bottom:852.585000px;}
.yb6{bottom:852.765000px;}
.y91{bottom:853.485000px;}
.y108{bottom:853.845000px;}
.y15b{bottom:855.825000px;}
.y13{bottom:857.445000px;}
.y1d6{bottom:862.665000px;}
.y10{bottom:866.625000px;}
.y1ad{bottom:868.065000px;}
.y185{bottom:872.205000px;}
.y61{bottom:874.905000px;}
.yb5{bottom:875.085000px;}
.y90{bottom:875.625000px;}
.y15a{bottom:878.145000px;}
.y107{bottom:885.525000px;}
.y1d5{bottom:885.885000px;}
.y1ac{bottom:890.925000px;}
.y184{bottom:896.865000px;}
.y60{bottom:897.225000px;}
.yb4{bottom:897.585000px;}
.y8f{bottom:897.945000px;}
.y159{bottom:900.465000px;}
.y106{bottom:902.085000px;}
.y1d4{bottom:909.285000px;}
.y1ab{bottom:913.830000px;}
.y105{bottom:918.510000px;}
.y5f{bottom:919.410000px;}
.yb3{bottom:919.950000px;}
.y8e{bottom:920.130000px;}
.y183{bottom:921.390000px;}
.ye{bottom:922.650000px;}
.yb{bottom:927.870000px;}
.y1d3{bottom:932.730000px;}
.y104{bottom:935.070000px;}
.y1aa{bottom:936.690000px;}
.y5e{bottom:941.730000px;}
.y8d{bottom:942.450000px;}
.y158{bottom:944.970000px;}
.y182{bottom:945.870000px;}
.y1fd{bottom:948.030000px;}
.y103{bottom:951.450000px;}
.y1d2{bottom:955.950000px;}
.y1a9{bottom:959.550000px;}
.y5d{bottom:963.870000px;}
.y8c{bottom:964.590000px;}
.y157{bottom:967.110000px;}
.y181{bottom:970.890000px;}
.y1fc{bottom:971.070000px;}
.y1fb{bottom:975.570000px;}
.y1d1{bottom:979.350000px;}
.y1a8{bottom:982.410000px;}
.y102{bottom:983.310000px;}
.y5c{bottom:986.190000px;}
.y8b{bottom:986.910000px;}
.y156{bottom:988.350000px;}
.y180{bottom:995.370000px;}
.y1fa{bottom:996.990000px;}
.y101{bottom:999.690000px;}
.y1d0{bottom:1002.570000px;}
.y1a7{bottom:1005.270000px;}
.y5b{bottom:1008.330000px;}
.y8a{bottom:1009.230000px;}
.ya{bottom:1013.550000px;}
.y100{bottom:1016.250000px;}
.y1f9{bottom:1018.590000px;}
.y17f{bottom:1019.850000px;}
.y1cf{bottom:1025.970000px;}
.y1a6{bottom:1028.130000px;}
.y4{bottom:1030.290000px;}
.y5a{bottom:1030.650000px;}
.y89{bottom:1031.370000px;}
.yff{bottom:1032.630000px;}
.y1f8{bottom:1040.010000px;}
.y46{bottom:1043.280000px;}
.y17e{bottom:1044.510000px;}
.yfe{bottom:1049.190000px;}
.y1ce{bottom:1049.370000px;}
.y1a5{bottom:1051.170000px;}
.y59{bottom:1052.790000px;}
.y88{bottom:1053.690000px;}
.y1f7{bottom:1061.430000px;}
.y17d{bottom:1068.990000px;}
.y1cd{bottom:1072.590000px;}
.y1a4{bottom:1074.030000px;}
.y58{bottom:1075.110000px;}
.y87{bottom:1075.830000px;}
.yfd{bottom:1081.050000px;}
.y17c{bottom:1093.470000px;}
.y1cc{bottom:1095.990000px;}
.y1a3{bottom:1096.890000px;}
.y57{bottom:1097.430000px;}
.y86{bottom:1098.150000px;}
.y1f6{bottom:1099.590000px;}
.yfc{bottom:1115.070000px;}
.y17b{bottom:1118.130000px;}
.y1cb{bottom:1119.210000px;}
.y56{bottom:1119.570000px;}
.y1a2{bottom:1119.750000px;}
.y85{bottom:1120.290000px;}
.y1f5{bottom:1121.190000px;}
.y84{bottom:1142.610000px;}
.y55{bottom:1142.790000px;}
.y4f{bottom:1161.000000px;}
.y4d{bottom:1185.840000px;}
.h2b{height:1.999688px;}
.ha{height:5.205000px;}
.h21{height:6.825000px;}
.h12{height:8.460000px;}
.hf{height:9.180000px;}
.h1e{height:10.260000px;}
.hb{height:12.190430px;}
.h3b{height:15.285000px;}
.h14{height:15.300000px;}
.h40{height:15.322500px;}
.h41{height:15.330000px;}
.h3f{height:15.465000px;}
.h38{height:15.480000px;}
.h22{height:16.543828px;}
.h16{height:16.920000px;}
.h1b{height:17.100000px;}
.h23{height:17.265000px;}
.h31{height:17.640000px;}
.h18{height:18.360000px;}
.h29{height:19.245000px;}
.h27{height:19.425000px;}
.h13{height:21.055781px;}
.h10{height:22.975313px;}
.h25{height:25.365000px;}
.h32{height:27.898500px;}
.h2{height:28.798500px;}
.h24{height:29.145586px;}
.h3d{height:30.585000px;}
.h3a{height:30.600000px;}
.h3e{height:30.621000px;}
.h3c{height:30.765000px;}
.h39{height:30.780000px;}
.h1f{height:32.835938px;}
.h34{height:34.684453px;}
.h45{height:38.089687px;}
.h42{height:39.659766px;}
.h28{height:40.472227px;}
.h36{height:40.842773px;}
.h35{height:40.921875px;}
.h26{height:41.493516px;}
.h44{height:44.000156px;}
.h17{height:44.820000px;}
.hd{height:44.860781px;}
.h1a{height:45.695391px;}
.h43{height:45.813867px;}
.h37{height:46.080000px;}
.he{height:48.761719px;}
.h1d{height:49.253906px;}
.h19{height:50.100469px;}
.h3{height:50.597578px;}
.h15{height:51.284180px;}
.h2e{height:54.000000px;}
.h6{height:54.457031px;}
.h1c{height:54.507656px;}
.h11{height:55.980000px;}
.hc{height:56.002500px;}
.h30{height:56.084062px;}
.h2f{height:56.160000px;}
.h8{height:57.051211px;}
.h2d{height:63.180000px;}
.h9{height:64.853086px;}
.h4{height:70.664062px;}
.h7{height:71.265000px;}
.h33{height:72.562500px;}
.h2c{height:114.660000px;}
.h2a{height:122.385000px;}
.h5{height:124.590000px;}
.h20{height:345.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:47.160000px;}
.w10{width:52.189500px;}
.w18{width:71.805000px;}
.w1f{width:72.165000px;}
.w1e{width:77.745000px;}
.w1c{width:81.705000px;}
.w1a{width:81.720000px;}
.w1b{width:81.756000px;}
.w1d{width:85.881000px;}
.w16{width:87.645000px;}
.w15{width:88.416000px;}
.w14{width:92.160000px;}
.w4{width:101.329500px;}
.w17{width:130.701000px;}
.w22{width:135.021000px;}
.w21{width:141.829500px;}
.w9{width:154.429500px;}
.w19{width:194.059500px;}
.w13{width:204.319500px;}
.w8{width:243.915000px;}
.w3{width:265.155000px;}
.w11{width:280.320000px;}
.w24{width:324.019500px;}
.wc{width:325.815000px;}
.wf{width:333.555000px;}
.we{width:338.284500px;}
.w12{width:339.315000px;}
.wb{width:349.264500px;}
.w2{width:414.424500px;}
.w7{width:431.164500px;}
.wa{width:520.650000px;}
.wd{width:573.660000px;}
.w5{width:575.730000px;}
.w20{width:602.910000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.440000px;}
.x2{left:3.769500px;}
.x3c{left:5.400000px;}
.x16{left:6.465000px;}
.x8{left:7.725000px;}
.x36{left:10.440000px;}
.x1d{left:11.700000px;}
.x1b{left:13.680000px;}
.x35{left:15.465000px;}
.x29{left:16.725000px;}
.x26{left:18.180000px;}
.x2c{left:19.260000px;}
.x37{left:21.045000px;}
.x14{left:22.309500px;}
.x2e{left:23.940000px;}
.x28{left:26.100000px;}
.x1e{left:27.540000px;}
.x32{left:30.585000px;}
.x18{left:32.565000px;}
.x21{left:36.390000px;}
.xc{left:38.370000px;}
.x34{left:40.860000px;}
.x27{left:42.300000px;}
.x24{left:44.130000px;}
.x23{left:45.900000px;}
.x3b{left:47.550000px;}
.x3d{left:48.630000px;}
.x2a{left:61.230000px;}
.x2b{left:62.850000px;}
.x25{left:65.370000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x13{left:139.665000px;}
.x19{left:143.445000px;}
.x15{left:164.385000px;}
.x4{left:203.610000px;}
.x6{left:209.385000px;}
.xd{left:221.115000px;}
.x38{left:249.885000px;}
.x9{left:263.385000px;}
.xe{left:273.705000px;}
.x2d{left:302.115000px;}
.xf{left:303.405000px;}
.x1a{left:312.375000px;}
.x10{left:360.465000px;}
.x2f{left:383.835000px;}
.x39{left:384.915000px;}
.x1c{left:404.535000px;}
.x17{left:444.720000px;}
.x12{left:450.480000px;}
.xa{left:458.220000px;}
.xb{left:462.705000px;}
.x30{left:465.600000px;}
.x1f{left:492.960000px;}
.x3{left:521.220000px;}
.x7{left:540.120000px;}
.x31{left:547.320000px;}
.x11{left:573.990000px;}
.x20{left:580.620000px;}
.x33{left:633.210000px;}
.x22{left:711.330000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.546667pt;}
.v1{vertical-align:16.160000pt;}
.ls23{letter-spacing:-1.440000pt;}
.ls24{letter-spacing:-1.232000pt;}
.ls25{letter-spacing:-1.120000pt;}
.ls26{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-1.056000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.608000pt;}
.ls27{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.lse{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.135467pt;}
.ls20{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.464000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.595840pt;}
.ls8{letter-spacing:0.608000pt;}
.ls1b{letter-spacing:0.656000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls22{letter-spacing:0.992000pt;}
.ls6{letter-spacing:1.056000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.136000pt;}
.ls14{letter-spacing:1.232000pt;}
.ls18{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.296000pt;}
.lsa{letter-spacing:1.312000pt;}
.ls19{letter-spacing:1.360000pt;}
.ls2b{letter-spacing:1.376000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls28{letter-spacing:1.488000pt;}
.ls2a{letter-spacing:1.504000pt;}
.ls29{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.600000pt;}
.ws15{word-spacing:-24.192000pt;}
.ws4{word-spacing:-18.833707pt;}
.ws3{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.192640pt;}
.ws20{word-spacing:-13.728000pt;}
.ws1e{word-spacing:-13.680000pt;}
.ws21{word-spacing:-13.568000pt;}
.ws1d{word-spacing:-13.504000pt;}
.ws13{word-spacing:-13.152000pt;}
.ws22{word-spacing:-13.072000pt;}
.ws16{word-spacing:-12.928000pt;}
.wsa{word-spacing:-12.864000pt;}
.ws12{word-spacing:-12.816000pt;}
.wsb{word-spacing:-12.688000pt;}
.ws1f{word-spacing:-12.560000pt;}
.ws17{word-spacing:-12.352000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.032000pt;}
.ws0{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.584000pt;}
.ws6{word-spacing:-11.568000pt;}
.ws10{word-spacing:-11.520000pt;}
.wsf{word-spacing:-11.408000pt;}
.ws1c{word-spacing:-11.184000pt;}
.ws1b{word-spacing:-11.104000pt;}
.ws1a{word-spacing:-11.072000pt;}
.ws19{word-spacing:-10.960000pt;}
.ws23{word-spacing:-10.512000pt;}
.ws18{word-spacing:-10.336000pt;}
.wsc{word-spacing:-9.024000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.wse{word-spacing:-8.384000pt;}
.wsd{word-spacing:-7.712000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-2.101333pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.039147pt;}
._8{width:2.442880pt;}
._7{width:3.427413pt;}
._c{width:4.458453pt;}
._b{width:5.395627pt;}
._e{width:6.964267pt;}
._4{width:8.578560pt;}
._3{width:9.538560pt;}
._23{width:10.656000pt;}
._6{width:12.552533pt;}
._f{width:13.494613pt;}
._1b{width:14.834133pt;}
._10{width:15.851307pt;}
._a{width:17.158187pt;}
._9{width:18.318933pt;}
._13{width:19.245227pt;}
._d{width:20.210560pt;}
._14{width:21.854293pt;}
._11{width:22.903680pt;}
._2b{width:23.848533pt;}
._12{width:24.779520pt;}
._1f{width:26.232533pt;}
._20{width:27.991680pt;}
._21{width:29.643093pt;}
._39{width:30.551040pt;}
._1a{width:31.468587pt;}
._15{width:32.647680pt;}
._2{width:33.799680pt;}
._26{width:35.491413pt;}
._31{width:36.821120pt;}
._2e{width:38.088533pt;}
._2f{width:39.536213pt;}
._1e{width:40.432853pt;}
._1d{width:41.463680pt;}
._32{width:42.744533pt;}
._25{width:44.311467pt;}
._1c{width:45.243093pt;}
._17{width:49.051947pt;}
._19{width:49.963947pt;}
._18{width:51.444267pt;}
._2c{width:53.191680pt;}
._2d{width:54.545707pt;}
._24{width:55.970560pt;}
._30{width:57.606827pt;}
._36{width:58.638507pt;}
._28{width:60.182827pt;}
._29{width:61.865387pt;}
._2a{width:63.471147pt;}
._38{width:64.747307pt;}
._34{width:72.315093pt;}
._33{width:73.234347pt;}
._37{width:78.754773pt;}
._16{width:83.772800pt;}
._22{width:85.348267pt;}
._35{width:106.121387pt;}
._27{width:112.834560pt;}
.fsc{font-size:2.560000pt;}
.fs4{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fsf{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y4c{bottom:-16.346667pt;}
.y41{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:1.280000pt;}
.y14{bottom:1.440000pt;}
.y35{bottom:1.586667pt;}
.y18{bottom:1.920000pt;}
.y23{bottom:2.080000pt;}
.y4b{bottom:2.533333pt;}
.yed{bottom:2.706667pt;}
.y1a{bottom:2.720000pt;}
.y113{bottom:2.746667pt;}
.y1e{bottom:2.880000pt;}
.y4e{bottom:3.040000pt;}
.y20{bottom:3.200000pt;}
.y1c{bottom:4.000000pt;}
.y3e{bottom:5.746667pt;}
.y3b{bottom:5.906667pt;}
.y37{bottom:6.866667pt;}
.y33{bottom:9.586667pt;}
.y51{bottom:10.400000pt;}
.y39{bottom:11.186667pt;}
.y52{bottom:12.160000pt;}
.y16{bottom:12.320000pt;}
.y12{bottom:12.480000pt;}
.y9{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y53{bottom:14.720000pt;}
.yd{bottom:15.680000pt;}
.yec{bottom:16.306667pt;}
.yd5{bottom:16.320000pt;}
.yd9{bottom:16.480000pt;}
.y4a{bottom:24.293333pt;}
.y32{bottom:30.066667pt;}
.yd4{bottom:30.080000pt;}
.y11{bottom:37.280000pt;}
.y8{bottom:40.480000pt;}
.y54{bottom:42.240000pt;}
.y49{bottom:44.933333pt;}
.yc{bottom:47.360000pt;}
.y31{bottom:50.546667pt;}
.y3{bottom:51.840000pt;}
.y50{bottom:56.640000pt;}
.y48{bottom:65.413333pt;}
.y1{bottom:66.240000pt;}
.y7{bottom:68.160000pt;}
.y30{bottom:71.026667pt;}
.y47{bottom:86.533333pt;}
.y2f{bottom:91.546667pt;}
.y5{bottom:95.680000pt;}
.y6{bottom:95.840000pt;}
.yfb{bottom:99.840000pt;}
.y1ca{bottom:100.320000pt;}
.y1f4{bottom:103.200000pt;}
.y83{bottom:105.440000pt;}
.yd2{bottom:105.600000pt;}
.yb2{bottom:106.080000pt;}
.y155{bottom:108.320000pt;}
.y2e{bottom:111.866667pt;}
.y12c{bottom:112.640000pt;}
.y45{bottom:112.800000pt;}
.y149{bottom:113.280000pt;}
.yfa{bottom:119.680000pt;}
.y1c9{bottom:120.640000pt;}
.y1a1{bottom:120.800000pt;}
.y1f3{bottom:123.840000pt;}
.y82{bottom:125.120000pt;}
.yd1{bottom:125.280000pt;}
.yb1{bottom:125.920000pt;}
.y154{bottom:128.000000pt;}
.y12b{bottom:132.320000pt;}
.y2d{bottom:132.346667pt;}
.y17a{bottom:132.480000pt;}
.y148{bottom:133.120000pt;}
.y44{bottom:133.280000pt;}
.yf9{bottom:139.360000pt;}
.y1c8{bottom:140.960000pt;}
.y1a0{bottom:142.560000pt;}
.y1f2{bottom:144.640000pt;}
.y81{bottom:144.960000pt;}
.yd0{bottom:145.120000pt;}
.yb0{bottom:145.600000pt;}
.y153{bottom:147.840000pt;}
.y12a{bottom:152.160000pt;}
.y147{bottom:152.800000pt;}
.y2c{bottom:152.826667pt;}
.y43{bottom:153.760000pt;}
.yf8{bottom:159.200000pt;}
.y1c7{bottom:161.280000pt;}
.y19f{bottom:164.480000pt;}
.y80{bottom:164.640000pt;}
.ycf{bottom:164.800000pt;}
.y1f1{bottom:165.280000pt;}
.yaf{bottom:165.440000pt;}
.y152{bottom:167.520000pt;}
.y179{bottom:171.040000pt;}
.y129{bottom:172.000000pt;}
.y146{bottom:172.640000pt;}
.y2b{bottom:173.306667pt;}
.y42{bottom:174.240000pt;}
.yf7{bottom:178.880000pt;}
.y1c6{bottom:181.600000pt;}
.y7f{bottom:184.506667pt;}
.yce{bottom:184.666667pt;}
.y40{bottom:185.000000pt;}
.yae{bottom:185.146667pt;}
.y1f0{bottom:186.106667pt;}
.y19e{bottom:186.266667pt;}
.y151{bottom:187.386667pt;}
.y178{bottom:189.626667pt;}
.y128{bottom:191.706667pt;}
.y145{bottom:192.506667pt;}
.y2a{bottom:193.786667pt;}
.yf6{bottom:198.746667pt;}
.y1c5{bottom:201.946667pt;}
.y3f{bottom:202.280000pt;}
.y7e{bottom:204.346667pt;}
.yad{bottom:204.986667pt;}
.y1ef{bottom:206.906667pt;}
.y150{bottom:207.226667pt;}
.y19d{bottom:208.026667pt;}
.y177{bottom:209.306667pt;}
.y127{bottom:211.546667pt;}
.y144{bottom:212.186667pt;}
.y29{bottom:214.266667pt;}
.yf5{bottom:218.426667pt;}
.y3d{bottom:219.560000pt;}
.y1c4{bottom:222.266667pt;}
.y7d{bottom:224.026667pt;}
.ycd{bottom:224.186667pt;}
.yac{bottom:224.666667pt;}
.y14f{bottom:226.906667pt;}
.y1ee{bottom:227.546667pt;}
.y176{bottom:229.146667pt;}
.y19c{bottom:229.946667pt;}
.y126{bottom:231.226667pt;}
.y143{bottom:232.026667pt;}
.y28{bottom:234.586667pt;}
.y3c{bottom:236.680000pt;}
.yf4{bottom:238.266667pt;}
.y1c3{bottom:242.746667pt;}
.y7c{bottom:243.866667pt;}
.ycc{bottom:244.026667pt;}
.yab{bottom:244.506667pt;}
.y14e{bottom:246.746667pt;}
.y1ed{bottom:248.346667pt;}
.y175{bottom:248.826667pt;}
.y125{bottom:251.066667pt;}
.y142{bottom:251.706667pt;}
.y3a{bottom:253.960000pt;}
.y27{bottom:255.066667pt;}
.yf3{bottom:258.106667pt;}
.y1c2{bottom:263.066667pt;}
.y7b{bottom:263.546667pt;}
.ycb{bottom:263.706667pt;}
.yaa{bottom:264.346667pt;}
.y14d{bottom:266.426667pt;}
.y174{bottom:268.666667pt;}
.y1ec{bottom:268.986667pt;}
.y141{bottom:269.466667pt;}
.y124{bottom:270.746667pt;}
.y38{bottom:271.240000pt;}
.y19b{bottom:273.466667pt;}
.y26{bottom:275.546667pt;}
.yf2{bottom:277.786667pt;}
.y7a{bottom:283.386667pt;}
.yca{bottom:283.546667pt;}
.ya9{bottom:284.026667pt;}
.y14c{bottom:286.266667pt;}
.y140{bottom:286.906667pt;}
.y173{bottom:288.506667pt;}
.y1eb{bottom:289.786667pt;}
.y123{bottom:290.586667pt;}
.y36{bottom:293.800000pt;}
.y19a{bottom:295.386667pt;}
.y25{bottom:296.053333pt;}
.yf1{bottom:297.626667pt;}
.y79{bottom:303.066667pt;}
.yc9{bottom:303.226667pt;}
.y1c1{bottom:303.706667pt;}
.ya8{bottom:303.866667pt;}
.y14b{bottom:305.946667pt;}
.y13f{bottom:306.746667pt;}
.y172{bottom:308.186667pt;}
.y34{bottom:309.160000pt;}
.y122{bottom:310.426667pt;}
.y1ea{bottom:310.586667pt;}
.y24{bottom:315.240000pt;}
.y199{bottom:317.146667pt;}
.yf0{bottom:317.306667pt;}
.y78{bottom:322.906667pt;}
.yc8{bottom:323.066667pt;}
.ya7{bottom:323.546667pt;}
.y1c0{bottom:324.026667pt;}
.y14a{bottom:324.826667pt;}
.y13e{bottom:326.426667pt;}
.y171{bottom:328.026667pt;}
.y121{bottom:330.106667pt;}
.y1e9{bottom:331.226667pt;}
.yef{bottom:337.146667pt;}
.y198{bottom:338.906667pt;}
.y77{bottom:342.746667pt;}
.ya6{bottom:343.386667pt;}
.y1bf{bottom:344.346667pt;}
.y13d{bottom:346.266667pt;}
.y170{bottom:347.706667pt;}
.y120{bottom:349.946667pt;}
.y1e8{bottom:352.026667pt;}
.yee{bottom:356.826667pt;}
.y197{bottom:360.826667pt;}
.y76{bottom:362.426667pt;}
.yc7{bottom:362.586667pt;}
.ya5{bottom:363.066667pt;}
.y1be{bottom:364.666667pt;}
.y13c{bottom:365.946667pt;}
.y16f{bottom:367.546667pt;}
.y11f{bottom:369.626667pt;}
.yeb{bottom:369.800000pt;}
.y1e7{bottom:372.666667pt;}
.y75{bottom:382.266667pt;}
.y196{bottom:382.586667pt;}
.ya4{bottom:382.906667pt;}
.y1bd{bottom:384.986667pt;}
.y13b{bottom:385.786667pt;}
.y16e{bottom:387.226667pt;}
.y11e{bottom:389.466667pt;}
.y1e6{bottom:393.506667pt;}
.yea{bottom:398.146667pt;}
.y74{bottom:401.986667pt;}
.yc6{bottom:402.146667pt;}
.ya3{bottom:402.626667pt;}
.y195{bottom:404.386667pt;}
.y13a{bottom:405.506667pt;}
.y16d{bottom:407.106667pt;}
.y11d{bottom:409.186667pt;}
.ye9{bottom:412.706667pt;}
.y1e5{bottom:414.306667pt;}
.y73{bottom:421.826667pt;}
.yc5{bottom:421.986667pt;}
.ya2{bottom:422.466667pt;}
.y139{bottom:425.346667pt;}
.y1bc{bottom:425.826667pt;}
.y194{bottom:426.306667pt;}
.y16c{bottom:426.786667pt;}
.ye8{bottom:427.426667pt;}
.y11c{bottom:429.026667pt;}
.y1e4{bottom:434.946667pt;}
.y72{bottom:441.506667pt;}
.yc4{bottom:441.666667pt;}
.ya1{bottom:442.306667pt;}
.y138{bottom:445.026667pt;}
.y1bb{bottom:446.146667pt;}
.y16b{bottom:446.626667pt;}
.y193{bottom:448.066667pt;}
.y11b{bottom:448.706667pt;}
.ye7{bottom:455.586667pt;}
.y1e3{bottom:455.746667pt;}
.y71{bottom:461.346667pt;}
.yc3{bottom:461.506667pt;}
.ya0{bottom:461.986667pt;}
.y137{bottom:464.866667pt;}
.y16a{bottom:466.466667pt;}
.y11a{bottom:468.546667pt;}
.y192{bottom:469.826667pt;}
.ye6{bottom:470.306667pt;}
.y1e2{bottom:476.386667pt;}
.y70{bottom:481.026667pt;}
.yc2{bottom:481.186667pt;}
.y9f{bottom:481.826667pt;}
.y136{bottom:484.706667pt;}
.ye5{bottom:484.866667pt;}
.y169{bottom:486.146667pt;}
.y1ba{bottom:486.786667pt;}
.y119{bottom:488.386667pt;}
.y191{bottom:491.746667pt;}
.y1e1{bottom:497.186667pt;}
.ye4{bottom:499.586667pt;}
.y6f{bottom:500.866667pt;}
.yc1{bottom:501.026667pt;}
.y9e{bottom:501.506667pt;}
.y135{bottom:504.386667pt;}
.y168{bottom:505.986667pt;}
.y1b9{bottom:507.106667pt;}
.y118{bottom:508.066667pt;}
.y190{bottom:513.506667pt;}
.ye3{bottom:514.146667pt;}
.y1e0{bottom:517.986667pt;}
.y6e{bottom:520.706667pt;}
.y9d{bottom:521.346667pt;}
.y134{bottom:524.226667pt;}
.y167{bottom:525.666667pt;}
.y1b8{bottom:527.426667pt;}
.y117{bottom:527.906667pt;}
.y18f{bottom:535.266667pt;}
.y1df{bottom:538.626667pt;}
.y6d{bottom:540.386667pt;}
.yc0{bottom:540.546667pt;}
.y116{bottom:540.706667pt;}
.y9c{bottom:541.026667pt;}
.ye2{bottom:542.466667pt;}
.y133{bottom:543.906667pt;}
.y166{bottom:545.506667pt;}
.y1b7{bottom:547.746667pt;}
.ye1{bottom:557.026667pt;}
.y18e{bottom:557.186667pt;}
.y1de{bottom:559.426667pt;}
.y6c{bottom:560.226667pt;}
.ybf{bottom:560.386667pt;}
.y9b{bottom:560.866667pt;}
.y132{bottom:563.746667pt;}
.y165{bottom:565.186667pt;}
.y1b6{bottom:568.066667pt;}
.y115{bottom:569.026667pt;}
.ye0{bottom:571.746667pt;}
.y18d{bottom:578.946667pt;}
.y6b{bottom:579.906667pt;}
.ybe{bottom:580.066667pt;}
.y9a{bottom:580.706667pt;}
.y131{bottom:583.426667pt;}
.y114{bottom:583.586667pt;}
.y164{bottom:585.026667pt;}
.ydf{bottom:586.306667pt;}
.y1b5{bottom:588.546667pt;}
.y112{bottom:598.306667pt;}
.y6a{bottom:599.746667pt;}
.ybd{bottom:599.906667pt;}
.y99{bottom:600.386667pt;}
.y18c{bottom:600.893333pt;}
.yde{bottom:601.053333pt;}
.y130{bottom:603.293333pt;}
.y163{bottom:604.893333pt;}
.y1b4{bottom:608.893333pt;}
.y111{bottom:612.893333pt;}
.y69{bottom:619.453333pt;}
.ybc{bottom:619.613333pt;}
.y98{bottom:620.253333pt;}
.y1dd{bottom:621.693333pt;}
.y22{bottom:622.013333pt;}
.y18b{bottom:622.653333pt;}
.y12f{bottom:623.133333pt;}
.y162{bottom:624.573333pt;}
.y110{bottom:627.613333pt;}
.ydd{bottom:629.213333pt;}
.y21{bottom:631.133333pt;}
.y68{bottom:639.293333pt;}
.ybb{bottom:639.453333pt;}
.y97{bottom:639.933333pt;}
.y10f{bottom:642.173333pt;}
.y1dc{bottom:642.333333pt;}
.y12e{bottom:642.813333pt;}
.ydc{bottom:643.933333pt;}
.y161{bottom:644.413333pt;}
.y1f{bottom:644.733333pt;}
.y1b3{bottom:649.533333pt;}
.y10e{bottom:657.853333pt;}
.ydb{bottom:658.493333pt;}
.y67{bottom:659.133333pt;}
.y96{bottom:659.773333pt;}
.y1d{bottom:659.933333pt;}
.y12d{bottom:662.653333pt;}
.y1db{bottom:663.133333pt;}
.y160{bottom:664.093333pt;}
.y18a{bottom:666.333333pt;}
.y1b2{bottom:669.853333pt;}
.yda{bottom:673.213333pt;}
.y1b{bottom:676.253333pt;}
.y66{bottom:678.813333pt;}
.yba{bottom:678.973333pt;}
.y95{bottom:679.453333pt;}
.y10d{bottom:682.333333pt;}
.y15f{bottom:682.973333pt;}
.y1da{bottom:683.773333pt;}
.yd8{bottom:687.773333pt;}
.y189{bottom:688.093333pt;}
.y1b1{bottom:690.173333pt;}
.y19{bottom:691.293333pt;}
.y65{bottom:698.653333pt;}
.yb9{bottom:698.813333pt;}
.y94{bottom:699.293333pt;}
.y15e{bottom:701.533333pt;}
.y10c{bottom:702.173333pt;}
.y1d9{bottom:704.573333pt;}
.y17{bottom:704.893333pt;}
.y188{bottom:709.853333pt;}
.y1b0{bottom:710.493333pt;}
.y15{bottom:712.413333pt;}
.y10b{bottom:714.973333pt;}
.yd7{bottom:716.093333pt;}
.y64{bottom:718.333333pt;}
.yb8{bottom:718.493333pt;}
.y93{bottom:719.133333pt;}
.y15d{bottom:721.213333pt;}
.y1d8{bottom:725.373333pt;}
.y10a{bottom:729.693333pt;}
.yd6{bottom:730.653333pt;}
.y1af{bottom:730.813333pt;}
.y187{bottom:731.773333pt;}
.y63{bottom:738.173333pt;}
.yb7{bottom:738.333333pt;}
.y92{bottom:738.813333pt;}
.y15c{bottom:741.053333pt;}
.y109{bottom:744.253333pt;}
.y1d7{bottom:746.013333pt;}
.yd3{bottom:746.333333pt;}
.y1ae{bottom:751.133333pt;}
.y186{bottom:753.533333pt;}
.y62{bottom:757.853333pt;}
.yb6{bottom:758.013333pt;}
.y91{bottom:758.653333pt;}
.y108{bottom:758.973333pt;}
.y15b{bottom:760.733333pt;}
.y13{bottom:762.173333pt;}
.y1d6{bottom:766.813333pt;}
.y10{bottom:770.333333pt;}
.y1ad{bottom:771.613333pt;}
.y185{bottom:775.293333pt;}
.y61{bottom:777.693333pt;}
.yb5{bottom:777.853333pt;}
.y90{bottom:778.333333pt;}
.y15a{bottom:780.573333pt;}
.y107{bottom:787.133333pt;}
.y1d5{bottom:787.453333pt;}
.y1ac{bottom:791.933333pt;}
.y184{bottom:797.213333pt;}
.y60{bottom:797.533333pt;}
.yb4{bottom:797.853333pt;}
.y8f{bottom:798.173333pt;}
.y159{bottom:800.413333pt;}
.y106{bottom:801.853333pt;}
.y1d4{bottom:808.253333pt;}
.y1ab{bottom:812.293333pt;}
.y105{bottom:816.453333pt;}
.y5f{bottom:817.253333pt;}
.yb3{bottom:817.733333pt;}
.y8e{bottom:817.893333pt;}
.y183{bottom:819.013333pt;}
.ye{bottom:820.133333pt;}
.yb{bottom:824.773333pt;}
.y1d3{bottom:829.093333pt;}
.y104{bottom:831.173333pt;}
.y1aa{bottom:832.613333pt;}
.y5e{bottom:837.093333pt;}
.y8d{bottom:837.733333pt;}
.y158{bottom:839.973333pt;}
.y182{bottom:840.773333pt;}
.y1fd{bottom:842.693333pt;}
.y103{bottom:845.733333pt;}
.y1d2{bottom:849.733333pt;}
.y1a9{bottom:852.933333pt;}
.y5d{bottom:856.773333pt;}
.y8c{bottom:857.413333pt;}
.y157{bottom:859.653333pt;}
.y181{bottom:863.013333pt;}
.y1fc{bottom:863.173333pt;}
.y1fb{bottom:867.173333pt;}
.y1d1{bottom:870.533333pt;}
.y1a8{bottom:873.253333pt;}
.y102{bottom:874.053333pt;}
.y5c{bottom:876.613333pt;}
.y8b{bottom:877.253333pt;}
.y156{bottom:878.533333pt;}
.y180{bottom:884.773333pt;}
.y1fa{bottom:886.213333pt;}
.y101{bottom:888.613333pt;}
.y1d0{bottom:891.173333pt;}
.y1a7{bottom:893.573333pt;}
.y5b{bottom:896.293333pt;}
.y8a{bottom:897.093333pt;}
.ya{bottom:900.933333pt;}
.y100{bottom:903.333333pt;}
.y1f9{bottom:905.413333pt;}
.y17f{bottom:906.533333pt;}
.y1cf{bottom:911.973333pt;}
.y1a6{bottom:913.893333pt;}
.y4{bottom:915.813333pt;}
.y5a{bottom:916.133333pt;}
.y89{bottom:916.773333pt;}
.yff{bottom:917.893333pt;}
.y1f8{bottom:924.453333pt;}
.y46{bottom:927.360000pt;}
.y17e{bottom:928.453333pt;}
.yfe{bottom:932.613333pt;}
.y1ce{bottom:932.773333pt;}
.y1a5{bottom:934.373333pt;}
.y59{bottom:935.813333pt;}
.y88{bottom:936.613333pt;}
.y1f7{bottom:943.493333pt;}
.y17d{bottom:950.213333pt;}
.y1cd{bottom:953.413333pt;}
.y1a4{bottom:954.693333pt;}
.y58{bottom:955.653333pt;}
.y87{bottom:956.293333pt;}
.yfd{bottom:960.933333pt;}
.y17c{bottom:971.973333pt;}
.y1cc{bottom:974.213333pt;}
.y1a3{bottom:975.013333pt;}
.y57{bottom:975.493333pt;}
.y86{bottom:976.133333pt;}
.y1f6{bottom:977.413333pt;}
.yfc{bottom:991.173333pt;}
.y17b{bottom:993.893333pt;}
.y1cb{bottom:994.853333pt;}
.y56{bottom:995.173333pt;}
.y1a2{bottom:995.333333pt;}
.y85{bottom:995.813333pt;}
.y1f5{bottom:996.613333pt;}
.y84{bottom:1015.653333pt;}
.y55{bottom:1015.813333pt;}
.y4f{bottom:1032.000000pt;}
.y4d{bottom:1054.080000pt;}
.h2b{height:1.777500pt;}
.ha{height:4.626667pt;}
.h21{height:6.066667pt;}
.h12{height:7.520000pt;}
.hf{height:8.160000pt;}
.h1e{height:9.120000pt;}
.hb{height:10.835938pt;}
.h3b{height:13.586667pt;}
.h14{height:13.600000pt;}
.h40{height:13.620000pt;}
.h41{height:13.626667pt;}
.h3f{height:13.746667pt;}
.h38{height:13.760000pt;}
.h22{height:14.705625pt;}
.h16{height:15.040000pt;}
.h1b{height:15.200000pt;}
.h23{height:15.346667pt;}
.h31{height:15.680000pt;}
.h18{height:16.320000pt;}
.h29{height:17.106667pt;}
.h27{height:17.266667pt;}
.h13{height:18.716250pt;}
.h10{height:20.422500pt;}
.h25{height:22.546667pt;}
.h32{height:24.798667pt;}
.h2{height:25.598667pt;}
.h24{height:25.907188pt;}
.h3d{height:27.186667pt;}
.h3a{height:27.200000pt;}
.h3e{height:27.218667pt;}
.h3c{height:27.346667pt;}
.h39{height:27.360000pt;}
.h1f{height:29.187500pt;}
.h34{height:30.830625pt;}
.h45{height:33.857500pt;}
.h42{height:35.253125pt;}
.h28{height:35.975313pt;}
.h36{height:36.304688pt;}
.h35{height:36.375000pt;}
.h26{height:36.883125pt;}
.h44{height:39.111250pt;}
.h17{height:39.840000pt;}
.hd{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h43{height:40.723437pt;}
.h37{height:40.960000pt;}
.he{height:43.343750pt;}
.h1d{height:43.781250pt;}
.h19{height:44.533750pt;}
.h3{height:44.975625pt;}
.h15{height:45.585938pt;}
.h2e{height:48.000000pt;}
.h6{height:48.406250pt;}
.h1c{height:48.451250pt;}
.h11{height:49.760000pt;}
.hc{height:49.780000pt;}
.h30{height:49.852500pt;}
.h2f{height:49.920000pt;}
.h8{height:50.712187pt;}
.h2d{height:56.160000pt;}
.h9{height:57.647187pt;}
.h4{height:62.812500pt;}
.h7{height:63.346667pt;}
.h33{height:64.500000pt;}
.h2c{height:101.920000pt;}
.h2a{height:108.786667pt;}
.h5{height:110.746667pt;}
.h20{height:306.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:41.920000pt;}
.w10{width:46.390667pt;}
.w18{width:63.826667pt;}
.w1f{width:64.146667pt;}
.w1e{width:69.106667pt;}
.w1c{width:72.626667pt;}
.w1a{width:72.640000pt;}
.w1b{width:72.672000pt;}
.w1d{width:76.338667pt;}
.w16{width:77.906667pt;}
.w15{width:78.592000pt;}
.w14{width:81.920000pt;}
.w4{width:90.070667pt;}
.w17{width:116.178667pt;}
.w22{width:120.018667pt;}
.w21{width:126.070667pt;}
.w9{width:137.270667pt;}
.w19{width:172.497333pt;}
.w13{width:181.617333pt;}
.w8{width:216.813333pt;}
.w3{width:235.693333pt;}
.w11{width:249.173333pt;}
.w24{width:288.017333pt;}
.wc{width:289.613333pt;}
.wf{width:296.493333pt;}
.we{width:300.697333pt;}
.w12{width:301.613333pt;}
.wb{width:310.457333pt;}
.w2{width:368.377333pt;}
.w7{width:383.257333pt;}
.wa{width:462.800000pt;}
.wd{width:509.920000pt;}
.w5{width:511.760000pt;}
.w20{width:535.920000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.280000pt;}
.x2{left:3.350667pt;}
.x3c{left:4.800000pt;}
.x16{left:5.746667pt;}
.x8{left:6.866667pt;}
.x36{left:9.280000pt;}
.x1d{left:10.400000pt;}
.x1b{left:12.160000pt;}
.x35{left:13.746667pt;}
.x29{left:14.866667pt;}
.x26{left:16.160000pt;}
.x2c{left:17.120000pt;}
.x37{left:18.706667pt;}
.x14{left:19.830667pt;}
.x2e{left:21.280000pt;}
.x28{left:23.200000pt;}
.x1e{left:24.480000pt;}
.x32{left:27.186667pt;}
.x18{left:28.946667pt;}
.x21{left:32.346667pt;}
.xc{left:34.106667pt;}
.x34{left:36.320000pt;}
.x27{left:37.600000pt;}
.x24{left:39.226667pt;}
.x23{left:40.800000pt;}
.x3b{left:42.266667pt;}
.x3d{left:43.226667pt;}
.x2a{left:54.426667pt;}
.x2b{left:55.866667pt;}
.x25{left:58.106667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x13{left:124.146667pt;}
.x19{left:127.506667pt;}
.x15{left:146.120000pt;}
.x4{left:180.986667pt;}
.x6{left:186.120000pt;}
.xd{left:196.546667pt;}
.x38{left:222.120000pt;}
.x9{left:234.120000pt;}
.xe{left:243.293333pt;}
.x2d{left:268.546667pt;}
.xf{left:269.693333pt;}
.x1a{left:277.666667pt;}
.x10{left:320.413333pt;}
.x2f{left:341.186667pt;}
.x39{left:342.146667pt;}
.x1c{left:359.586667pt;}
.x17{left:395.306667pt;}
.x12{left:400.426667pt;}
.xa{left:407.306667pt;}
.xb{left:411.293333pt;}
.x30{left:413.866667pt;}
.x1f{left:438.186667pt;}
.x3{left:463.306667pt;}
.x7{left:480.106667pt;}
.x31{left:486.506667pt;}
.x11{left:510.213333pt;}
.x20{left:516.106667pt;}
.x33{left:562.853333pt;}
.x22{left:632.293333pt;}
}




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