
    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_64491d567ddaac4c3111fa1e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_71f34ed250419f399b7726e7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_fd9f3d1c0adaec36ed48c894.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_85489ac385888a9d6a2b542c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_fa5c15a7670b324e5448f448.woff')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_47660b6b2dfdb67a359d5d94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6928757b2878f358c7d00a01.woff')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_7b4d3eb60656f802febfff1f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.980957;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_ca47ad3b4a1c2a256acf7380.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_b0ef4111f5a7924499b728c5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997559;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_59c517336c79b347652981a6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8eb749fc96360629baefcaa3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.004883;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_da96c7e7fab6ff3afe526ab0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.201172;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_4229463b33cfef1f2b571d75.woff')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_b5df382e99b0578b7c55370a.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f44c1046ea4853188bc44dcf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.918945;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_f744c52d14398cb7261dd9dd.woff')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_1042f12501030075febf7e81.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e62a2b6e53034d07ad7b9feb.woff')format("woff");}.ff13{font-family:ff13;line-height:1.172852;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_6d78336f159f1eaea109a400.woff')format("woff");}.ff14{font-family:ff14;line-height:0.762207;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;}
.m4{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);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-112.620000px;}
.v14{vertical-align:-56.460000px;}
.v12{vertical-align:-54.840000px;}
.v2{vertical-align:-45.360000px;}
.v3{vertical-align:-41.040000px;}
.v10{vertical-align:-35.280000px;}
.vb{vertical-align:-26.496000px;}
.vd{vertical-align:-25.200000px;}
.v7{vertical-align:-21.600000px;}
.vf{vertical-align:-19.740000px;}
.vc{vertical-align:-18.600000px;}
.va{vertical-align:-17.280007px;}
.v8{vertical-align:-15.840006px;}
.v4{vertical-align:-13.733630px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:15.839994px;}
.ve{vertical-align:20.160000px;}
.v6{vertical-align:26.340000px;}
.v1{vertical-align:32.400000px;}
.v11{vertical-align:35.280000px;}
.v5{vertical-align:88.992000px;}
.ls10{letter-spacing:-8.940000px;}
.ls33{letter-spacing:-1.224000px;}
.ls6{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.654000px;}
.ls30{letter-spacing:-0.312000px;}
.ls31{letter-spacing:-0.298200px;}
.ls8{letter-spacing:-0.283800px;}
.ls26{letter-spacing:-0.271200px;}
.ls11{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.259800px;}
.ls29{letter-spacing:-0.256200px;}
.ls22{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.208200px;}
.ls28{letter-spacing:-0.199800px;}
.ls1c{letter-spacing:-0.189600px;}
.ls23{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.171256px;}
.ls2c{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.061800px;}
.ls7{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.022102px;}
.ls2{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.052980px;}
.lse{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.076200px;}
.ls14{letter-spacing:0.099519px;}
.ls4{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.132600px;}
.ls20{letter-spacing:0.136200px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.156000px;}
.ls2d{letter-spacing:0.157800px;}
.ls2e{letter-spacing:0.159000px;}
.ls2a{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199038px;}
.ls1e{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.220200px;}
.ls2f{letter-spacing:0.238200px;}
.ls2b{letter-spacing:0.299400px;}
.ls32{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.540000px;}
.ls1d{letter-spacing:17.746560px;}
.ls1f{letter-spacing:17.818561px;}
.ls1{letter-spacing:36.936000px;}
.ls3{letter-spacing:70.056000px;}
.ls19{letter-spacing:85.830048px;}
.ls18{letter-spacing:85.896000px;}
.ls34{letter-spacing:111.690720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws39{word-spacing:-144.000000px;}
.ws29{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.693312px;}
.ws50{word-spacing:-60.048000px;}
.ws16{word-spacing:-46.677312px;}
.ws11{word-spacing:-46.637280px;}
.ws3e{word-spacing:-40.680000px;}
.ws3a{word-spacing:-40.032000px;}
.ws3b{word-spacing:-39.888000px;}
.wsb{word-spacing:-33.466752px;}
.ws10{word-spacing:-31.264992px;}
.ws9{word-spacing:-31.224960px;}
.ws4e{word-spacing:-30.388032px;}
.ws4{word-spacing:-30.168000px;}
.wsd{word-spacing:-30.140232px;}
.ws14{word-spacing:-30.136032px;}
.ws3{word-spacing:-30.132000px;}
.ws1f{word-spacing:-30.096000px;}
.ws12{word-spacing:-30.064032px;}
.ws5{word-spacing:-30.060000px;}
.ws8{word-spacing:-30.024000px;}
.ws13{word-spacing:-29.992032px;}
.ws7{word-spacing:-29.988000px;}
.wsc{word-spacing:-29.410032px;}
.wse{word-spacing:-29.340000px;}
.ws6{word-spacing:-29.268000px;}
.ws1{word-spacing:-27.822240px;}
.ws48{word-spacing:-26.862240px;}
.wsf{word-spacing:-26.621280px;}
.ws4a{word-spacing:-26.323080px;}
.ws15{word-spacing:-25.020000px;}
.ws3d{word-spacing:-24.408000px;}
.ws20{word-spacing:-23.940000px;}
.ws42{word-spacing:-23.458752px;}
.ws33{word-spacing:-23.418720px;}
.ws28{word-spacing:-20.016000px;}
.ws24{word-spacing:-18.414720px;}
.ws2a{word-spacing:-16.613280px;}
.ws25{word-spacing:-16.353480px;}
.ws34{word-spacing:-15.612480px;}
.ws23{word-spacing:-15.012000px;}
.ws31{word-spacing:-2.514912px;}
.ws1d{word-spacing:-2.256000px;}
.wsa{word-spacing:-1.662624px;}
.ws2c{word-spacing:-1.194048px;}
.ws17{word-spacing:-0.960000px;}
.ws2e{word-spacing:-0.708480px;}
.ws30{word-spacing:-0.539064px;}
.ws2f{word-spacing:-0.343800px;}
.ws1e{word-spacing:-0.288000px;}
.ws37{word-spacing:-0.252000px;}
.ws18{word-spacing:-0.090000px;}
.ws19{word-spacing:-0.088128px;}
.ws4f{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:0.660000px;}
.ws47{word-spacing:0.770160px;}
.ws2b{word-spacing:1.320048px;}
.ws40{word-spacing:1.650720px;}
.ws49{word-spacing:1.716240px;}
.ws36{word-spacing:6.806880px;}
.ws35{word-spacing:7.427520px;}
.ws1c{word-spacing:23.220000px;}
.ws46{word-spacing:118.498560px;}
.ws21{word-spacing:158.460000px;}
.ws22{word-spacing:160.200000px;}
.ws43{word-spacing:272.613792px;}
.ws44{word-spacing:295.508880px;}
.ws4b{word-spacing:339.734640px;}
.ws45{word-spacing:355.113792px;}
.ws4c{word-spacing:416.245440px;}
.ws4d{word-spacing:440.220000px;}
.ws27{word-spacing:457.392000px;}
.ws26{word-spacing:465.306000px;}
.ws41{word-spacing:544.015680px;}
.ws51{word-spacing:603.114240px;}
.ws3f{word-spacing:663.536400px;}
.ws1b{word-spacing:1506.515700px;}
.ws3c{word-spacing:1703.376000px;}
.ws38{word-spacing:2103.612000px;}
.ws32{word-spacing:2514.586776px;}
.ws2d{word-spacing:2613.181200px;}
._2a{margin-left:-2821.011552px;}
._27{margin-left:-163.189164px;}
._35{margin-left:-29.989440px;}
._24{margin-left:-25.506048px;}
._2{margin-left:-23.736240px;}
._d{margin-left:-22.014720px;}
._1b{margin-left:-20.970000px;}
._1{margin-left:-19.420560px;}
._c{margin-left:-17.733600px;}
._7{margin-left:-16.553376px;}
._33{margin-left:-15.538992px;}
._5{margin-left:-14.394240px;}
._34{margin-left:-13.282464px;}
._a{margin-left:-11.967936px;}
._13{margin-left:-10.764000px;}
._0{margin-left:-9.110880px;}
._23{margin-left:-7.916448px;}
._1e{margin-left:-6.156000px;}
._b{margin-left:-4.463136px;}
._18{margin-left:-3.348000px;}
._e{margin-left:-2.235552px;}
._8{margin-left:-1.227744px;}
._3{width:1.678320px;}
._9{width:3.193632px;}
._1c{width:4.238016px;}
._6{width:5.517792px;}
._4{width:7.192800px;}
._15{width:8.377008px;}
._10{width:9.591552px;}
._f{width:11.124000px;}
._2f{width:21.009120px;}
._2e{width:22.084848px;}
._25{width:23.580000px;}
._26{width:27.080592px;}
._30{width:28.306464px;}
._1d{width:31.966176px;}
._16{width:36.699552px;}
._17{width:37.896000px;}
._1f{width:39.363552px;}
._21{width:41.257680px;}
._22{width:46.716000px;}
._19{width:69.996000px;}
._11{width:73.548000px;}
._12{width:75.272784px;}
._14{width:110.509680px;}
._2c{width:151.200000px;}
._1a{width:159.859296px;}
._2b{width:163.074000px;}
._20{width:347.784000px;}
._31{width:482.248560px;}
._2d{width:488.238000px;}
._32{width:530.128560px;}
._28{width:1300.788480px;}
._29{width:1867.464240px;}
.fcb{color:rgb(189,32,35);}
.fcc{color:rgb(46,129,81);}
.fca{color:transparent;}
.fc9{color:rgb(192,0,0);}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(72,80,86);}
.fc8{color:rgb(89,89,89);}
.fc4{color:rgb(130,130,130);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(140,182,74);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(54,102,88);}
.fs1f{font-size:30.240000px;}
.fs15{font-size:40.802814px;}
.fs1e{font-size:43.920000px;}
.fs20{font-size:48.240000px;}
.fs14{font-size:49.759530px;}
.fs13{font-size:49.859049px;}
.fs1b{font-size:54.000000px;}
.fs1c{font-size:54.144000px;}
.fs25{font-size:56.160000px;}
.fs1a{font-size:59.760000px;}
.fs21{font-size:59.904000px;}
.fs1d{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs27{font-size:72.144000px;}
.fsf{font-size:77.760000px;}
.fs22{font-size:84.240000px;}
.fs23{font-size:84.384000px;}
.fs10{font-size:90.000000px;}
.fs11{font-size:90.144000px;}
.fsc{font-size:95.760000px;}
.fs16{font-size:95.904000px;}
.fs4{font-size:100.080000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs2b{font-size:110.160000px;}
.fsa{font-size:112.320000px;}
.fse{font-size:112.464000px;}
.fs18{font-size:113.840857px;}
.fs12{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs28{font-size:131.760000px;}
.fs29{font-size:131.904000px;}
.fs9{font-size:144.000000px;}
.fs6{font-size:149.760000px;}
.fs5{font-size:149.904000px;}
.fs8{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fs26{font-size:180.000000px;}
.fs24{font-size:180.144000px;}
.fs2c{font-size:192.240000px;}
.fs2d{font-size:192.384000px;}
.fs17{font-size:210.240000px;}
.fs19{font-size:210.384000px;}
.fs2a{font-size:216.000000px;}
.fs0{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.yf1{bottom:-27.360000px;}
.yf0{bottom:-6.840000px;}
.yee{bottom:-2.160000px;}
.yef{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:2.556000px;}
.yba{bottom:3.960000px;}
.y2a{bottom:5.760000px;}
.y96{bottom:8.310000px;}
.y59{bottom:9.542523px;}
.ya6{bottom:10.155000px;}
.y31{bottom:10.836000px;}
.y61{bottom:11.412000px;}
.y76{bottom:12.924000px;}
.y53{bottom:14.702186px;}
.y1a{bottom:16.920000px;}
.y120{bottom:17.205000px;}
.ye5{bottom:18.180000px;}
.yb9{bottom:19.908000px;}
.yed{bottom:23.040000px;}
.y5e{bottom:23.328000px;}
.y66{bottom:24.516000px;}
.y26{bottom:25.740000px;}
.y58{bottom:27.605336px;}
.y72{bottom:27.792000px;}
.yc2{bottom:32.076000px;}
.y94{bottom:32.295000px;}
.ya4{bottom:36.210000px;}
.y6a{bottom:39.600000px;}
.y15{bottom:39.744000px;}
.y36{bottom:42.408000px;}
.yb7{bottom:43.164000px;}
.ye3{bottom:43.380000px;}
.yec{bottom:43.560000px;}
.y2f{bottom:47.340000px;}
.yea{bottom:48.276000px;}
.y8b{bottom:48.390000px;}
.yeb{bottom:48.636000px;}
.y9b{bottom:52.305000px;}
.ycc{bottom:52.992000px;}
.yc0{bottom:57.600000px;}
.yb6{bottom:58.680000px;}
.y99{bottom:59.010000px;}
.y5d{bottom:59.328000px;}
.y71{bottom:60.120000px;}
.y54{bottom:63.656115px;}
.y11f{bottom:65.850000px;}
.y75{bottom:66.672000px;}
.yd7{bottom:68.580000px;}
.ye9{bottom:68.796000px;}
.y5a{bottom:72.712350px;}
.ye7{bottom:73.476000px;}
.ybb{bottom:73.692000px;}
.y8{bottom:73.800000px;}
.ye8{bottom:73.836000px;}
.yab{bottom:74.772000px;}
.y35{bottom:74.808000px;}
.y98{bottom:79.845000px;}
.y11e{bottom:80.070000px;}
.yde{bottom:80.490000px;}
.ye0{bottom:80.496000px;}
.ydc{bottom:80.535000px;}
.ye1{bottom:80.856000px;}
.y52{bottom:82.404000px;}
.y8c{bottom:84.675000px;}
.ycb{bottom:84.816000px;}
.y9c{bottom:88.305000px;}
.y18{bottom:89.316000px;}
.y12d{bottom:92.520000px;}
.ydf{bottom:93.780000px;}
.ye6{bottom:93.996000px;}
.y5c{bottom:95.364000px;}
.y57{bottom:99.781534px;}
.yac{bottom:100.116000px;}
.y97{bottom:100.695000px;}
.y121{bottom:102.456000px;}
.y146{bottom:104.904000px;}
.y34{bottom:107.208000px;}
.y69{bottom:108.144000px;}
.y12c{bottom:110.700000px;}
.y40{bottom:111.240000px;}
.y130{bottom:113.400000px;}
.yfc{bottom:114.516000px;}
.y56{bottom:117.664901px;}
.y85{bottom:118.332000px;}
.y7{bottom:118.800000px;}
.ydd{bottom:118.980000px;}
.ye4{bottom:119.196000px;}
.yca{bottom:120.852000px;}
.y8d{bottom:120.960000px;}
.y9d{bottom:124.275000px;}
.yad{bottom:125.496000px;}
.y10d{bottom:127.365000px;}
.y13a{bottom:128.376000px;}
.y5b{bottom:131.364000px;}
.y55{bottom:135.505766px;}
.ybc{bottom:136.980000px;}
.y33{bottom:139.608000px;}
.yc1{bottom:140.652000px;}
.y145{bottom:140.904000px;}
.y65{bottom:142.092000px;}
.yb8{bottom:143.136000px;}
.y12f{bottom:143.352000px;}
.y88{bottom:143.604000px;}
.y11d{bottom:143.820000px;}
.ye2{bottom:144.396000px;}
.y95{bottom:144.435000px;}
.y13{bottom:146.556000px;}
.y84{bottom:147.132000px;}
.ya5{bottom:147.165000px;}
.yae{bottom:150.870000px;}
.yd9{bottom:156.135000px;}
.y68{bottom:156.210000px;}
.y8e{bottom:157.245000px;}
.y16{bottom:158.580000px;}
.y9e{bottom:160.275000px;}
.y139{bottom:160.770000px;}
.y6b{bottom:165.060000px;}
.y73{bottom:166.170000px;}
.y19{bottom:166.530000px;}
.ydb{bottom:169.380000px;}
.y87{bottom:170.610000px;}
.y32{bottom:172.050000px;}
.y108{bottom:172.980000px;}
.y12e{bottom:173.265000px;}
.y64{bottom:174.495000px;}
.y6{bottom:175.170000px;}
.y83{bottom:175.935000px;}
.y6e{bottom:176.115000px;}
.yaf{bottom:176.220000px;}
.y114{bottom:176.790000px;}
.y144{bottom:176.910000px;}
.y12{bottom:178.995000px;}
.y113{bottom:180.900000px;}
.y2e{bottom:181.185000px;}
.yd8{bottom:181.335000px;}
.y67{bottom:188.670000px;}
.ycf{bottom:188.745000px;}
.y128{bottom:193.170000px;}
.y8f{bottom:193.530000px;}
.y9f{bottom:196.275000px;}
.y86{bottom:197.610000px;}
.ybd{bottom:200.265000px;}
.yb0{bottom:201.600000px;}
.y115{bottom:203.145000px;}
.y12b{bottom:203.220000px;}
.y74{bottom:206.925000px;}
.y11{bottom:211.395000px;}
.y6f{bottom:212.145000px;}
.y70{bottom:216.870000px;}
.y138{bottom:225.570000px;}
.yb1{bottom:226.950000px;}
.y143{bottom:229.140000px;}
.y116{bottom:229.755000px;}
.y90{bottom:229.830000px;}
.y23{bottom:230.040000px;}
.yda{bottom:231.015000px;}
.ya0{bottom:232.230000px;}
.y12a{bottom:233.130000px;}
.y60{bottom:239.370000px;}
.y45{bottom:243.000000px;}
.y10{bottom:243.795000px;}
.y10c{bottom:244.260000px;}
.y50{bottom:246.060000px;}
.y125{bottom:247.320000px;}
.y5{bottom:250.815000px;}
.yb2{bottom:252.330000px;}
.y82{bottom:253.545000px;}
.y117{bottom:256.650000px;}
.y137{bottom:258.015000px;}
.y129{bottom:261.930000px;}
.ybe{bottom:263.550000px;}
.y142{bottom:265.140000px;}
.y91{bottom:266.115000px;}
.yc5{bottom:266.505000px;}
.ya1{bottom:268.230000px;}
.y44{bottom:270.030000px;}
.yf{bottom:276.195000px;}
.ya9{bottom:276.480000px;}
.yb3{bottom:277.710000px;}
.y124{bottom:279.720000px;}
.y4f{bottom:282.060000px;}
.y81{bottom:282.390000px;}
.y118{bottom:283.785000px;}
.y109{bottom:284.940000px;}
.yc4{bottom:288.435000px;}
.y136{bottom:290.415000px;}
.y22{bottom:294.870000px;}
.y43{bottom:297.030000px;}
.ya8{bottom:298.905000px;}
.y92{bottom:302.400000px;}
.yb4{bottom:303.045000px;}
.ya2{bottom:304.230000px;}
.y4{bottom:304.890000px;}
.y4c{bottom:305.280000px;}
.y3d{bottom:305.715000px;}
.ye{bottom:308.595000px;}
.yc3{bottom:310.395000px;}
.y119{bottom:311.220000px;}
.y141{bottom:317.340000px;}
.y100{bottom:317.700000px;}
.y4e{bottom:318.060000px;}
.ya7{bottom:321.300000px;}
.y135{bottom:322.815000px;}
.y10e{bottom:323.490000px;}
.y42{bottom:324.030000px;}
.yf2{bottom:324.330000px;}
.ybf{bottom:326.850000px;}
.y21{bottom:327.270000px;}
.yb5{bottom:328.425000px;}
.y93{bottom:338.685000px;}
.y11a{bottom:338.970000px;}
.ya3{bottom:340.200000px;}
.yd{bottom:341.025000px;}
.y80{bottom:341.895000px;}
.y111{bottom:346.860000px;}
.y14c{bottom:346.935000px;}
.yff{bottom:350.310000px;}
.y41{bottom:351.030000px;}
.y25{bottom:351.330000px;}
.y140{bottom:353.340000px;}
.y4d{bottom:354.090000px;}
.y20{bottom:359.670000px;}
.y2d{bottom:364.065000px;}
.y11b{bottom:366.990000px;}
.y8a{bottom:367.380000px;}
.y9a{bottom:369.360000px;}
.y10b{bottom:371.625000px;}
.yc8{bottom:372.630000px;}
.yc{bottom:373.425000px;}
.y7f{bottom:374.325000px;}
.y3{bottom:376.890000px;}
.y14b{bottom:379.365000px;}
.y24{bottom:380.130000px;}
.yfe{bottom:382.710000px;}
.y134{bottom:387.615000px;}
.y1f{bottom:392.070000px;}
.y11c{bottom:395.280000px;}
.y13f{bottom:405.570000px;}
.yb{bottom:405.825000px;}
.y7e{bottom:406.725000px;}
.y14a{bottom:411.690000px;}
.y10a{bottom:418.680000px;}
.y105{bottom:419.760000px;}
.y133{bottom:420.045000px;}
.y1e{bottom:424.515000px;}
.y123{bottom:425.235000px;}
.ya{bottom:438.225000px;}
.y7d{bottom:439.125000px;}
.y104{bottom:441.360000px;}
.yce{bottom:444.780000px;}
.y2{bottom:448.920000px;}
.yc9{bottom:449.535000px;}
.y13b{bottom:454.965000px;}
.y3c{bottom:455.865000px;}
.y122{bottom:461.235000px;}
.y103{bottom:462.960000px;}
.y149{bottom:469.290000px;}
.y4b{bottom:469.800000px;}
.y9{bottom:470.625000px;}
.y7c{bottom:471.525000px;}
.y13d{bottom:474.555000px;}
.y3b{bottom:482.865000px;}
.y102{bottom:484.560000px;}
.y1d{bottom:489.315000px;}
.yf9{bottom:492.480000px;}
.y13c{bottom:499.785000px;}
.y47{bottom:501.150000px;}
.y107{bottom:503.070000px;}
.y5f{bottom:503.925000px;}
.y4a{bottom:505.830000px;}
.y101{bottom:506.190000px;}
.y3a{bottom:510.225000px;}
.y37{bottom:512.640000px;}
.y1{bottom:520.920000px;}
.y1c{bottom:521.715000px;}
.yf8{bottom:524.880000px;}
.y2c{bottom:525.420000px;}
.y148{bottom:526.935000px;}
.yfd{bottom:532.185000px;}
.y13e{bottom:533.550000px;}
.y7b{bottom:537.090000px;}
.y39{bottom:539.025000px;}
.y49{bottom:541.830000px;}
.y30{bottom:543.450000px;}
.y132{bottom:549.975000px;}
.y46{bottom:551.550000px;}
.y2b{bottom:557.820000px;}
.y38{bottom:567.465000px;}
.yf4{bottom:576.075000px;}
.y48{bottom:577.830000px;}
.y110{bottom:578.370000px;}
.yd2{bottom:593.175000px;}
.yfb{bottom:593.925000px;}
.yf5{bottom:617.730000px;}
.yf7{bottom:620.025000px;}
.y78{bottom:622.620000px;}
.y14{bottom:622.770000px;}
.y29{bottom:628.710000px;}
.y6d{bottom:630.030000px;}
.y7a{bottom:635.655000px;}
.yf3{bottom:640.770000px;}
.y63{bottom:641.670000px;}
.yc7{bottom:652.290000px;}
.yf6{bottom:652.425000px;}
.y51{bottom:657.975000px;}
.y3e{bottom:660.570000px;}
.yd5{bottom:662.250000px;}
.y127{bottom:667.110000px;}
.y77{bottom:673.020000px;}
.y17{bottom:673.170000px;}
.yfa{bottom:678.030000px;}
.y28{bottom:679.110000px;}
.y6c{bottom:680.475000px;}
.y79{bottom:686.085000px;}
.y89{bottom:690.405000px;}
.y62{bottom:692.100000px;}
.yc6{bottom:702.690000px;}
.yd1{bottom:708.270000px;}
.yd4{bottom:712.650000px;}
.y27{bottom:712.800000px;}
.y1b{bottom:718.995000px;}
.y10f{bottom:720.825000px;}
.y112{bottom:734.010000px;}
.y3f{bottom:734.430000px;}
.y106{bottom:738.255000px;}
.y126{bottom:747.390000px;}
.y131{bottom:753.690000px;}
.yd0{bottom:758.700000px;}
.yd3{bottom:763.095000px;}
.y147{bottom:766.470000px;}
.yd6{bottom:768.090000px;}
.yaa{bottom:770.970000px;}
.h13{height:36.372078px;}
.h12{height:36.444822px;}
.h26{height:39.471680px;}
.h28{height:39.576937px;}
.h54{height:40.500000px;}
.h38{height:42.120000px;}
.h27{height:43.681992px;}
.h2f{height:43.787250px;}
.h2c{height:48.418594px;}
.h2e{height:52.628906px;}
.h47{height:54.000000px;}
.h46{height:54.108000px;}
.hd{height:58.320000px;}
.h4d{height:61.575820px;}
.h4e{height:61.681078px;}
.h34{height:63.180000px;}
.h35{height:63.288000px;}
.h4f{height:63.344531px;}
.h23{height:65.126953px;}
.he{height:67.500000px;}
.hf{height:67.608000px;}
.h15{height:68.400000px;}
.h20{height:69.902930px;}
.h22{height:70.008047px;}
.hb{height:71.820000px;}
.h31{height:75.041016px;}
.h4{height:75.060000px;}
.h30{height:75.141070px;}
.h1e{height:78.152344px;}
.h1d{height:79.998047px;}
.h1f{height:80.104711px;}
.h6{height:81.000000px;}
.h7{height:81.108000px;}
.h3b{height:83.340000px;}
.h40{height:83.592000px;}
.h3a{height:83.787539px;}
.h3f{height:83.930766px;}
.h3{height:86.400000px;}
.h1c{height:87.877969px;}
.h10{height:90.180000px;}
.ha{height:90.288000px;}
.h41{height:93.960000px;}
.h1a{height:95.942051px;}
.h18{height:98.160000px;}
.h19{height:98.448000px;}
.h49{height:98.820000px;}
.h50{height:98.928000px;}
.h9{height:108.000000px;}
.h21{height:109.321875px;}
.h44{height:110.583984px;}
.h45{height:110.731430px;}
.h5{height:112.320000px;}
.h14{height:112.428000px;}
.h2a{height:115.734375px;}
.h51{height:119.594180px;}
.h43{height:121.359375px;}
.h33{height:123.116836px;}
.h32{height:123.264281px;}
.h8{height:125.820000px;}
.hc{height:125.928000px;}
.h4a{height:134.912461px;}
.h56{height:144.180000px;}
.h57{height:144.288000px;}
.h3d{height:144.360000px;}
.h11{height:150.771375px;}
.h16{height:160.812000px;}
.h55{height:162.000000px;}
.h17{height:168.972188px;}
.h1b{height:169.087922px;}
.h3c{height:169.560000px;}
.h39{height:176.580000px;}
.h1{height:179.820000px;}
.h2{height:179.928000px;}
.h42{height:184.306641px;}
.h36{height:184.454086px;}
.h53{height:201.780000px;}
.h24{height:215.270156px;}
.h3e{height:219.960000px;}
.h52{height:245.496445px;}
.h4b{height:277.380000px;}
.h2b{height:349.380000px;}
.h37{height:352.980000px;}
.h2d{height:365.400000px;}
.h25{height:371.520000px;}
.h29{height:399.420000px;}
.h4c{height:513.900000px;}
.h48{height:554.580000px;}
.h0{height:810.000000px;}
.wc{width:113.040000px;}
.w7{width:139.500000px;}
.wa{width:153.900000px;}
.w2{width:196.982345px;}
.w8{width:283.860000px;}
.w9{width:298.080000px;}
.w3{width:610.920000px;}
.w4{width:614.700000px;}
.w6{width:624.060000px;}
.w5{width:629.460000px;}
.wb{width:1049.760000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8e{left:2.880000px;}
.x35{left:6.587979px;}
.x66{left:8.136000px;}
.x75{left:16.455000px;}
.x17{left:17.675979px;}
.x5d{left:19.079979px;}
.x85{left:21.635979px;}
.x2b{left:25.199979px;}
.xe{left:26.387979px;}
.x64{left:27.791979px;}
.x4d{left:28.980000px;}
.x5c{left:30.959979px;}
.x22{left:37.619979px;}
.x1b{left:42.371979px;}
.x1d{left:43.811979px;}
.x59{left:45.540000px;}
.x26{left:46.583979px;}
.x2d{left:48.541423px;}
.x53{left:49.752000px;}
.x1f{left:52.235979px;}
.x52{left:57.276000px;}
.x72{left:58.931979px;}
.x86{left:60.155979px;}
.x47{left:61.811979px;}
.x5{left:66.599979px;}
.x51{left:69.660000px;}
.xd{left:71.387979px;}
.x96{left:73.367979px;}
.x21{left:75.239979px;}
.x6{left:78.119979px;}
.x7{left:79.451979px;}
.x3e{left:86.759979px;}
.x4c{left:88.200000px;}
.x55{left:95.070000px;}
.x87{left:96.335979px;}
.x11{left:97.451979px;}
.x65{left:99.360000px;}
.x39{left:106.199979px;}
.x1{left:107.279979px;}
.x5b{left:110.415000px;}
.x97{left:113.903979px;}
.x54{left:121.320000px;}
.x3a{left:124.775979px;}
.x30{left:126.712182px;}
.x5a{left:129.420000px;}
.x8{left:131.075979px;}
.xb{left:135.071979px;}
.x2e{left:142.017782px;}
.x2{left:144.575979px;}
.x2f{left:173.230500px;}
.x7b{left:180.180000px;}
.x83{left:188.025000px;}
.x3c{left:192.089979px;}
.x84{left:199.154979px;}
.x36{left:211.139979px;}
.x91{left:220.784979px;}
.x99{left:224.489979px;}
.x56{left:226.620000px;}
.x57{left:227.985000px;}
.x9b{left:232.049979px;}
.x81{left:233.070000px;}
.x67{left:238.680000px;}
.x88{left:242.849979px;}
.x9a{left:247.529979px;}
.x42{left:255.029979px;}
.x68{left:256.499979px;}
.x69{left:257.939979px;}
.x7f{left:260.130000px;}
.x1c{left:261.719979px;}
.x7e{left:262.830000px;}
.x1a{left:264.704979px;}
.x7d{left:266.760000px;}
.x23{left:268.199979px;}
.x4e{left:269.535000px;}
.x31{left:271.229979px;}
.x20{left:273.029979px;}
.x93{left:274.499979px;}
.x24{left:277.919979px;}
.x33{left:279.869979px;}
.x7c{left:288.075000px;}
.x27{left:292.679979px;}
.x4{left:295.589979px;}
.x28{left:300.779979px;}
.x46{left:304.709979px;}
.x3f{left:306.359979px;}
.x3{left:308.009979px;}
.x7a{left:310.889979px;}
.x32{left:315.539979px;}
.x41{left:321.734979px;}
.x80{left:352.905000px;}
.x34{left:357.299979px;}
.x18{left:368.639979px;}
.x6f{left:379.544979px;}
.x5e{left:390.569979px;}
.x29{left:391.679979px;}
.x1e{left:397.109979px;}
.x25{left:430.739979px;}
.x4f{left:432.075000px;}
.x82{left:438.585000px;}
.x2a{left:500.939979px;}
.x19{left:511.049979px;}
.x89{left:524.309979px;}
.x3b{left:535.499979px;}
.x70{left:548.969979px;}
.x37{left:553.859979px;}
.x98{left:556.484979px;}
.x43{left:562.064979px;}
.x9{left:577.469979px;}
.x63{left:628.274979px;}
.x92{left:637.589979px;}
.xc{left:639.104979px;}
.xa{left:640.979979px;}
.x9c{left:680.909979px;}
.x58{left:704.880000px;}
.x50{left:709.560000px;}
.x6a{left:711.074979px;}
.x6b{left:712.229979px;}
.x44{left:733.964979px;}
.x45{left:754.124979px;}
.x2c{left:758.623112px;}
.x79{left:769.139979px;}
.x60{left:773.609979px;}
.xf{left:804.749979px;}
.x12{left:815.939979px;}
.x10{left:822.749979px;}
.x4a{left:845.174979px;}
.x5f{left:911.309979px;}
.x74{left:935.460000px;}
.x40{left:947.009979px;}
.x48{left:964.109979px;}
.x3d{left:980.129979px;}
.x62{left:982.079979px;}
.x49{left:997.949979px;}
.x61{left:1000.409979px;}
.x8a{left:1003.829979px;}
.x8c{left:1006.409979px;}
.x8f{left:1014.869979px;}
.x90{left:1020.989979px;}
.x78{left:1038.344979px;}
.x76{left:1056.524979px;}
.x4b{left:1061.924979px;}
.x13{left:1074.164979px;}
.x15{left:1098.569979px;}
.x16{left:1102.934979px;}
.x8b{left:1112.729979px;}
.x6e{left:1114.199979px;}
.x73{left:1123.844979px;}
.x14{left:1125.464979px;}
.x38{left:1147.109979px;}
.x71{left:1177.379979px;}
.x77{left:1233.360000px;}
.x95{left:1253.699979px;}
.x6d{left:1279.904979px;}
.x94{left:1290.419979px;}
.x8d{left:1310.760000px;}
.x6c{left:1335.989979px;}
@media print{
.v13{vertical-align:-100.106667pt;}
.v14{vertical-align:-50.186667pt;}
.v12{vertical-align:-48.746667pt;}
.v2{vertical-align:-40.320000pt;}
.v3{vertical-align:-36.480000pt;}
.v10{vertical-align:-31.360000pt;}
.vb{vertical-align:-23.552000pt;}
.vd{vertical-align:-22.400000pt;}
.v7{vertical-align:-19.200000pt;}
.vf{vertical-align:-17.546667pt;}
.vc{vertical-align:-16.533333pt;}
.va{vertical-align:-15.360006pt;}
.v8{vertical-align:-14.080005pt;}
.v4{vertical-align:-12.207671pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.079995pt;}
.ve{vertical-align:17.920000pt;}
.v6{vertical-align:23.413333pt;}
.v1{vertical-align:28.800000pt;}
.v11{vertical-align:31.360000pt;}
.v5{vertical-align:79.104000pt;}
.ls10{letter-spacing:-7.946667pt;}
.ls33{letter-spacing:-1.088000pt;}
.ls6{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.581333pt;}
.ls30{letter-spacing:-0.277333pt;}
.ls31{letter-spacing:-0.265067pt;}
.ls8{letter-spacing:-0.252267pt;}
.ls26{letter-spacing:-0.241067pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.230933pt;}
.ls29{letter-spacing:-0.227733pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.185067pt;}
.ls28{letter-spacing:-0.177600pt;}
.ls1c{letter-spacing:-0.168533pt;}
.ls23{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.152227pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.054933pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019646pt;}
.ls2{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.047093pt;}
.lse{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.067733pt;}
.ls14{letter-spacing:0.088461pt;}
.ls4{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.117867pt;}
.ls20{letter-spacing:0.121067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.138667pt;}
.ls2d{letter-spacing:0.140267pt;}
.ls2e{letter-spacing:0.141333pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.176923pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.195733pt;}
.ls2f{letter-spacing:0.211733pt;}
.ls2b{letter-spacing:0.266133pt;}
.ls32{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:15.774720pt;}
.ls1f{letter-spacing:15.838721pt;}
.ls1{letter-spacing:32.832000pt;}
.ls3{letter-spacing:62.272000pt;}
.ls19{letter-spacing:76.293376pt;}
.ls18{letter-spacing:76.352000pt;}
.ls34{letter-spacing:99.280640pt;}
.ws39{word-spacing:-128.000000pt;}
.ws29{word-spacing:-64.000000pt;}
.ws0{word-spacing:-59.282944pt;}
.ws50{word-spacing:-53.376000pt;}
.ws16{word-spacing:-41.490944pt;}
.ws11{word-spacing:-41.455360pt;}
.ws3e{word-spacing:-36.160000pt;}
.ws3a{word-spacing:-35.584000pt;}
.ws3b{word-spacing:-35.456000pt;}
.wsb{word-spacing:-29.748224pt;}
.ws10{word-spacing:-27.791104pt;}
.ws9{word-spacing:-27.755520pt;}
.ws4e{word-spacing:-27.011584pt;}
.ws4{word-spacing:-26.816000pt;}
.wsd{word-spacing:-26.791317pt;}
.ws14{word-spacing:-26.787584pt;}
.ws3{word-spacing:-26.784000pt;}
.ws1f{word-spacing:-26.752000pt;}
.ws12{word-spacing:-26.723584pt;}
.ws5{word-spacing:-26.720000pt;}
.ws8{word-spacing:-26.688000pt;}
.ws13{word-spacing:-26.659584pt;}
.ws7{word-spacing:-26.656000pt;}
.wsc{word-spacing:-26.142251pt;}
.wse{word-spacing:-26.080000pt;}
.ws6{word-spacing:-26.016000pt;}
.ws1{word-spacing:-24.730880pt;}
.ws48{word-spacing:-23.877547pt;}
.wsf{word-spacing:-23.663360pt;}
.ws4a{word-spacing:-23.398293pt;}
.ws15{word-spacing:-22.240000pt;}
.ws3d{word-spacing:-21.696000pt;}
.ws20{word-spacing:-21.280000pt;}
.ws42{word-spacing:-20.852224pt;}
.ws33{word-spacing:-20.816640pt;}
.ws28{word-spacing:-17.792000pt;}
.ws24{word-spacing:-16.368640pt;}
.ws2a{word-spacing:-14.767360pt;}
.ws25{word-spacing:-14.536427pt;}
.ws34{word-spacing:-13.877760pt;}
.ws23{word-spacing:-13.344000pt;}
.ws31{word-spacing:-2.235477pt;}
.ws1d{word-spacing:-2.005333pt;}
.wsa{word-spacing:-1.477888pt;}
.ws2c{word-spacing:-1.061376pt;}
.ws17{word-spacing:-0.853333pt;}
.ws2e{word-spacing:-0.629760pt;}
.ws30{word-spacing:-0.479168pt;}
.ws2f{word-spacing:-0.305600pt;}
.ws1e{word-spacing:-0.256000pt;}
.ws37{word-spacing:-0.224000pt;}
.ws18{word-spacing:-0.080000pt;}
.ws19{word-spacing:-0.078336pt;}
.ws4f{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.586667pt;}
.ws47{word-spacing:0.684587pt;}
.ws2b{word-spacing:1.173376pt;}
.ws40{word-spacing:1.467307pt;}
.ws49{word-spacing:1.525547pt;}
.ws36{word-spacing:6.050560pt;}
.ws35{word-spacing:6.602240pt;}
.ws1c{word-spacing:20.640000pt;}
.ws46{word-spacing:105.332053pt;}
.ws21{word-spacing:140.853333pt;}
.ws22{word-spacing:142.400000pt;}
.ws43{word-spacing:242.323371pt;}
.ws44{word-spacing:262.674560pt;}
.ws4b{word-spacing:301.986347pt;}
.ws45{word-spacing:315.656704pt;}
.ws4c{word-spacing:369.995947pt;}
.ws4d{word-spacing:391.306667pt;}
.ws27{word-spacing:406.570667pt;}
.ws26{word-spacing:413.605333pt;}
.ws41{word-spacing:483.569493pt;}
.ws51{word-spacing:536.101547pt;}
.ws3f{word-spacing:589.810133pt;}
.ws1b{word-spacing:1339.125067pt;}
.ws3c{word-spacing:1514.112000pt;}
.ws38{word-spacing:1869.877333pt;}
.ws32{word-spacing:2235.188245pt;}
.ws2d{word-spacing:2322.827733pt;}
._2a{margin-left:-2507.565824pt;}
._27{margin-left:-145.057035pt;}
._35{margin-left:-26.657280pt;}
._24{margin-left:-22.672043pt;}
._2{margin-left:-21.098880pt;}
._d{margin-left:-19.568640pt;}
._1b{margin-left:-18.640000pt;}
._1{margin-left:-17.262720pt;}
._c{margin-left:-15.763200pt;}
._7{margin-left:-14.714112pt;}
._33{margin-left:-13.812437pt;}
._5{margin-left:-12.794880pt;}
._34{margin-left:-11.806635pt;}
._a{margin-left:-10.638165pt;}
._13{margin-left:-9.568000pt;}
._0{margin-left:-8.098560pt;}
._23{margin-left:-7.036843pt;}
._1e{margin-left:-5.472000pt;}
._b{margin-left:-3.967232pt;}
._18{margin-left:-2.976000pt;}
._e{margin-left:-1.987157pt;}
._8{margin-left:-1.091328pt;}
._3{width:1.491840pt;}
._9{width:2.838784pt;}
._1c{width:3.767125pt;}
._6{width:4.904704pt;}
._4{width:6.393600pt;}
._15{width:7.446229pt;}
._10{width:8.525824pt;}
._f{width:9.888000pt;}
._2f{width:18.674773pt;}
._2e{width:19.630976pt;}
._25{width:20.960000pt;}
._26{width:24.071637pt;}
._30{width:25.161301pt;}
._1d{width:28.414379pt;}
._16{width:32.621824pt;}
._17{width:33.685333pt;}
._1f{width:34.989824pt;}
._21{width:36.673493pt;}
._22{width:41.525333pt;}
._19{width:62.218667pt;}
._11{width:65.376000pt;}
._12{width:66.909141pt;}
._14{width:98.230827pt;}
._2c{width:134.400000pt;}
._1a{width:142.097152pt;}
._2b{width:144.954667pt;}
._20{width:309.141333pt;}
._31{width:428.665387pt;}
._2d{width:433.989333pt;}
._32{width:471.225387pt;}
._28{width:1156.256427pt;}
._29{width:1659.968213pt;}
.fs1f{font-size:26.880000pt;}
.fs15{font-size:36.269168pt;}
.fs1e{font-size:39.040000pt;}
.fs20{font-size:42.880000pt;}
.fs14{font-size:44.230693pt;}
.fs13{font-size:44.319155pt;}
.fs1b{font-size:48.000000pt;}
.fs1c{font-size:48.128000pt;}
.fs25{font-size:49.920000pt;}
.fs1a{font-size:53.120000pt;}
.fs21{font-size:53.248000pt;}
.fs1d{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs27{font-size:64.128000pt;}
.fsf{font-size:69.120000pt;}
.fs22{font-size:74.880000pt;}
.fs23{font-size:75.008000pt;}
.fs10{font-size:80.000000pt;}
.fs11{font-size:80.128000pt;}
.fsc{font-size:85.120000pt;}
.fs16{font-size:85.248000pt;}
.fs4{font-size:88.960000pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs2b{font-size:97.920000pt;}
.fsa{font-size:99.840000pt;}
.fse{font-size:99.968000pt;}
.fs18{font-size:101.191873pt;}
.fs12{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs28{font-size:117.120000pt;}
.fs29{font-size:117.248000pt;}
.fs9{font-size:128.000000pt;}
.fs6{font-size:133.120000pt;}
.fs5{font-size:133.248000pt;}
.fs8{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fs26{font-size:160.000000pt;}
.fs24{font-size:160.128000pt;}
.fs2c{font-size:170.880000pt;}
.fs2d{font-size:171.008000pt;}
.fs17{font-size:186.880000pt;}
.fs19{font-size:187.008000pt;}
.fs2a{font-size:192.000000pt;}
.fs0{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.yf1{bottom:-24.320000pt;}
.yf0{bottom:-6.080000pt;}
.yee{bottom:-1.920000pt;}
.yef{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.272000pt;}
.yba{bottom:3.520000pt;}
.y2a{bottom:5.120000pt;}
.y96{bottom:7.386667pt;}
.y59{bottom:8.482243pt;}
.ya6{bottom:9.026667pt;}
.y31{bottom:9.632000pt;}
.y61{bottom:10.144000pt;}
.y76{bottom:11.488000pt;}
.y53{bottom:13.068610pt;}
.y1a{bottom:15.040000pt;}
.y120{bottom:15.293333pt;}
.ye5{bottom:16.160000pt;}
.yb9{bottom:17.696000pt;}
.yed{bottom:20.480000pt;}
.y5e{bottom:20.736000pt;}
.y66{bottom:21.792000pt;}
.y26{bottom:22.880000pt;}
.y58{bottom:24.538076pt;}
.y72{bottom:24.704000pt;}
.yc2{bottom:28.512000pt;}
.y94{bottom:28.706667pt;}
.ya4{bottom:32.186667pt;}
.y6a{bottom:35.200000pt;}
.y15{bottom:35.328000pt;}
.y36{bottom:37.696000pt;}
.yb7{bottom:38.368000pt;}
.ye3{bottom:38.560000pt;}
.yec{bottom:38.720000pt;}
.y2f{bottom:42.080000pt;}
.yea{bottom:42.912000pt;}
.y8b{bottom:43.013333pt;}
.yeb{bottom:43.232000pt;}
.y9b{bottom:46.493333pt;}
.ycc{bottom:47.104000pt;}
.yc0{bottom:51.200000pt;}
.yb6{bottom:52.160000pt;}
.y99{bottom:52.453333pt;}
.y5d{bottom:52.736000pt;}
.y71{bottom:53.440000pt;}
.y54{bottom:56.583213pt;}
.y11f{bottom:58.533333pt;}
.y75{bottom:59.264000pt;}
.yd7{bottom:60.960000pt;}
.ye9{bottom:61.152000pt;}
.y5a{bottom:64.633200pt;}
.ye7{bottom:65.312000pt;}
.ybb{bottom:65.504000pt;}
.y8{bottom:65.600000pt;}
.ye8{bottom:65.632000pt;}
.yab{bottom:66.464000pt;}
.y35{bottom:66.496000pt;}
.y98{bottom:70.973333pt;}
.y11e{bottom:71.173333pt;}
.yde{bottom:71.546667pt;}
.ye0{bottom:71.552000pt;}
.ydc{bottom:71.586667pt;}
.ye1{bottom:71.872000pt;}
.y52{bottom:73.248000pt;}
.y8c{bottom:75.266667pt;}
.ycb{bottom:75.392000pt;}
.y9c{bottom:78.493333pt;}
.y18{bottom:79.392000pt;}
.y12d{bottom:82.240000pt;}
.ydf{bottom:83.360000pt;}
.ye6{bottom:83.552000pt;}
.y5c{bottom:84.768000pt;}
.y57{bottom:88.694697pt;}
.yac{bottom:88.992000pt;}
.y97{bottom:89.506667pt;}
.y121{bottom:91.072000pt;}
.y146{bottom:93.248000pt;}
.y34{bottom:95.296000pt;}
.y69{bottom:96.128000pt;}
.y12c{bottom:98.400000pt;}
.y40{bottom:98.880000pt;}
.y130{bottom:100.800000pt;}
.yfc{bottom:101.792000pt;}
.y56{bottom:104.591024pt;}
.y85{bottom:105.184000pt;}
.y7{bottom:105.600000pt;}
.ydd{bottom:105.760000pt;}
.ye4{bottom:105.952000pt;}
.yca{bottom:107.424000pt;}
.y8d{bottom:107.520000pt;}
.y9d{bottom:110.466667pt;}
.yad{bottom:111.552000pt;}
.y10d{bottom:113.213333pt;}
.y13a{bottom:114.112000pt;}
.y5b{bottom:116.768000pt;}
.y55{bottom:120.449570pt;}
.ybc{bottom:121.760000pt;}
.y33{bottom:124.096000pt;}
.yc1{bottom:125.024000pt;}
.y145{bottom:125.248000pt;}
.y65{bottom:126.304000pt;}
.yb8{bottom:127.232000pt;}
.y12f{bottom:127.424000pt;}
.y88{bottom:127.648000pt;}
.y11d{bottom:127.840000pt;}
.ye2{bottom:128.352000pt;}
.y95{bottom:128.386667pt;}
.y13{bottom:130.272000pt;}
.y84{bottom:130.784000pt;}
.ya5{bottom:130.813333pt;}
.yae{bottom:134.106667pt;}
.yd9{bottom:138.786667pt;}
.y68{bottom:138.853333pt;}
.y8e{bottom:139.773333pt;}
.y16{bottom:140.960000pt;}
.y9e{bottom:142.466667pt;}
.y139{bottom:142.906667pt;}
.y6b{bottom:146.720000pt;}
.y73{bottom:147.706667pt;}
.y19{bottom:148.026667pt;}
.ydb{bottom:150.560000pt;}
.y87{bottom:151.653333pt;}
.y32{bottom:152.933333pt;}
.y108{bottom:153.760000pt;}
.y12e{bottom:154.013333pt;}
.y64{bottom:155.106667pt;}
.y6{bottom:155.706667pt;}
.y83{bottom:156.386667pt;}
.y6e{bottom:156.546667pt;}
.yaf{bottom:156.640000pt;}
.y114{bottom:157.146667pt;}
.y144{bottom:157.253333pt;}
.y12{bottom:159.106667pt;}
.y113{bottom:160.800000pt;}
.y2e{bottom:161.053333pt;}
.yd8{bottom:161.186667pt;}
.y67{bottom:167.706667pt;}
.ycf{bottom:167.773333pt;}
.y128{bottom:171.706667pt;}
.y8f{bottom:172.026667pt;}
.y9f{bottom:174.466667pt;}
.y86{bottom:175.653333pt;}
.ybd{bottom:178.013333pt;}
.yb0{bottom:179.200000pt;}
.y115{bottom:180.573333pt;}
.y12b{bottom:180.640000pt;}
.y74{bottom:183.933333pt;}
.y11{bottom:187.906667pt;}
.y6f{bottom:188.573333pt;}
.y70{bottom:192.773333pt;}
.y138{bottom:200.506667pt;}
.yb1{bottom:201.733333pt;}
.y143{bottom:203.680000pt;}
.y116{bottom:204.226667pt;}
.y90{bottom:204.293333pt;}
.y23{bottom:204.480000pt;}
.yda{bottom:205.346667pt;}
.ya0{bottom:206.426667pt;}
.y12a{bottom:207.226667pt;}
.y60{bottom:212.773333pt;}
.y45{bottom:216.000000pt;}
.y10{bottom:216.706667pt;}
.y10c{bottom:217.120000pt;}
.y50{bottom:218.720000pt;}
.y125{bottom:219.840000pt;}
.y5{bottom:222.946667pt;}
.yb2{bottom:224.293333pt;}
.y82{bottom:225.373333pt;}
.y117{bottom:228.133333pt;}
.y137{bottom:229.346667pt;}
.y129{bottom:232.826667pt;}
.ybe{bottom:234.266667pt;}
.y142{bottom:235.680000pt;}
.y91{bottom:236.546667pt;}
.yc5{bottom:236.893333pt;}
.ya1{bottom:238.426667pt;}
.y44{bottom:240.026667pt;}
.yf{bottom:245.506667pt;}
.ya9{bottom:245.760000pt;}
.yb3{bottom:246.853333pt;}
.y124{bottom:248.640000pt;}
.y4f{bottom:250.720000pt;}
.y81{bottom:251.013333pt;}
.y118{bottom:252.253333pt;}
.y109{bottom:253.280000pt;}
.yc4{bottom:256.386667pt;}
.y136{bottom:258.146667pt;}
.y22{bottom:262.106667pt;}
.y43{bottom:264.026667pt;}
.ya8{bottom:265.693333pt;}
.y92{bottom:268.800000pt;}
.yb4{bottom:269.373333pt;}
.ya2{bottom:270.426667pt;}
.y4{bottom:271.013333pt;}
.y4c{bottom:271.360000pt;}
.y3d{bottom:271.746667pt;}
.ye{bottom:274.306667pt;}
.yc3{bottom:275.906667pt;}
.y119{bottom:276.640000pt;}
.y141{bottom:282.080000pt;}
.y100{bottom:282.400000pt;}
.y4e{bottom:282.720000pt;}
.ya7{bottom:285.600000pt;}
.y135{bottom:286.946667pt;}
.y10e{bottom:287.546667pt;}
.y42{bottom:288.026667pt;}
.yf2{bottom:288.293333pt;}
.ybf{bottom:290.533333pt;}
.y21{bottom:290.906667pt;}
.yb5{bottom:291.933333pt;}
.y93{bottom:301.053333pt;}
.y11a{bottom:301.306667pt;}
.ya3{bottom:302.400000pt;}
.yd{bottom:303.133333pt;}
.y80{bottom:303.906667pt;}
.y111{bottom:308.320000pt;}
.y14c{bottom:308.386667pt;}
.yff{bottom:311.386667pt;}
.y41{bottom:312.026667pt;}
.y25{bottom:312.293333pt;}
.y140{bottom:314.080000pt;}
.y4d{bottom:314.746667pt;}
.y20{bottom:319.706667pt;}
.y2d{bottom:323.613333pt;}
.y11b{bottom:326.213333pt;}
.y8a{bottom:326.560000pt;}
.y9a{bottom:328.320000pt;}
.y10b{bottom:330.333333pt;}
.yc8{bottom:331.226667pt;}
.yc{bottom:331.933333pt;}
.y7f{bottom:332.733333pt;}
.y3{bottom:335.013333pt;}
.y14b{bottom:337.213333pt;}
.y24{bottom:337.893333pt;}
.yfe{bottom:340.186667pt;}
.y134{bottom:344.546667pt;}
.y1f{bottom:348.506667pt;}
.y11c{bottom:351.360000pt;}
.y13f{bottom:360.506667pt;}
.yb{bottom:360.733333pt;}
.y7e{bottom:361.533333pt;}
.y14a{bottom:365.946667pt;}
.y10a{bottom:372.160000pt;}
.y105{bottom:373.120000pt;}
.y133{bottom:373.373333pt;}
.y1e{bottom:377.346667pt;}
.y123{bottom:377.986667pt;}
.ya{bottom:389.533333pt;}
.y7d{bottom:390.333333pt;}
.y104{bottom:392.320000pt;}
.yce{bottom:395.360000pt;}
.y2{bottom:399.040000pt;}
.yc9{bottom:399.586667pt;}
.y13b{bottom:404.413333pt;}
.y3c{bottom:405.213333pt;}
.y122{bottom:409.986667pt;}
.y103{bottom:411.520000pt;}
.y149{bottom:417.146667pt;}
.y4b{bottom:417.600000pt;}
.y9{bottom:418.333333pt;}
.y7c{bottom:419.133333pt;}
.y13d{bottom:421.826667pt;}
.y3b{bottom:429.213333pt;}
.y102{bottom:430.720000pt;}
.y1d{bottom:434.946667pt;}
.yf9{bottom:437.760000pt;}
.y13c{bottom:444.253333pt;}
.y47{bottom:445.466667pt;}
.y107{bottom:447.173333pt;}
.y5f{bottom:447.933333pt;}
.y4a{bottom:449.626667pt;}
.y101{bottom:449.946667pt;}
.y3a{bottom:453.533333pt;}
.y37{bottom:455.680000pt;}
.y1{bottom:463.040000pt;}
.y1c{bottom:463.746667pt;}
.yf8{bottom:466.560000pt;}
.y2c{bottom:467.040000pt;}
.y148{bottom:468.386667pt;}
.yfd{bottom:473.053333pt;}
.y13e{bottom:474.266667pt;}
.y7b{bottom:477.413333pt;}
.y39{bottom:479.133333pt;}
.y49{bottom:481.626667pt;}
.y30{bottom:483.066667pt;}
.y132{bottom:488.866667pt;}
.y46{bottom:490.266667pt;}
.y2b{bottom:495.840000pt;}
.y38{bottom:504.413333pt;}
.yf4{bottom:512.066667pt;}
.y48{bottom:513.626667pt;}
.y110{bottom:514.106667pt;}
.yd2{bottom:527.266667pt;}
.yfb{bottom:527.933333pt;}
.yf5{bottom:549.093333pt;}
.yf7{bottom:551.133333pt;}
.y78{bottom:553.440000pt;}
.y14{bottom:553.573333pt;}
.y29{bottom:558.853333pt;}
.y6d{bottom:560.026667pt;}
.y7a{bottom:565.026667pt;}
.yf3{bottom:569.573333pt;}
.y63{bottom:570.373333pt;}
.yc7{bottom:579.813333pt;}
.yf6{bottom:579.933333pt;}
.y51{bottom:584.866667pt;}
.y3e{bottom:587.173333pt;}
.yd5{bottom:588.666667pt;}
.y127{bottom:592.986667pt;}
.y77{bottom:598.240000pt;}
.y17{bottom:598.373333pt;}
.yfa{bottom:602.693333pt;}
.y28{bottom:603.653333pt;}
.y6c{bottom:604.866667pt;}
.y79{bottom:609.853333pt;}
.y89{bottom:613.693333pt;}
.y62{bottom:615.200000pt;}
.yc6{bottom:624.613333pt;}
.yd1{bottom:629.573333pt;}
.yd4{bottom:633.466667pt;}
.y27{bottom:633.600000pt;}
.y1b{bottom:639.106667pt;}
.y10f{bottom:640.733333pt;}
.y112{bottom:652.453333pt;}
.y3f{bottom:652.826667pt;}
.y106{bottom:656.226667pt;}
.y126{bottom:664.346667pt;}
.y131{bottom:669.946667pt;}
.yd0{bottom:674.400000pt;}
.yd3{bottom:678.306667pt;}
.y147{bottom:681.306667pt;}
.yd6{bottom:682.746667pt;}
.yaa{bottom:685.306667pt;}
.h13{height:32.330736pt;}
.h12{height:32.395398pt;}
.h26{height:35.085938pt;}
.h28{height:35.179500pt;}
.h54{height:36.000000pt;}
.h38{height:37.440000pt;}
.h27{height:38.828438pt;}
.h2f{height:38.922000pt;}
.h2c{height:43.038750pt;}
.h2e{height:46.781250pt;}
.h47{height:48.000000pt;}
.h46{height:48.096000pt;}
.hd{height:51.840000pt;}
.h4d{height:54.734062pt;}
.h4e{height:54.827625pt;}
.h34{height:56.160000pt;}
.h35{height:56.256000pt;}
.h4f{height:56.306250pt;}
.h23{height:57.890625pt;}
.he{height:60.000000pt;}
.hf{height:60.096000pt;}
.h15{height:60.800000pt;}
.h20{height:62.135938pt;}
.h22{height:62.229375pt;}
.hb{height:63.840000pt;}
.h31{height:66.703125pt;}
.h4{height:66.720000pt;}
.h30{height:66.792063pt;}
.h1e{height:69.468750pt;}
.h1d{height:71.109375pt;}
.h1f{height:71.204188pt;}
.h6{height:72.000000pt;}
.h7{height:72.096000pt;}
.h3b{height:74.080000pt;}
.h40{height:74.304000pt;}
.h3a{height:74.477812pt;}
.h3f{height:74.605125pt;}
.h3{height:76.800000pt;}
.h1c{height:78.113750pt;}
.h10{height:80.160000pt;}
.ha{height:80.256000pt;}
.h41{height:83.520000pt;}
.h1a{height:85.281823pt;}
.h18{height:87.253333pt;}
.h19{height:87.509333pt;}
.h49{height:87.840000pt;}
.h50{height:87.936000pt;}
.h9{height:96.000000pt;}
.h21{height:97.175000pt;}
.h44{height:98.296875pt;}
.h45{height:98.427937pt;}
.h5{height:99.840000pt;}
.h14{height:99.936000pt;}
.h2a{height:102.875000pt;}
.h51{height:106.305937pt;}
.h43{height:107.875000pt;}
.h33{height:109.437187pt;}
.h32{height:109.568250pt;}
.h8{height:111.840000pt;}
.hc{height:111.936000pt;}
.h4a{height:119.922187pt;}
.h56{height:128.160000pt;}
.h57{height:128.256000pt;}
.h3d{height:128.320000pt;}
.h11{height:134.019000pt;}
.h16{height:142.944000pt;}
.h55{height:144.000000pt;}
.h17{height:150.197500pt;}
.h1b{height:150.300375pt;}
.h3c{height:150.720000pt;}
.h39{height:156.960000pt;}
.h1{height:159.840000pt;}
.h2{height:159.936000pt;}
.h42{height:163.828125pt;}
.h36{height:163.959187pt;}
.h53{height:179.360000pt;}
.h24{height:191.351250pt;}
.h3e{height:195.520000pt;}
.h52{height:218.219062pt;}
.h4b{height:246.560000pt;}
.h2b{height:310.560000pt;}
.h37{height:313.760000pt;}
.h2d{height:324.800000pt;}
.h25{height:330.240000pt;}
.h29{height:355.040000pt;}
.h4c{height:456.800000pt;}
.h48{height:492.960000pt;}
.h0{height:720.000000pt;}
.wc{width:100.480000pt;}
.w7{width:124.000000pt;}
.wa{width:136.800000pt;}
.w2{width:175.095418pt;}
.w8{width:252.320000pt;}
.w9{width:264.960000pt;}
.w3{width:543.040000pt;}
.w4{width:546.400000pt;}
.w6{width:554.720000pt;}
.w5{width:559.520000pt;}
.wb{width:933.120000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8e{left:2.560000pt;}
.x35{left:5.855981pt;}
.x66{left:7.232000pt;}
.x75{left:14.626667pt;}
.x17{left:15.711981pt;}
.x5d{left:16.959981pt;}
.x85{left:19.231981pt;}
.x2b{left:22.399981pt;}
.xe{left:23.455981pt;}
.x64{left:24.703981pt;}
.x4d{left:25.760000pt;}
.x5c{left:27.519981pt;}
.x22{left:33.439981pt;}
.x1b{left:37.663981pt;}
.x1d{left:38.943981pt;}
.x59{left:40.480000pt;}
.x26{left:41.407981pt;}
.x2d{left:43.147931pt;}
.x53{left:44.224000pt;}
.x1f{left:46.431981pt;}
.x52{left:50.912000pt;}
.x72{left:52.383981pt;}
.x86{left:53.471981pt;}
.x47{left:54.943981pt;}
.x5{left:59.199981pt;}
.x51{left:61.920000pt;}
.xd{left:63.455981pt;}
.x96{left:65.215981pt;}
.x21{left:66.879981pt;}
.x6{left:69.439981pt;}
.x7{left:70.623981pt;}
.x3e{left:77.119981pt;}
.x4c{left:78.400000pt;}
.x55{left:84.506667pt;}
.x87{left:85.631981pt;}
.x11{left:86.623981pt;}
.x65{left:88.320000pt;}
.x39{left:94.399981pt;}
.x1{left:95.359981pt;}
.x5b{left:98.146667pt;}
.x97{left:101.247981pt;}
.x54{left:107.840000pt;}
.x3a{left:110.911981pt;}
.x30{left:112.633051pt;}
.x5a{left:115.040000pt;}
.x8{left:116.511981pt;}
.xb{left:120.063981pt;}
.x2e{left:126.238029pt;}
.x2{left:128.511981pt;}
.x2f{left:153.982667pt;}
.x7b{left:160.160000pt;}
.x83{left:167.133333pt;}
.x3c{left:170.746648pt;}
.x84{left:177.026648pt;}
.x36{left:187.679981pt;}
.x91{left:196.253314pt;}
.x99{left:199.546648pt;}
.x56{left:201.440000pt;}
.x57{left:202.653333pt;}
.x9b{left:206.266648pt;}
.x81{left:207.173333pt;}
.x67{left:212.160000pt;}
.x88{left:215.866648pt;}
.x9a{left:220.026648pt;}
.x42{left:226.693314pt;}
.x68{left:227.999981pt;}
.x69{left:229.279981pt;}
.x7f{left:231.226667pt;}
.x1c{left:232.639981pt;}
.x7e{left:233.626667pt;}
.x1a{left:235.293314pt;}
.x7d{left:237.120000pt;}
.x23{left:238.399981pt;}
.x4e{left:239.586667pt;}
.x31{left:241.093314pt;}
.x20{left:242.693314pt;}
.x93{left:243.999981pt;}
.x24{left:247.039981pt;}
.x33{left:248.773314pt;}
.x7c{left:256.066667pt;}
.x27{left:260.159981pt;}
.x4{left:262.746648pt;}
.x28{left:267.359981pt;}
.x46{left:270.853314pt;}
.x3f{left:272.319981pt;}
.x3{left:273.786648pt;}
.x7a{left:276.346648pt;}
.x32{left:280.479981pt;}
.x41{left:285.986648pt;}
.x80{left:313.693333pt;}
.x34{left:317.599981pt;}
.x18{left:327.679981pt;}
.x6f{left:337.373314pt;}
.x5e{left:347.173314pt;}
.x29{left:348.159981pt;}
.x1e{left:352.986648pt;}
.x25{left:382.879981pt;}
.x4f{left:384.066667pt;}
.x82{left:389.853333pt;}
.x2a{left:445.279981pt;}
.x19{left:454.266648pt;}
.x89{left:466.053314pt;}
.x3b{left:475.999981pt;}
.x70{left:487.973314pt;}
.x37{left:492.319981pt;}
.x98{left:494.653314pt;}
.x43{left:499.613314pt;}
.x9{left:513.306648pt;}
.x63{left:558.466648pt;}
.x92{left:566.746648pt;}
.xc{left:568.093314pt;}
.xa{left:569.759981pt;}
.x9c{left:605.253314pt;}
.x58{left:626.560000pt;}
.x50{left:630.720000pt;}
.x6a{left:632.066648pt;}
.x6b{left:633.093314pt;}
.x44{left:652.413314pt;}
.x45{left:670.333314pt;}
.x2c{left:674.331655pt;}
.x79{left:683.679981pt;}
.x60{left:687.653314pt;}
.xf{left:715.333314pt;}
.x12{left:725.279981pt;}
.x10{left:731.333314pt;}
.x4a{left:751.266648pt;}
.x5f{left:810.053314pt;}
.x74{left:831.520000pt;}
.x40{left:841.786648pt;}
.x48{left:856.986648pt;}
.x3d{left:871.226648pt;}
.x62{left:872.959981pt;}
.x49{left:887.066648pt;}
.x61{left:889.253314pt;}
.x8a{left:892.293314pt;}
.x8c{left:894.586648pt;}
.x8f{left:902.106648pt;}
.x90{left:907.546648pt;}
.x78{left:922.973314pt;}
.x76{left:939.133314pt;}
.x4b{left:943.933314pt;}
.x13{left:954.813314pt;}
.x15{left:976.506648pt;}
.x16{left:980.386648pt;}
.x8b{left:989.093314pt;}
.x6e{left:990.399981pt;}
.x73{left:998.973314pt;}
.x14{left:1000.413314pt;}
.x38{left:1019.653314pt;}
.x71{left:1046.559981pt;}
.x77{left:1096.320000pt;}
.x95{left:1114.399981pt;}
.x6d{left:1137.693314pt;}
.x94{left:1147.039981pt;}
.x8d{left:1165.120000pt;}
.x6c{left:1187.546648pt;}
}




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