
    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_4336aa79a73e18609a4502f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4c74c0be347464b74edc6b76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_79f3f3f2e0d1b49dca2a7175.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_11c8fe16a024c4e94556e588.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_80838c35dc4b3e1c5899ab00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915000;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_9fbc16b004f84662bb047b18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;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_89ec8d5d7b9764450956024f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_2c73ef7defd84ec674b3c71f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_2ceef55ee13bedb47c95ea91.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_53deca48b4cc50a4d69ea15e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_89ec8d5d7b9764450956024f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_9fbc16b004f84662bb047b18.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_2ceef55ee13bedb47c95ea91.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_c8dca7e420e9f51165e7a098.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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_a5a6939dfe50185280dd9929.woff2')format("woff");}.fff{font-family:fff;line-height:0.991000;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_6d55340e47e312a29a4500b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.993000;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_89b646e320610ebac23ef965.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.993000;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_fbef715b19e3968130c38907.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.993000;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_9fbc16b004f84662bb047b18.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.743000;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_89ec8d5d7b9764450956024f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100098;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_2ceef55ee13bedb47c95ea91.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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_53deca48b4cc50a4d69ea15e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.915000;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_7a09e9b15c11f450e4f2344c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.980000;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_89ec8d5d7b9764450956024f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.100098;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_9fbc16b004f84662bb047b18.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2ceef55ee13bedb47c95ea91.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f49cc20ce2edfb464624a6d8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.915000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.637000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.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;}
}
.ws37{word-spacing:-10.080000px;}
.ws5a{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws1{word-spacing:-7.920000px;}
.ws20{word-spacing:-3.180000px;}
.ws27{word-spacing:-2.280000px;}
.ws5c{word-spacing:-2.052000px;}
.ws29{word-spacing:-1.860000px;}
.ws28{word-spacing:-1.740000px;}
.ws3b{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.638000px;}
.ws4a{word-spacing:-1.200000px;}
.ws32{word-spacing:-0.840000px;}
.ws1d{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.702000px;}
.wsc{word-spacing:-0.540000px;}
.ws4{word-spacing:-0.378000px;}
.ws10{word-spacing:-0.300000px;}
.ws4f{word-spacing:-0.180000px;}
.ws39{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws50{word-spacing:0.060000px;}
.ws11{word-spacing:0.180000px;}
.ws4d{word-spacing:0.240000px;}
.ws24{word-spacing:0.300000px;}
.wsf{word-spacing:0.420000px;}
.ws54{word-spacing:0.432000px;}
.ws60{word-spacing:0.594000px;}
.ws48{word-spacing:0.600000px;}
.ws5{word-spacing:0.756000px;}
.wse{word-spacing:1.020000px;}
.ws5e{word-spacing:1.026000px;}
.ws42{word-spacing:1.140000px;}
.ws3e{word-spacing:1.200000px;}
.ws14{word-spacing:1.560000px;}
.ws59{word-spacing:1.782000px;}
.ws3a{word-spacing:1.920000px;}
.ws5f{word-spacing:2.106000px;}
.wsb{word-spacing:2.280000px;}
.ws3c{word-spacing:2.580000px;}
.wsa{word-spacing:2.760000px;}
.ws18{word-spacing:3.000000px;}
.ws30{word-spacing:3.300000px;}
.ws1a{word-spacing:3.480000px;}
.ws45{word-spacing:3.660000px;}
.ws5d{word-spacing:3.888000px;}
.ws49{word-spacing:3.900000px;}
.ws3{word-spacing:4.050000px;}
.ws7{word-spacing:4.158000px;}
.ws56{word-spacing:4.536000px;}
.ws5b{word-spacing:4.698000px;}
.ws51{word-spacing:4.860000px;}
.ws44{word-spacing:4.920000px;}
.ws26{word-spacing:4.980000px;}
.ws58{word-spacing:5.184000px;}
.ws1b{word-spacing:5.220000px;}
.ws40{word-spacing:5.280000px;}
.ws36{word-spacing:5.580000px;}
.ws4c{word-spacing:5.700000px;}
.ws47{word-spacing:5.880000px;}
.ws17{word-spacing:6.000000px;}
.ws41{word-spacing:6.420000px;}
.ws16{word-spacing:6.540000px;}
.ws4b{word-spacing:6.660000px;}
.ws23{word-spacing:6.840000px;}
.ws19{word-spacing:6.960000px;}
.ws57{word-spacing:6.966000px;}
.ws2a{word-spacing:7.080000px;}
.ws1f{word-spacing:7.140000px;}
.ws3f{word-spacing:7.260000px;}
.ws61{word-spacing:7.398000px;}
.ws33{word-spacing:7.560000px;}
.ws2d{word-spacing:8.040000px;}
.ws25{word-spacing:8.460000px;}
.ws2e{word-spacing:8.700000px;}
.ws3d{word-spacing:9.360000px;}
.ws34{word-spacing:9.420000px;}
.wsd{word-spacing:9.600000px;}
.ws22{word-spacing:9.840000px;}
.ws35{word-spacing:10.140000px;}
.ws43{word-spacing:10.200000px;}
.ws55{word-spacing:10.422000px;}
.ws1c{word-spacing:10.740000px;}
.ws4e{word-spacing:10.920000px;}
.ws63{word-spacing:11.070000px;}
.ws38{word-spacing:11.400000px;}
.ws21{word-spacing:11.580000px;}
.ws52{word-spacing:13.284000px;}
.ws46{word-spacing:13.320000px;}
.ws15{word-spacing:13.740000px;}
.ws31{word-spacing:13.800000px;}
.ws2f{word-spacing:21.840000px;}
.ws2c{word-spacing:32.100000px;}
.ws2b{word-spacing:68.440200px;}
.ws1e{word-spacing:69.608400px;}
.ws6{word-spacing:71.316000px;}
.ws12{word-spacing:77.845200px;}
._19{margin-left:-7.380000px;}
._18{margin-left:-5.724000px;}
._17{margin-left:-4.014000px;}
._b{margin-left:-2.820000px;}
._0{margin-left:-1.630800px;}
._1{width:1.220400px;}
._2{width:2.548800px;}
._7{width:3.595200px;}
._3{width:4.816800px;}
._9{width:5.955600px;}
._5{width:7.062000px;}
._a{width:8.532000px;}
._1a{width:9.810000px;}
._8{width:10.836000px;}
._f{width:11.916000px;}
._6{width:13.218000px;}
._e{width:14.970000px;}
._c{width:16.632000px;}
._10{width:18.648000px;}
._11{width:20.088000px;}
._14{width:22.056000px;}
._12{width:23.454000px;}
._16{width:24.582000px;}
._15{width:25.698000px;}
._13{width:26.868000px;}
._4{width:1337.568600px;}
._d{width:1520.100000px;}
.fcc{color:rgb(4,6,6);}
.fca{color:rgb(56,55,55);}
.fc9{color:rgb(101,151,45);}
.fc8{color:rgb(53,145,165);}
.fc6{color:rgb(64,172,173);}
.fc5{color:rgb(254,255,253);}
.fc4{color:rgb(103,104,102);}
.fc2{color:rgb(224,63,93);}
.fcb{color:rgb(80,80,80);}
.fc7{color:rgb(46,46,46);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(3,3,3);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:46.590600px;}
.fs7{font-size:47.520000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:57.921000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:2.551050px;}
.y134{bottom:2.555550px;}
.y138{bottom:2.557950px;}
.y136{bottom:2.563500px;}
.y10c{bottom:2.601900px;}
.y116{bottom:2.603700px;}
.y114{bottom:2.604900px;}
.y107{bottom:2.606850px;}
.y109{bottom:2.608050px;}
.y10e{bottom:2.608350px;}
.y103{bottom:2.609250px;}
.y110{bottom:2.609700px;}
.y112{bottom:2.611500px;}
.y105{bottom:2.612700px;}
.y11a{bottom:2.613000px;}
.y118{bottom:2.614200px;}
.y126{bottom:3.176250px;}
.y12d{bottom:3.178200px;}
.y120{bottom:3.179550px;}
.y130{bottom:3.180000px;}
.y11e{bottom:3.180750px;}
.y123{bottom:3.182850px;}
.y11c{bottom:3.183300px;}
.y128{bottom:3.184350px;}
.y12a{bottom:3.185850px;}
.y22{bottom:25.267500px;}
.y49{bottom:27.364200px;}
.y23{bottom:28.176750px;}
.y20{bottom:61.653600px;}
.y18{bottom:62.137800px;}
.y16b{bottom:64.868250px;}
.y174{bottom:75.120300px;}
.y1a5{bottom:76.868550px;}
.y1ef{bottom:80.128200px;}
.y48{bottom:82.065300px;}
.y16a{bottom:82.868250px;}
.yc2{bottom:84.616350px;}
.y1da{bottom:92.128350px;}
.y173{bottom:93.120300px;}
.y1a4{bottom:94.868550px;}
.y1ee{bottom:98.128200px;}
.y1fa{bottom:99.120300px;}
.y137{bottom:99.324000px;}
.y47{bottom:100.065300px;}
.y17{bottom:100.589700px;}
.y169{bottom:100.868250px;}
.y14d{bottom:101.624250px;}
.yc1{bottom:102.616350px;}
.yf8{bottom:104.128200px;}
.y9a{bottom:107.624250px;}
.y70{bottom:109.608600px;}
.y1d9{bottom:110.128350px;}
.y172{bottom:111.120300px;}
.y1a3{bottom:112.868550px;}
.y217{bottom:112.894200px;}
.y135{bottom:113.650500px;}
.y1ed{bottom:116.128200px;}
.y16{bottom:116.789700px;}
.y1f9{bottom:117.120300px;}
.y46{bottom:118.065300px;}
.y168{bottom:118.868250px;}
.y14c{bottom:119.624250px;}
.yc0{bottom:120.616350px;}
.yf7{bottom:122.128200px;}
.ydf{bottom:123.120300px;}
.y99{bottom:125.624250px;}
.y216{bottom:127.462950px;}
.y6f{bottom:127.608600px;}
.y133{bottom:127.861500px;}
.y1d8{bottom:128.128350px;}
.y171{bottom:129.120300px;}
.y1a2{bottom:130.868550px;}
.y15{bottom:132.989700px;}
.y1ec{bottom:134.128200px;}
.y45{bottom:136.065300px;}
.y167{bottom:136.868250px;}
.y14b{bottom:137.624250px;}
.ybf{bottom:138.616350px;}
.yf6{bottom:140.128200px;}
.yde{bottom:141.120300px;}
.y131{bottom:142.653000px;}
.y98{bottom:143.624250px;}
.y6e{bottom:145.608600px;}
.y1d7{bottom:146.128350px;}
.y17a{bottom:147.120300px;}
.y14{bottom:149.189700px;}
.y1eb{bottom:152.128200px;}
.y215{bottom:154.031700px;}
.y44{bottom:154.065300px;}
.y166{bottom:154.868400px;}
.y14a{bottom:155.624250px;}
.ybe{bottom:156.616350px;}
.yf5{bottom:158.128200px;}
.ydd{bottom:159.120300px;}
.y1a1{bottom:160.868550px;}
.y97{bottom:161.624250px;}
.y6d{bottom:163.608600px;}
.y179{bottom:165.120300px;}
.y13{bottom:165.389700px;}
.yfe{bottom:169.003500px;}
.y1ea{bottom:170.128200px;}
.y43{bottom:172.065300px;}
.y165{bottom:172.868400px;}
.y149{bottom:173.624250px;}
.ybd{bottom:174.616350px;}
.yf4{bottom:176.128200px;}
.y1d6{bottom:176.128350px;}
.ydc{bottom:177.120300px;}
.y1a0{bottom:178.868550px;}
.y96{bottom:179.624250px;}
.y214{bottom:180.600450px;}
.y12{bottom:181.589700px;}
.y6c{bottom:181.608600px;}
.yfb{bottom:182.615550px;}
.y178{bottom:183.120300px;}
.y1f8{bottom:185.624250px;}
.y42{bottom:190.065300px;}
.y148{bottom:191.624250px;}
.ybc{bottom:192.616350px;}
.yf3{bottom:194.128200px;}
.ydb{bottom:195.120300px;}
.y213{bottom:195.169200px;}
.y19f{bottom:196.868550px;}
.y101{bottom:197.426400px;}
.y95{bottom:197.624250px;}
.y11{bottom:197.789700px;}
.y6b{bottom:199.608600px;}
.y1e9{bottom:200.128200px;}
.y177{bottom:201.120300px;}
.y164{bottom:202.868400px;}
.y1f7{bottom:203.624250px;}
.y1d5{bottom:206.128350px;}
.y41{bottom:208.065300px;}
.y147{bottom:209.624250px;}
.y212{bottom:209.737950px;}
.ybb{bottom:210.616350px;}
.yf2{bottom:212.128200px;}
.yda{bottom:213.120300px;}
.y10{bottom:213.989700px;}
.y19e{bottom:214.868550px;}
.y94{bottom:215.624250px;}
.y6a{bottom:217.608600px;}
.y176{bottom:219.120300px;}
.y163{bottom:220.868400px;}
.y1f6{bottom:221.624250px;}
.y1d4{bottom:224.128350px;}
.y40{bottom:226.065300px;}
.yba{bottom:228.616350px;}
.yf1{bottom:230.128200px;}
.yf{bottom:230.189700px;}
.yd9{bottom:231.120300px;}
.y19d{bottom:232.868550px;}
.y93{bottom:233.624250px;}
.y69{bottom:235.608600px;}
.y211{bottom:236.306700px;}
.y175{bottom:237.120300px;}
.y162{bottom:238.868400px;}
.y146{bottom:239.624250px;}
.y1d3{bottom:242.128350px;}
.ye{bottom:246.389700px;}
.yb9{bottom:246.616350px;}
.yf0{bottom:248.128200px;}
.yd8{bottom:249.120300px;}
.y19c{bottom:250.868550px;}
.y92{bottom:251.624250px;}
.y68{bottom:253.608600px;}
.y12f{bottom:254.632500px;}
.y3f{bottom:256.065300px;}
.y161{bottom:256.868400px;}
.y145{bottom:257.624250px;}
.y1b7{bottom:260.128200px;}
.y1d2{bottom:260.128350px;}
.y210{bottom:262.875450px;}
.yb8{bottom:264.616350px;}
.yef{bottom:266.128200px;}
.yd7{bottom:267.120300px;}
.y19b{bottom:268.868550px;}
.y91{bottom:269.624250px;}
.y234{bottom:270.897750px;}
.y67{bottom:271.608600px;}
.y12c{bottom:272.301000px;}
.y3e{bottom:274.065300px;}
.y160{bottom:274.868400px;}
.y144{bottom:275.624250px;}
.y20f{bottom:277.444200px;}
.y1b6{bottom:278.128200px;}
.y1d1{bottom:278.128350px;}
.yd{bottom:278.789700px;}
.yb7{bottom:282.616350px;}
.yee{bottom:284.128200px;}
.y12e{bottom:284.463300px;}
.yd6{bottom:285.120300px;}
.y19a{bottom:286.868550px;}
.y90{bottom:287.624250px;}
.y66{bottom:289.608600px;}
.y3d{bottom:292.065300px;}
.y15f{bottom:292.868400px;}
.y12b{bottom:293.296650px;}
.y143{bottom:293.624250px;}
.y1b5{bottom:296.128200px;}
.y1d0{bottom:296.128350px;}
.y233{bottom:297.466500px;}
.yed{bottom:302.128200px;}
.yd5{bottom:303.120300px;}
.y20e{bottom:304.012950px;}
.y199{bottom:304.868550px;}
.y170{bottom:305.624250px;}
.y129{bottom:307.777500px;}
.y3c{bottom:310.065300px;}
.y15e{bottom:310.868400px;}
.y142{bottom:311.624250px;}
.yb6{bottom:312.616350px;}
.y1b4{bottom:314.128200px;}
.y1cf{bottom:314.128350px;}
.yc{bottom:316.455150px;}
.y8f{bottom:317.624250px;}
.y20d{bottom:318.581700px;}
.y65{bottom:319.608600px;}
.yec{bottom:320.128200px;}
.yd4{bottom:321.120300px;}
.y198{bottom:322.868550px;}
.y16f{bottom:323.624250px;}
.y232{bottom:324.035400px;}
.y127{bottom:325.587000px;}
.y3b{bottom:328.065300px;}
.y15d{bottom:328.868400px;}
.y141{bottom:329.624250px;}
.y1b3{bottom:332.128200px;}
.y1ce{bottom:332.128350px;}
.y8e{bottom:335.624250px;}
.yeb{bottom:338.128200px;}
.y231{bottom:338.604150px;}
.yd3{bottom:339.120300px;}
.y16e{bottom:341.624250px;}
.y125{bottom:343.252500px;}
.y20c{bottom:345.150450px;}
.y3a{bottom:346.065300px;}
.y15c{bottom:346.868400px;}
.yb{bottom:349.755150px;}
.y1b2{bottom:350.128200px;}
.y1cd{bottom:350.128350px;}
.yb5{bottom:351.120300px;}
.y197{bottom:352.868550px;}
.y8d{bottom:353.624250px;}
.yea{bottom:356.128200px;}
.y64{bottom:358.112700px;}
.y140{bottom:359.624250px;}
.y20b{bottom:359.719200px;}
.y122{bottom:361.063500px;}
.y39{bottom:364.065300px;}
.y15b{bottom:364.868400px;}
.y230{bottom:365.172750px;}
.ya{bottom:365.955150px;}
.y1b1{bottom:368.128200px;}
.y1cc{bottom:368.128350px;}
.yb4{bottom:369.120300px;}
.y196{bottom:370.868550px;}
.y8c{bottom:371.624250px;}
.y124{bottom:373.079700px;}
.ye9{bottom:374.128200px;}
.y63{bottom:376.112700px;}
.y13f{bottom:377.624250px;}
.y1e8{bottom:380.128200px;}
.y121{bottom:381.912900px;}
.y38{bottom:382.065300px;}
.y9{bottom:382.155150px;}
.y15a{bottom:382.868400px;}
.y1b0{bottom:386.128200px;}
.y20a{bottom:386.287950px;}
.yb3{bottom:387.120300px;}
.y195{bottom:388.868550px;}
.y8b{bottom:389.624250px;}
.y22f{bottom:391.741500px;}
.ye8{bottom:392.128200px;}
.y62{bottom:394.112700px;}
.y13e{bottom:395.624250px;}
.y11f{bottom:396.541500px;}
.y1e7{bottom:398.128200px;}
.y1cb{bottom:398.128350px;}
.y8{bottom:398.355150px;}
.y37{bottom:400.065300px;}
.y209{bottom:400.856700px;}
.yb2{bottom:405.120300px;}
.y194{bottom:406.868550px;}
.y8a{bottom:407.624250px;}
.ye7{bottom:410.128200px;}
.y61{bottom:412.112700px;}
.y159{bottom:412.868400px;}
.y13d{bottom:413.624250px;}
.y11d{bottom:414.207000px;}
.y7{bottom:414.555150px;}
.y1af{bottom:416.128200px;}
.y1ca{bottom:416.128350px;}
.y36{bottom:418.065300px;}
.y22e{bottom:418.310250px;}
.yb1{bottom:423.120300px;}
.y193{bottom:424.868550px;}
.y89{bottom:425.624250px;}
.y208{bottom:427.425450px;}
.ye6{bottom:428.128200px;}
.y60{bottom:430.112700px;}
.y6{bottom:430.755000px;}
.y158{bottom:430.868400px;}
.y13c{bottom:431.624250px;}
.y11b{bottom:432.597000px;}
.y22d{bottom:432.879150px;}
.y1e6{bottom:434.128200px;}
.y1c9{bottom:434.128350px;}
.y35{bottom:436.065300px;}
.yb0{bottom:441.120300px;}
.y218{bottom:441.391950px;}
.y207{bottom:441.994200px;}
.y192{bottom:442.868550px;}
.y88{bottom:443.624250px;}
.ye5{bottom:446.128200px;}
.y5{bottom:446.955150px;}
.y5f{bottom:448.112700px;}
.y157{bottom:448.868400px;}
.y13b{bottom:449.624250px;}
.y1e5{bottom:452.128200px;}
.y1c8{bottom:452.128350px;}
.y34{bottom:454.065300px;}
.yaf{bottom:459.120300px;}
.y22c{bottom:459.447900px;}
.y191{bottom:460.868550px;}
.y87{bottom:461.624250px;}
.yfd{bottom:462.088500px;}
.y4{bottom:463.155150px;}
.y1ae{bottom:464.128200px;}
.y5e{bottom:466.112700px;}
.y156{bottom:466.868400px;}
.y13a{bottom:467.624250px;}
.y1e4{bottom:470.128200px;}
.y1c7{bottom:470.128350px;}
.y33{bottom:472.065300px;}
.y22b{bottom:474.016500px;}
.yfa{bottom:475.700550px;}
.ye4{bottom:476.128200px;}
.yae{bottom:477.120300px;}
.y190{bottom:478.868550px;}
.y3{bottom:479.355150px;}
.y86{bottom:479.624250px;}
.y1ad{bottom:482.128200px;}
.y5d{bottom:484.112700px;}
.y155{bottom:484.868400px;}
.y1e3{bottom:488.128200px;}
.y1c6{bottom:488.128350px;}
.y32{bottom:490.065300px;}
.y100{bottom:490.511400px;}
.y1f5{bottom:491.624250px;}
.ye3{bottom:494.128200px;}
.yad{bottom:495.120300px;}
.y2{bottom:495.555150px;}
.y18f{bottom:496.868550px;}
.y85{bottom:497.624250px;}
.y1ac{bottom:500.128200px;}
.y22a{bottom:500.585250px;}
.y5c{bottom:502.112700px;}
.y154{bottom:502.868400px;}
.y1c5{bottom:506.128350px;}
.y1f4{bottom:509.624250px;}
.ye2{bottom:512.128200px;}
.yac{bottom:513.120300px;}
.y18e{bottom:514.868550px;}
.y229{bottom:515.154000px;}
.yd2{bottom:515.624250px;}
.y1ab{bottom:518.128200px;}
.y31{bottom:520.065300px;}
.y5b{bottom:520.112700px;}
.y153{bottom:520.868400px;}
.y84{bottom:527.624250px;}
.y1{bottom:527.955150px;}
.ye1{bottom:530.128200px;}
.yab{bottom:531.120300px;}
.yd1{bottom:533.624250px;}
.y1aa{bottom:536.128200px;}
.y1c4{bottom:536.128350px;}
.y30{bottom:538.065300px;}
.y5a{bottom:538.112700px;}
.y152{bottom:538.868250px;}
.y228{bottom:541.722900px;}
.y18d{bottom:544.868550px;}
.y1f3{bottom:545.624250px;}
.y119{bottom:545.790000px;}
.ye0{bottom:548.128200px;}
.yaa{bottom:549.120300px;}
.yd0{bottom:551.624250px;}
.y1a9{bottom:554.128200px;}
.y1c3{bottom:554.128350px;}
.y2f{bottom:556.065300px;}
.y59{bottom:556.112700px;}
.y227{bottom:556.291500px;}
.y151{bottom:556.868250px;}
.y117{bottom:560.283000px;}
.y18c{bottom:562.868550px;}
.y1f2{bottom:563.624250px;}
.y83{bottom:566.128200px;}
.ycf{bottom:569.624250px;}
.y1a8{bottom:572.128200px;}
.y1c2{bottom:572.128350px;}
.y2e{bottom:574.065300px;}
.y58{bottom:574.112700px;}
.y150{bottom:574.868250px;}
.y115{bottom:574.896000px;}
.ya9{bottom:579.120300px;}
.y1a{bottom:580.396200px;}
.y18b{bottom:580.868550px;}
.y1f1{bottom:581.624250px;}
.y226{bottom:582.860250px;}
.y82{bottom:584.128200px;}
.yce{bottom:587.624250px;}
.y113{bottom:589.389000px;}
.y1a7{bottom:590.128200px;}
.y1c1{bottom:590.128350px;}
.y2d{bottom:592.065300px;}
.y14f{bottom:592.868250px;}
.y225{bottom:597.429000px;}
.y18a{bottom:598.868550px;}
.y16d{bottom:599.624250px;}
.y81{bottom:602.128200px;}
.y206{bottom:602.128350px;}
.y1c{bottom:602.662200px;}
.y111{bottom:604.000500px;}
.y57{bottom:604.112700px;}
.ycd{bottom:605.624250px;}
.y1a6{bottom:608.128200px;}
.y1c0{bottom:608.128350px;}
.y2c{bottom:610.065300px;}
.y1b{bottom:615.262200px;}
.y189{bottom:616.868550px;}
.ya8{bottom:617.624250px;}
.y10f{bottom:618.496500px;}
.y80{bottom:620.128200px;}
.y205{bottom:620.128350px;}
.y56{bottom:622.112700px;}
.y14e{bottom:622.868250px;}
.ycc{bottom:623.624250px;}
.y224{bottom:623.997750px;}
.y1bf{bottom:626.128350px;}
.y2b{bottom:628.065300px;}
.y1f0{bottom:629.624250px;}
.y10d{bottom:633.108000px;}
.y188{bottom:634.868550px;}
.ya7{bottom:635.624250px;}
.y19{bottom:637.656150px;}
.y7f{bottom:638.128200px;}
.y204{bottom:638.128350px;}
.y223{bottom:638.566650px;}
.y55{bottom:640.112700px;}
.y2a{bottom:646.065300px;}
.y10b{bottom:647.601000px;}
.y187{bottom:652.868550px;}
.ya6{bottom:653.624250px;}
.y7e{bottom:656.128200px;}
.y1be{bottom:656.128350px;}
.y54{bottom:658.112700px;}
.y10a{bottom:662.214000px;}
.y29{bottom:664.065300px;}
.y222{bottom:665.135250px;}
.y1e2{bottom:668.128200px;}
.y203{bottom:668.128350px;}
.y186{bottom:670.868550px;}
.ya5{bottom:671.624250px;}
.y7d{bottom:674.128200px;}
.y1bd{bottom:674.128350px;}
.y53{bottom:676.112700px;}
.y108{bottom:676.707000px;}
.y221{bottom:679.704000px;}
.y28{bottom:682.065300px;}
.y202{bottom:686.128350px;}
.y185{bottom:688.868550px;}
.ya4{bottom:689.624250px;}
.y106{bottom:691.318500px;}
.y7c{bottom:692.128200px;}
.y1bc{bottom:692.128350px;}
.y52{bottom:694.112700px;}
.y220{bottom:694.272750px;}
.y1e1{bottom:698.128200px;}
.y27{bottom:700.065300px;}
.y1f{bottom:700.594050px;}
.y201{bottom:704.128350px;}
.y104{bottom:705.814500px;}
.y184{bottom:706.868550px;}
.ya3{bottom:707.624250px;}
.y7b{bottom:710.128200px;}
.y1bb{bottom:710.128350px;}
.y51{bottom:712.112700px;}
.y1e0{bottom:716.128200px;}
.y26{bottom:718.065300px;}
.y21f{bottom:720.841500px;}
.y102{bottom:720.900000px;}
.ya2{bottom:725.624250px;}
.ycb{bottom:728.128200px;}
.y1ba{bottom:728.128350px;}
.y50{bottom:730.112700px;}
.y1df{bottom:734.128200px;}
.y200{bottom:734.128350px;}
.y25{bottom:736.065300px;}
.y183{bottom:737.624400px;}
.y1e{bottom:738.394050px;}
.y7a{bottom:740.128200px;}
.ya1{bottom:743.624250px;}
.yca{bottom:746.128200px;}
.y1b9{bottom:746.128350px;}
.y21e{bottom:747.410400px;}
.y4f{bottom:748.112700px;}
.yfc{bottom:749.696700px;}
.y1de{bottom:752.128200px;}
.y1ff{bottom:752.128350px;}
.y79{bottom:758.128200px;}
.ya0{bottom:761.624250px;}
.y21d{bottom:761.979150px;}
.yf9{bottom:763.308750px;}
.yc9{bottom:764.128200px;}
.y1b8{bottom:764.128350px;}
.y24{bottom:766.065300px;}
.y4e{bottom:766.112700px;}
.y1dd{bottom:770.128200px;}
.y1fe{bottom:770.128350px;}
.y78{bottom:776.128200px;}
.y182{bottom:776.128350px;}
.y1d{bottom:776.194050px;}
.yff{bottom:778.119450px;}
.y9f{bottom:779.624250px;}
.yc8{bottom:782.128200px;}
.y4d{bottom:784.112700px;}
.y1dc{bottom:788.128200px;}
.y21c{bottom:788.547750px;}
.y77{bottom:794.128200px;}
.y181{bottom:794.128350px;}
.y9e{bottom:797.624250px;}
.yc7{bottom:800.128200px;}
.y1fd{bottom:800.128350px;}
.y4c{bottom:802.112700px;}
.y1db{bottom:806.128200px;}
.y16c{bottom:809.624250px;}
.y76{bottom:812.128200px;}
.y180{bottom:812.128350px;}
.y21b{bottom:815.116650px;}
.y9d{bottom:815.624250px;}
.yc6{bottom:818.128200px;}
.y1fc{bottom:818.128350px;}
.y75{bottom:830.128200px;}
.y17f{bottom:830.128350px;}
.y4b{bottom:832.868550px;}
.y9c{bottom:833.624250px;}
.yc5{bottom:836.128200px;}
.y1fb{bottom:836.128350px;}
.y21a{bottom:841.685250px;}
.y139{bottom:845.624250px;}
.y74{bottom:848.128200px;}
.y17e{bottom:848.128350px;}
.yc4{bottom:854.128200px;}
.y9b{bottom:863.624250px;}
.y4a{bottom:863.624400px;}
.y73{bottom:866.128200px;}
.y17d{bottom:866.128350px;}
.y219{bottom:868.254150px;}
.yc3{bottom:872.128200px;}
.y72{bottom:884.128200px;}
.y17c{bottom:884.128350px;}
.y71{bottom:902.128200px;}
.y17b{bottom:902.128350px;}
.y21{bottom:965.135850px;}
.h1b{height:14.209500px;}
.h19{height:14.326500px;}
.h1c{height:14.328000px;}
.h14{height:14.491500px;}
.h13{height:14.493000px;}
.h11{height:14.613000px;}
.h17{height:17.665500px;}
.h15{height:17.811000px;}
.hf{height:29.268000px;}
.h10{height:30.870000px;}
.h7{height:34.146000px;}
.h18{height:35.476500px;}
.h1a{height:37.878158px;}
.h12{height:38.633760px;}
.he{height:38.928000px;}
.h9{height:39.690000px;}
.hc{height:39.945112px;}
.ha{height:43.195312px;}
.h1d{height:43.308000px;}
.h5{height:43.872000px;}
.h3{height:43.902000px;}
.h4{height:46.227000px;}
.hb{height:46.875000px;}
.h16{height:47.089773px;}
.h2{height:48.780000px;}
.h6{height:49.356000px;}
.h1e{height:52.098000px;}
.hd{height:54.840000px;}
.h8{height:115.164000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:91.239000px;}
.w6{width:111.208500px;}
.w2{width:126.046500px;}
.w3{width:133.293000px;}
.w7{width:137.440500px;}
.w8{width:213.151500px;}
.w5{width:239.070000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xc{left:13.181100px;}
.x26{left:14.382750px;}
.x1a{left:15.449850px;}
.x25{left:16.872600px;}
.x2c{left:18.839400px;}
.x23{left:23.052450px;}
.x27{left:25.667250px;}
.x37{left:28.075200px;}
.x28{left:30.068100px;}
.x20{left:31.970100px;}
.x22{left:35.172750px;}
.x38{left:37.632600px;}
.x24{left:39.094050px;}
.x1d{left:40.401000px;}
.x21{left:43.487250px;}
.x2d{left:44.890950px;}
.x17{left:45.984750px;}
.x1b{left:48.003450px;}
.x1c{left:50.022750px;}
.x32{left:52.428750px;}
.x1f{left:54.779400px;}
.x29{left:57.749400px;}
.x1e{left:62.969550px;}
.x30{left:65.169000px;}
.xb{left:67.056600px;}
.x2a{left:75.312750px;}
.x9{left:77.171100px;}
.x31{left:79.941450px;}
.x11{left:85.464600px;}
.x34{left:91.669050px;}
.x2f{left:97.174500px;}
.x2{left:106.299150px;}
.x35{left:108.751200px;}
.x12{left:127.559100px;}
.x8{left:133.936950px;}
.xa{left:168.377850px;}
.xd{left:170.078700px;}
.x3e{left:184.244550px;}
.x39{left:197.078850px;}
.x13{left:210.902850px;}
.xe{left:212.603700px;}
.x3a{left:239.598450px;}
.x5{left:324.286650px;}
.x4{left:351.617250px;}
.x6{left:361.756050px;}
.x7{left:375.596850px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.xf{left:413.253600px;}
.x16{left:435.322650px;}
.x2e{left:460.671900px;}
.x33{left:466.460250px;}
.x3c{left:549.027300px;}
.x15{left:550.741800px;}
.x3b{left:560.411700px;}
.x18{left:562.081500px;}
.x36{left:573.462000px;}
.x3d{left:653.431650px;}
.x2b{left:675.261000px;}
.x19{left:695.376000px;}
.x14{left:724.298850px;}
.x10{left:726.349650px;}
@media print{
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.344000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ws37{word-spacing:-8.960000pt;}
.ws5a{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws20{word-spacing:-2.826667pt;}
.ws27{word-spacing:-2.026667pt;}
.ws5c{word-spacing:-1.824000pt;}
.ws29{word-spacing:-1.653333pt;}
.ws28{word-spacing:-1.546667pt;}
.ws3b{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.456000pt;}
.ws4a{word-spacing:-1.066667pt;}
.ws32{word-spacing:-0.746667pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.624000pt;}
.wsc{word-spacing:-0.480000pt;}
.ws4{word-spacing:-0.336000pt;}
.ws10{word-spacing:-0.266667pt;}
.ws4f{word-spacing:-0.160000pt;}
.ws39{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws50{word-spacing:0.053333pt;}
.ws11{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.213333pt;}
.ws24{word-spacing:0.266667pt;}
.wsf{word-spacing:0.373333pt;}
.ws54{word-spacing:0.384000pt;}
.ws60{word-spacing:0.528000pt;}
.ws48{word-spacing:0.533333pt;}
.ws5{word-spacing:0.672000pt;}
.wse{word-spacing:0.906667pt;}
.ws5e{word-spacing:0.912000pt;}
.ws42{word-spacing:1.013333pt;}
.ws3e{word-spacing:1.066667pt;}
.ws14{word-spacing:1.386667pt;}
.ws59{word-spacing:1.584000pt;}
.ws3a{word-spacing:1.706667pt;}
.ws5f{word-spacing:1.872000pt;}
.wsb{word-spacing:2.026667pt;}
.ws3c{word-spacing:2.293333pt;}
.wsa{word-spacing:2.453333pt;}
.ws18{word-spacing:2.666667pt;}
.ws30{word-spacing:2.933333pt;}
.ws1a{word-spacing:3.093333pt;}
.ws45{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.456000pt;}
.ws49{word-spacing:3.466667pt;}
.ws3{word-spacing:3.600000pt;}
.ws7{word-spacing:3.696000pt;}
.ws56{word-spacing:4.032000pt;}
.ws5b{word-spacing:4.176000pt;}
.ws51{word-spacing:4.320000pt;}
.ws44{word-spacing:4.373333pt;}
.ws26{word-spacing:4.426667pt;}
.ws58{word-spacing:4.608000pt;}
.ws1b{word-spacing:4.640000pt;}
.ws40{word-spacing:4.693333pt;}
.ws36{word-spacing:4.960000pt;}
.ws4c{word-spacing:5.066667pt;}
.ws47{word-spacing:5.226667pt;}
.ws17{word-spacing:5.333333pt;}
.ws41{word-spacing:5.706667pt;}
.ws16{word-spacing:5.813333pt;}
.ws4b{word-spacing:5.920000pt;}
.ws23{word-spacing:6.080000pt;}
.ws19{word-spacing:6.186667pt;}
.ws57{word-spacing:6.192000pt;}
.ws2a{word-spacing:6.293333pt;}
.ws1f{word-spacing:6.346667pt;}
.ws3f{word-spacing:6.453333pt;}
.ws61{word-spacing:6.576000pt;}
.ws33{word-spacing:6.720000pt;}
.ws2d{word-spacing:7.146667pt;}
.ws25{word-spacing:7.520000pt;}
.ws2e{word-spacing:7.733333pt;}
.ws3d{word-spacing:8.320000pt;}
.ws34{word-spacing:8.373333pt;}
.wsd{word-spacing:8.533333pt;}
.ws22{word-spacing:8.746667pt;}
.ws35{word-spacing:9.013333pt;}
.ws43{word-spacing:9.066667pt;}
.ws55{word-spacing:9.264000pt;}
.ws1c{word-spacing:9.546667pt;}
.ws4e{word-spacing:9.706667pt;}
.ws63{word-spacing:9.840000pt;}
.ws38{word-spacing:10.133333pt;}
.ws21{word-spacing:10.293333pt;}
.ws52{word-spacing:11.808000pt;}
.ws46{word-spacing:11.840000pt;}
.ws15{word-spacing:12.213333pt;}
.ws31{word-spacing:12.266667pt;}
.ws2f{word-spacing:19.413333pt;}
.ws2c{word-spacing:28.533333pt;}
.ws2b{word-spacing:60.835733pt;}
.ws1e{word-spacing:61.874133pt;}
.ws6{word-spacing:63.392000pt;}
.ws12{word-spacing:69.195733pt;}
._19{margin-left:-6.560000pt;}
._18{margin-left:-5.088000pt;}
._17{margin-left:-3.568000pt;}
._b{margin-left:-2.506667pt;}
._0{margin-left:-1.449600pt;}
._1{width:1.084800pt;}
._2{width:2.265600pt;}
._7{width:3.195733pt;}
._3{width:4.281600pt;}
._9{width:5.293867pt;}
._5{width:6.277333pt;}
._a{width:7.584000pt;}
._1a{width:8.720000pt;}
._8{width:9.632000pt;}
._f{width:10.592000pt;}
._6{width:11.749333pt;}
._e{width:13.306667pt;}
._c{width:14.784000pt;}
._10{width:16.576000pt;}
._11{width:17.856000pt;}
._14{width:19.605333pt;}
._12{width:20.848000pt;}
._16{width:21.850667pt;}
._15{width:22.842667pt;}
._13{width:23.882667pt;}
._4{width:1188.949867pt;}
._d{width:1351.200000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:41.413867pt;}
.fs7{font-size:42.240000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:51.485333pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:2.267600pt;}
.y134{bottom:2.271600pt;}
.y138{bottom:2.273733pt;}
.y136{bottom:2.278667pt;}
.y10c{bottom:2.312800pt;}
.y116{bottom:2.314400pt;}
.y114{bottom:2.315467pt;}
.y107{bottom:2.317200pt;}
.y109{bottom:2.318267pt;}
.y10e{bottom:2.318533pt;}
.y103{bottom:2.319333pt;}
.y110{bottom:2.319733pt;}
.y112{bottom:2.321333pt;}
.y105{bottom:2.322400pt;}
.y11a{bottom:2.322667pt;}
.y118{bottom:2.323733pt;}
.y126{bottom:2.823333pt;}
.y12d{bottom:2.825067pt;}
.y120{bottom:2.826267pt;}
.y130{bottom:2.826667pt;}
.y11e{bottom:2.827333pt;}
.y123{bottom:2.829200pt;}
.y11c{bottom:2.829600pt;}
.y128{bottom:2.830533pt;}
.y12a{bottom:2.831867pt;}
.y22{bottom:22.460000pt;}
.y49{bottom:24.323733pt;}
.y23{bottom:25.046000pt;}
.y20{bottom:54.803200pt;}
.y18{bottom:55.233600pt;}
.y16b{bottom:57.660667pt;}
.y174{bottom:66.773600pt;}
.y1a5{bottom:68.327600pt;}
.y1ef{bottom:71.225067pt;}
.y48{bottom:72.946933pt;}
.y16a{bottom:73.660667pt;}
.yc2{bottom:75.214533pt;}
.y1da{bottom:81.891867pt;}
.y173{bottom:82.773600pt;}
.y1a4{bottom:84.327600pt;}
.y1ee{bottom:87.225067pt;}
.y1fa{bottom:88.106933pt;}
.y137{bottom:88.288000pt;}
.y47{bottom:88.946933pt;}
.y17{bottom:89.413067pt;}
.y169{bottom:89.660667pt;}
.y14d{bottom:90.332667pt;}
.yc1{bottom:91.214533pt;}
.yf8{bottom:92.558400pt;}
.y9a{bottom:95.666000pt;}
.y70{bottom:97.429867pt;}
.y1d9{bottom:97.891867pt;}
.y172{bottom:98.773600pt;}
.y1a3{bottom:100.327600pt;}
.y217{bottom:100.350400pt;}
.y135{bottom:101.022667pt;}
.y1ed{bottom:103.225067pt;}
.y16{bottom:103.813067pt;}
.y1f9{bottom:104.106933pt;}
.y46{bottom:104.946933pt;}
.y168{bottom:105.660667pt;}
.y14c{bottom:106.332667pt;}
.yc0{bottom:107.214533pt;}
.yf7{bottom:108.558400pt;}
.ydf{bottom:109.440267pt;}
.y99{bottom:111.666000pt;}
.y216{bottom:113.300400pt;}
.y6f{bottom:113.429867pt;}
.y133{bottom:113.654667pt;}
.y1d8{bottom:113.891867pt;}
.y171{bottom:114.773600pt;}
.y1a2{bottom:116.327600pt;}
.y15{bottom:118.213067pt;}
.y1ec{bottom:119.225067pt;}
.y45{bottom:120.946933pt;}
.y167{bottom:121.660667pt;}
.y14b{bottom:122.332667pt;}
.ybf{bottom:123.214533pt;}
.yf6{bottom:124.558400pt;}
.yde{bottom:125.440267pt;}
.y131{bottom:126.802667pt;}
.y98{bottom:127.666000pt;}
.y6e{bottom:129.429867pt;}
.y1d7{bottom:129.891867pt;}
.y17a{bottom:130.773600pt;}
.y14{bottom:132.613067pt;}
.y1eb{bottom:135.225067pt;}
.y215{bottom:136.917067pt;}
.y44{bottom:136.946933pt;}
.y166{bottom:137.660800pt;}
.y14a{bottom:138.332667pt;}
.ybe{bottom:139.214533pt;}
.yf5{bottom:140.558400pt;}
.ydd{bottom:141.440267pt;}
.y1a1{bottom:142.994267pt;}
.y97{bottom:143.666000pt;}
.y6d{bottom:145.429867pt;}
.y179{bottom:146.773600pt;}
.y13{bottom:147.013067pt;}
.yfe{bottom:150.225333pt;}
.y1ea{bottom:151.225067pt;}
.y43{bottom:152.946933pt;}
.y165{bottom:153.660800pt;}
.y149{bottom:154.332667pt;}
.ybd{bottom:155.214533pt;}
.yf4{bottom:156.558400pt;}
.y1d6{bottom:156.558533pt;}
.ydc{bottom:157.440267pt;}
.y1a0{bottom:158.994267pt;}
.y96{bottom:159.666000pt;}
.y214{bottom:160.533733pt;}
.y12{bottom:161.413067pt;}
.y6c{bottom:161.429867pt;}
.yfb{bottom:162.324933pt;}
.y178{bottom:162.773600pt;}
.y1f8{bottom:164.999333pt;}
.y42{bottom:168.946933pt;}
.y148{bottom:170.332667pt;}
.ybc{bottom:171.214533pt;}
.yf3{bottom:172.558400pt;}
.ydb{bottom:173.440267pt;}
.y213{bottom:173.483733pt;}
.y19f{bottom:174.994267pt;}
.y101{bottom:175.490133pt;}
.y95{bottom:175.666000pt;}
.y11{bottom:175.813067pt;}
.y6b{bottom:177.429867pt;}
.y1e9{bottom:177.891733pt;}
.y177{bottom:178.773600pt;}
.y164{bottom:180.327467pt;}
.y1f7{bottom:180.999333pt;}
.y1d5{bottom:183.225200pt;}
.y41{bottom:184.946933pt;}
.y147{bottom:186.332667pt;}
.y212{bottom:186.433733pt;}
.ybb{bottom:187.214533pt;}
.yf2{bottom:188.558400pt;}
.yda{bottom:189.440267pt;}
.y10{bottom:190.213067pt;}
.y19e{bottom:190.994267pt;}
.y94{bottom:191.666000pt;}
.y6a{bottom:193.429867pt;}
.y176{bottom:194.773600pt;}
.y163{bottom:196.327467pt;}
.y1f6{bottom:196.999333pt;}
.y1d4{bottom:199.225200pt;}
.y40{bottom:200.946933pt;}
.yba{bottom:203.214533pt;}
.yf1{bottom:204.558400pt;}
.yf{bottom:204.613067pt;}
.yd9{bottom:205.440267pt;}
.y19d{bottom:206.994267pt;}
.y93{bottom:207.666000pt;}
.y69{bottom:209.429867pt;}
.y211{bottom:210.050400pt;}
.y175{bottom:210.773600pt;}
.y162{bottom:212.327467pt;}
.y146{bottom:212.999333pt;}
.y1d3{bottom:215.225200pt;}
.ye{bottom:219.013067pt;}
.yb9{bottom:219.214533pt;}
.yf0{bottom:220.558400pt;}
.yd8{bottom:221.440267pt;}
.y19c{bottom:222.994267pt;}
.y92{bottom:223.666000pt;}
.y68{bottom:225.429867pt;}
.y12f{bottom:226.340000pt;}
.y3f{bottom:227.613600pt;}
.y161{bottom:228.327467pt;}
.y145{bottom:228.999333pt;}
.y1b7{bottom:231.225067pt;}
.y1d2{bottom:231.225200pt;}
.y210{bottom:233.667067pt;}
.yb8{bottom:235.214533pt;}
.yef{bottom:236.558400pt;}
.yd7{bottom:237.440267pt;}
.y19b{bottom:238.994267pt;}
.y91{bottom:239.666000pt;}
.y234{bottom:240.798000pt;}
.y67{bottom:241.429867pt;}
.y12c{bottom:242.045333pt;}
.y3e{bottom:243.613600pt;}
.y160{bottom:244.327467pt;}
.y144{bottom:244.999333pt;}
.y20f{bottom:246.617067pt;}
.y1b6{bottom:247.225067pt;}
.y1d1{bottom:247.225200pt;}
.yd{bottom:247.813067pt;}
.yb7{bottom:251.214533pt;}
.yee{bottom:252.558400pt;}
.y12e{bottom:252.856267pt;}
.yd6{bottom:253.440267pt;}
.y19a{bottom:254.994267pt;}
.y90{bottom:255.666000pt;}
.y66{bottom:257.429867pt;}
.y3d{bottom:259.613600pt;}
.y15f{bottom:260.327467pt;}
.y12b{bottom:260.708133pt;}
.y143{bottom:260.999333pt;}
.y1b5{bottom:263.225067pt;}
.y1d0{bottom:263.225200pt;}
.y233{bottom:264.414667pt;}
.yed{bottom:268.558400pt;}
.yd5{bottom:269.440267pt;}
.y20e{bottom:270.233733pt;}
.y199{bottom:270.994267pt;}
.y170{bottom:271.666000pt;}
.y129{bottom:273.580000pt;}
.y3c{bottom:275.613600pt;}
.y15e{bottom:276.327467pt;}
.y142{bottom:276.999333pt;}
.yb6{bottom:277.881200pt;}
.y1b4{bottom:279.225067pt;}
.y1cf{bottom:279.225200pt;}
.yc{bottom:281.293467pt;}
.y8f{bottom:282.332667pt;}
.y20d{bottom:283.183733pt;}
.y65{bottom:284.096533pt;}
.yec{bottom:284.558400pt;}
.yd4{bottom:285.440267pt;}
.y198{bottom:286.994267pt;}
.y16f{bottom:287.666000pt;}
.y232{bottom:288.031467pt;}
.y127{bottom:289.410667pt;}
.y3b{bottom:291.613600pt;}
.y15d{bottom:292.327467pt;}
.y141{bottom:292.999333pt;}
.y1b3{bottom:295.225067pt;}
.y1ce{bottom:295.225200pt;}
.y8e{bottom:298.332667pt;}
.yeb{bottom:300.558400pt;}
.y231{bottom:300.981467pt;}
.yd3{bottom:301.440267pt;}
.y16e{bottom:303.666000pt;}
.y125{bottom:305.113333pt;}
.y20c{bottom:306.800400pt;}
.y3a{bottom:307.613600pt;}
.y15c{bottom:308.327467pt;}
.yb{bottom:310.893467pt;}
.y1b2{bottom:311.225067pt;}
.y1cd{bottom:311.225200pt;}
.yb5{bottom:312.106933pt;}
.y197{bottom:313.660933pt;}
.y8d{bottom:314.332667pt;}
.yea{bottom:316.558400pt;}
.y64{bottom:318.322400pt;}
.y140{bottom:319.666000pt;}
.y20b{bottom:319.750400pt;}
.y122{bottom:320.945333pt;}
.y39{bottom:323.613600pt;}
.y15b{bottom:324.327467pt;}
.y230{bottom:324.598000pt;}
.ya{bottom:325.293467pt;}
.y1b1{bottom:327.225067pt;}
.y1cc{bottom:327.225200pt;}
.yb4{bottom:328.106933pt;}
.y196{bottom:329.660933pt;}
.y8c{bottom:330.332667pt;}
.y124{bottom:331.626400pt;}
.ye9{bottom:332.558400pt;}
.y63{bottom:334.322400pt;}
.y13f{bottom:335.666000pt;}
.y1e8{bottom:337.891733pt;}
.y121{bottom:339.478133pt;}
.y38{bottom:339.613600pt;}
.y9{bottom:339.693467pt;}
.y15a{bottom:340.327467pt;}
.y1b0{bottom:343.225067pt;}
.y20a{bottom:343.367067pt;}
.yb3{bottom:344.106933pt;}
.y195{bottom:345.660933pt;}
.y8b{bottom:346.332667pt;}
.y22f{bottom:348.214667pt;}
.ye8{bottom:348.558400pt;}
.y62{bottom:350.322400pt;}
.y13e{bottom:351.666000pt;}
.y11f{bottom:352.481333pt;}
.y1e7{bottom:353.891733pt;}
.y1cb{bottom:353.891867pt;}
.y8{bottom:354.093467pt;}
.y37{bottom:355.613600pt;}
.y209{bottom:356.317067pt;}
.yb2{bottom:360.106933pt;}
.y194{bottom:361.660933pt;}
.y8a{bottom:362.332667pt;}
.ye7{bottom:364.558400pt;}
.y61{bottom:366.322400pt;}
.y159{bottom:366.994133pt;}
.y13d{bottom:367.666000pt;}
.y11d{bottom:368.184000pt;}
.y7{bottom:368.493467pt;}
.y1af{bottom:369.891733pt;}
.y1ca{bottom:369.891867pt;}
.y36{bottom:371.613600pt;}
.y22e{bottom:371.831333pt;}
.yb1{bottom:376.106933pt;}
.y193{bottom:377.660933pt;}
.y89{bottom:378.332667pt;}
.y208{bottom:379.933733pt;}
.ye6{bottom:380.558400pt;}
.y60{bottom:382.322400pt;}
.y6{bottom:382.893333pt;}
.y158{bottom:382.994133pt;}
.y13c{bottom:383.666000pt;}
.y11b{bottom:384.530667pt;}
.y22d{bottom:384.781467pt;}
.y1e6{bottom:385.891733pt;}
.y1c9{bottom:385.891867pt;}
.y35{bottom:387.613600pt;}
.yb0{bottom:392.106933pt;}
.y218{bottom:392.348400pt;}
.y207{bottom:392.883733pt;}
.y192{bottom:393.660933pt;}
.y88{bottom:394.332667pt;}
.ye5{bottom:396.558400pt;}
.y5{bottom:397.293467pt;}
.y5f{bottom:398.322400pt;}
.y157{bottom:398.994133pt;}
.y13b{bottom:399.666000pt;}
.y1e5{bottom:401.891733pt;}
.y1c8{bottom:401.891867pt;}
.y34{bottom:403.613600pt;}
.yaf{bottom:408.106933pt;}
.y22c{bottom:408.398133pt;}
.y191{bottom:409.660933pt;}
.y87{bottom:410.332667pt;}
.yfd{bottom:410.745333pt;}
.y4{bottom:411.693467pt;}
.y1ae{bottom:412.558400pt;}
.y5e{bottom:414.322400pt;}
.y156{bottom:414.994133pt;}
.y13a{bottom:415.666000pt;}
.y1e4{bottom:417.891733pt;}
.y1c7{bottom:417.891867pt;}
.y33{bottom:419.613600pt;}
.y22b{bottom:421.348000pt;}
.yfa{bottom:422.844933pt;}
.ye4{bottom:423.225067pt;}
.yae{bottom:424.106933pt;}
.y190{bottom:425.660933pt;}
.y3{bottom:426.093467pt;}
.y86{bottom:426.332667pt;}
.y1ad{bottom:428.558400pt;}
.y5d{bottom:430.322400pt;}
.y155{bottom:430.994133pt;}
.y1e3{bottom:433.891733pt;}
.y1c6{bottom:433.891867pt;}
.y32{bottom:435.613600pt;}
.y100{bottom:436.010133pt;}
.y1f5{bottom:436.999333pt;}
.ye3{bottom:439.225067pt;}
.yad{bottom:440.106933pt;}
.y2{bottom:440.493467pt;}
.y18f{bottom:441.660933pt;}
.y85{bottom:442.332667pt;}
.y1ac{bottom:444.558400pt;}
.y22a{bottom:444.964667pt;}
.y5c{bottom:446.322400pt;}
.y154{bottom:446.994133pt;}
.y1c5{bottom:449.891867pt;}
.y1f4{bottom:452.999333pt;}
.ye2{bottom:455.225067pt;}
.yac{bottom:456.106933pt;}
.y18e{bottom:457.660933pt;}
.y229{bottom:457.914667pt;}
.yd2{bottom:458.332667pt;}
.y1ab{bottom:460.558400pt;}
.y31{bottom:462.280267pt;}
.y5b{bottom:462.322400pt;}
.y153{bottom:462.994133pt;}
.y84{bottom:468.999333pt;}
.y1{bottom:469.293467pt;}
.ye1{bottom:471.225067pt;}
.yab{bottom:472.106933pt;}
.yd1{bottom:474.332667pt;}
.y1aa{bottom:476.558400pt;}
.y1c4{bottom:476.558533pt;}
.y30{bottom:478.280267pt;}
.y5a{bottom:478.322400pt;}
.y152{bottom:478.994000pt;}
.y228{bottom:481.531467pt;}
.y18d{bottom:484.327600pt;}
.y1f3{bottom:484.999333pt;}
.y119{bottom:485.146667pt;}
.ye0{bottom:487.225067pt;}
.yaa{bottom:488.106933pt;}
.yd0{bottom:490.332667pt;}
.y1a9{bottom:492.558400pt;}
.y1c3{bottom:492.558533pt;}
.y2f{bottom:494.280267pt;}
.y59{bottom:494.322400pt;}
.y227{bottom:494.481333pt;}
.y151{bottom:494.994000pt;}
.y117{bottom:498.029333pt;}
.y18c{bottom:500.327600pt;}
.y1f2{bottom:500.999333pt;}
.y83{bottom:503.225067pt;}
.ycf{bottom:506.332667pt;}
.y1a8{bottom:508.558400pt;}
.y1c2{bottom:508.558533pt;}
.y2e{bottom:510.280267pt;}
.y58{bottom:510.322400pt;}
.y150{bottom:510.994000pt;}
.y115{bottom:511.018667pt;}
.ya9{bottom:514.773600pt;}
.y1a{bottom:515.907733pt;}
.y18b{bottom:516.327600pt;}
.y1f1{bottom:516.999333pt;}
.y226{bottom:518.098000pt;}
.y82{bottom:519.225067pt;}
.yce{bottom:522.332667pt;}
.y113{bottom:523.901333pt;}
.y1a7{bottom:524.558400pt;}
.y1c1{bottom:524.558533pt;}
.y2d{bottom:526.280267pt;}
.y14f{bottom:526.994000pt;}
.y225{bottom:531.048000pt;}
.y18a{bottom:532.327600pt;}
.y16d{bottom:532.999333pt;}
.y81{bottom:535.225067pt;}
.y206{bottom:535.225200pt;}
.y1c{bottom:535.699733pt;}
.y111{bottom:536.889333pt;}
.y57{bottom:536.989067pt;}
.ycd{bottom:538.332667pt;}
.y1a6{bottom:540.558400pt;}
.y1c0{bottom:540.558533pt;}
.y2c{bottom:542.280267pt;}
.y1b{bottom:546.899733pt;}
.y189{bottom:548.327600pt;}
.ya8{bottom:548.999333pt;}
.y10f{bottom:549.774667pt;}
.y80{bottom:551.225067pt;}
.y205{bottom:551.225200pt;}
.y56{bottom:552.989067pt;}
.y14e{bottom:553.660667pt;}
.ycc{bottom:554.332667pt;}
.y224{bottom:554.664667pt;}
.y1bf{bottom:556.558533pt;}
.y2b{bottom:558.280267pt;}
.y1f0{bottom:559.666000pt;}
.y10d{bottom:562.762667pt;}
.y188{bottom:564.327600pt;}
.ya7{bottom:564.999333pt;}
.y19{bottom:566.805467pt;}
.y7f{bottom:567.225067pt;}
.y204{bottom:567.225200pt;}
.y223{bottom:567.614800pt;}
.y55{bottom:568.989067pt;}
.y2a{bottom:574.280267pt;}
.y10b{bottom:575.645333pt;}
.y187{bottom:580.327600pt;}
.ya6{bottom:580.999333pt;}
.y7e{bottom:583.225067pt;}
.y1be{bottom:583.225200pt;}
.y54{bottom:584.989067pt;}
.y10a{bottom:588.634667pt;}
.y29{bottom:590.280267pt;}
.y222{bottom:591.231333pt;}
.y1e2{bottom:593.891733pt;}
.y203{bottom:593.891867pt;}
.y186{bottom:596.327600pt;}
.ya5{bottom:596.999333pt;}
.y7d{bottom:599.225067pt;}
.y1bd{bottom:599.225200pt;}
.y53{bottom:600.989067pt;}
.y108{bottom:601.517333pt;}
.y221{bottom:604.181333pt;}
.y28{bottom:606.280267pt;}
.y202{bottom:609.891867pt;}
.y185{bottom:612.327600pt;}
.ya4{bottom:612.999333pt;}
.y106{bottom:614.505333pt;}
.y7c{bottom:615.225067pt;}
.y1bc{bottom:615.225200pt;}
.y52{bottom:616.989067pt;}
.y220{bottom:617.131333pt;}
.y1e1{bottom:620.558400pt;}
.y27{bottom:622.280267pt;}
.y1f{bottom:622.750267pt;}
.y201{bottom:625.891867pt;}
.y104{bottom:627.390667pt;}
.y184{bottom:628.327600pt;}
.ya3{bottom:628.999333pt;}
.y7b{bottom:631.225067pt;}
.y1bb{bottom:631.225200pt;}
.y51{bottom:632.989067pt;}
.y1e0{bottom:636.558400pt;}
.y26{bottom:638.280267pt;}
.y21f{bottom:640.748000pt;}
.y102{bottom:640.800000pt;}
.ya2{bottom:644.999333pt;}
.ycb{bottom:647.225067pt;}
.y1ba{bottom:647.225200pt;}
.y50{bottom:648.989067pt;}
.y1df{bottom:652.558400pt;}
.y200{bottom:652.558533pt;}
.y25{bottom:654.280267pt;}
.y183{bottom:655.666133pt;}
.y1e{bottom:656.350267pt;}
.y7a{bottom:657.891733pt;}
.ya1{bottom:660.999333pt;}
.yca{bottom:663.225067pt;}
.y1b9{bottom:663.225200pt;}
.y21e{bottom:664.364800pt;}
.y4f{bottom:664.989067pt;}
.yfc{bottom:666.397067pt;}
.y1de{bottom:668.558400pt;}
.y1ff{bottom:668.558533pt;}
.y79{bottom:673.891733pt;}
.ya0{bottom:676.999333pt;}
.y21d{bottom:677.314800pt;}
.yf9{bottom:678.496667pt;}
.yc9{bottom:679.225067pt;}
.y1b8{bottom:679.225200pt;}
.y24{bottom:680.946933pt;}
.y4e{bottom:680.989067pt;}
.y1dd{bottom:684.558400pt;}
.y1fe{bottom:684.558533pt;}
.y78{bottom:689.891733pt;}
.y182{bottom:689.891867pt;}
.y1d{bottom:689.950267pt;}
.yff{bottom:691.661733pt;}
.y9f{bottom:692.999333pt;}
.yc8{bottom:695.225067pt;}
.y4d{bottom:696.989067pt;}
.y1dc{bottom:700.558400pt;}
.y21c{bottom:700.931333pt;}
.y77{bottom:705.891733pt;}
.y181{bottom:705.891867pt;}
.y9e{bottom:708.999333pt;}
.yc7{bottom:711.225067pt;}
.y1fd{bottom:711.225200pt;}
.y4c{bottom:712.989067pt;}
.y1db{bottom:716.558400pt;}
.y16c{bottom:719.666000pt;}
.y76{bottom:721.891733pt;}
.y180{bottom:721.891867pt;}
.y21b{bottom:724.548133pt;}
.y9d{bottom:724.999333pt;}
.yc6{bottom:727.225067pt;}
.y1fc{bottom:727.225200pt;}
.y75{bottom:737.891733pt;}
.y17f{bottom:737.891867pt;}
.y4b{bottom:740.327600pt;}
.y9c{bottom:740.999333pt;}
.yc5{bottom:743.225067pt;}
.y1fb{bottom:743.225200pt;}
.y21a{bottom:748.164667pt;}
.y139{bottom:751.666000pt;}
.y74{bottom:753.891733pt;}
.y17e{bottom:753.891867pt;}
.yc4{bottom:759.225067pt;}
.y9b{bottom:767.666000pt;}
.y4a{bottom:767.666133pt;}
.y73{bottom:769.891733pt;}
.y17d{bottom:769.891867pt;}
.y219{bottom:771.781467pt;}
.yc3{bottom:775.225067pt;}
.y72{bottom:785.891733pt;}
.y17c{bottom:785.891867pt;}
.y71{bottom:801.891733pt;}
.y17b{bottom:801.891867pt;}
.y21{bottom:857.898533pt;}
.h1b{height:12.630667pt;}
.h19{height:12.734667pt;}
.h1c{height:12.736000pt;}
.h14{height:12.881333pt;}
.h13{height:12.882667pt;}
.h11{height:12.989333pt;}
.h17{height:15.702667pt;}
.h15{height:15.832000pt;}
.hf{height:26.016000pt;}
.h10{height:27.440000pt;}
.h7{height:30.352000pt;}
.h18{height:31.534667pt;}
.h1a{height:33.669474pt;}
.h12{height:34.341120pt;}
.he{height:34.602667pt;}
.h9{height:35.280000pt;}
.hc{height:35.506767pt;}
.ha{height:38.395833pt;}
.h1d{height:38.496000pt;}
.h5{height:38.997333pt;}
.h3{height:39.024000pt;}
.h4{height:41.090667pt;}
.hb{height:41.666667pt;}
.h16{height:41.857576pt;}
.h2{height:43.360000pt;}
.h6{height:43.872000pt;}
.h1e{height:46.309333pt;}
.hd{height:48.746667pt;}
.h8{height:102.368000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:81.101333pt;}
.w6{width:98.852000pt;}
.w2{width:112.041333pt;}
.w3{width:118.482667pt;}
.w7{width:122.169333pt;}
.w8{width:189.468000pt;}
.w5{width:212.506667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xc{left:11.716533pt;}
.x26{left:12.784667pt;}
.x1a{left:13.733200pt;}
.x25{left:14.997867pt;}
.x2c{left:16.746133pt;}
.x23{left:20.491067pt;}
.x27{left:22.815333pt;}
.x37{left:24.955733pt;}
.x28{left:26.727200pt;}
.x20{left:28.417867pt;}
.x22{left:31.264667pt;}
.x38{left:33.451200pt;}
.x24{left:34.750267pt;}
.x1d{left:35.912000pt;}
.x21{left:38.655333pt;}
.x2d{left:39.903067pt;}
.x17{left:40.875333pt;}
.x1b{left:42.669733pt;}
.x1c{left:44.464667pt;}
.x32{left:46.603333pt;}
.x1f{left:48.692800pt;}
.x29{left:51.332800pt;}
.x1e{left:55.972933pt;}
.x30{left:57.928000pt;}
.xb{left:59.605867pt;}
.x2a{left:66.944667pt;}
.x9{left:68.596533pt;}
.x31{left:71.059067pt;}
.x11{left:75.968533pt;}
.x34{left:81.483600pt;}
.x2f{left:86.377333pt;}
.x2{left:94.488133pt;}
.x35{left:96.667733pt;}
.x12{left:113.385867pt;}
.x8{left:119.055067pt;}
.xa{left:149.669200pt;}
.xd{left:151.181067pt;}
.x3e{left:163.772933pt;}
.x39{left:175.181200pt;}
.x13{left:187.469200pt;}
.xe{left:188.981067pt;}
.x3a{left:212.976400pt;}
.x5{left:288.254800pt;}
.x4{left:312.548667pt;}
.x6{left:321.560933pt;}
.x7{left:333.863867pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.xf{left:367.336533pt;}
.x16{left:386.953467pt;}
.x2e{left:409.486133pt;}
.x33{left:414.631333pt;}
.x3c{left:488.024267pt;}
.x15{left:489.548267pt;}
.x3b{left:498.143733pt;}
.x18{left:499.628000pt;}
.x36{left:509.744000pt;}
.x3d{left:580.828133pt;}
.x2b{left:600.232000pt;}
.x19{left:618.112000pt;}
.x14{left:643.821200pt;}
.x10{left:645.644133pt;}
}




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