
    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_e78f9a0291fa86497347cc73.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ae6893fb2dae635054870483.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_216172622ee8e169d9f4b2bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_48aa2ae6c6809dcd2e1435c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94ffa7be89c02942f69faa78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_6063bdc5ba90cbb97ed298c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_cf48b8c68e3aa74aa7f055c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854980;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_041c1571a9702581bfb26be7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_5cbe66b16481181739e8f1b2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e2d338e3df4bb0965c432a3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_19ee4f7816ee9c11d17269d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_65b80b87bf36db28bdcf8274.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_ec01cd03b5be25b5aef86e0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_d6003f9b00c2bfe9fd42b7e5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_f0018494d39c39edcc49aac6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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_a5209626d2113e015eb619c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls37{letter-spacing:-3.396000px;}
.ls35{letter-spacing:-2.364000px;}
.ls36{letter-spacing:-2.268000px;}
.ls24{letter-spacing:-2.214000px;}
.ls19{letter-spacing:-1.242000px;}
.ls11{letter-spacing:-1.230000px;}
.ls38{letter-spacing:-1.182000px;}
.ls3f{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.876000px;}
.ls10{letter-spacing:-0.858000px;}
.ls26{letter-spacing:-0.828000px;}
.ls1d{letter-spacing:-0.816000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls1c{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.529200px;}
.ls2c{letter-spacing:-0.518400px;}
.ls25{letter-spacing:-0.513600px;}
.ls39{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.259800px;}
.ls3e{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls34{letter-spacing:0.153600px;}
.ls13{letter-spacing:0.169200px;}
.ls7{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.209400px;}
.ls15{letter-spacing:0.220200px;}
.ls14{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.306600px;}
.ls20{letter-spacing:0.316800px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls2e{letter-spacing:0.513600px;}
.ls23{letter-spacing:0.586800px;}
.ls29{letter-spacing:0.738000px;}
.ls3{letter-spacing:0.786240px;}
.ls2f{letter-spacing:0.828000px;}
.ls17{letter-spacing:0.858000px;}
.lsf{letter-spacing:0.870000px;}
.ls16{letter-spacing:0.882000px;}
.ls28{letter-spacing:0.888000px;}
.ls2d{letter-spacing:0.900000px;}
.ls22{letter-spacing:0.954000px;}
.ls21{letter-spacing:1.620000px;}
.ls9{letter-spacing:4.500000px;}
.ls2b{letter-spacing:8.820000px;}
.ls3b{letter-spacing:11.700000px;}
.ls3c{letter-spacing:15.300000px;}
.ls32{letter-spacing:16.506720px;}
.ls33{letter-spacing:25.380000px;}
.ls31{letter-spacing:28.260000px;}
.ls30{letter-spacing:46.026720px;}
.ls3a{letter-spacing:65.100000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws1d{word-spacing:-15.894000px;}
.ws1e{word-spacing:-15.828000px;}
.ws10{word-spacing:-15.822000px;}
.wsc{word-spacing:-15.810000px;}
.ws11{word-spacing:-15.798000px;}
.ws21{word-spacing:-15.768000px;}
.ws1f{word-spacing:-15.678000px;}
.ws18{word-spacing:-15.526800px;}
.ws20{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.256800px;}
.ws13{word-spacing:-15.246600px;}
.wse{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.160200px;}
.ws1c{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.109200px;}
.ws24{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.ws27{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws25{word-spacing:-14.479800px;}
.ws1a{word-spacing:-14.426400px;}
.ws12{word-spacing:-14.166000px;}
.ws1b{word-spacing:-14.112000px;}
.ws28{word-spacing:-13.860000px;}
.ws26{word-spacing:-13.758000px;}
.ws8{word-spacing:-13.505760px;}
.ws19{word-spacing:-12.726000px;}
.ws23{word-spacing:-12.672000px;}
.ws22{word-spacing:-12.576000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-5.557680px;}
._3{margin-left:-4.158000px;}
._2{margin-left:-3.047760px;}
._0{margin-left:-1.080000px;}
._1{width:1.236000px;}
._8{width:2.412240px;}
._7{width:3.425280px;}
._d{width:4.463040px;}
._b{width:6.334560px;}
._10{width:7.854480px;}
._1c{width:8.933760px;}
._11{width:9.979920px;}
._5{width:11.421600px;}
._6{width:12.592320px;}
._c{width:13.781760px;}
._14{width:16.008480px;}
._13{width:17.198400px;}
._33{width:18.213120px;}
._15{width:19.306800px;}
._25{width:21.197760px;}
._9{width:22.290480px;}
._a{width:23.922960px;}
._32{width:25.061760px;}
._2c{width:26.432880px;}
._26{width:28.330800px;}
._2b{width:30.483600px;}
._24{width:32.451840px;}
._27{width:34.505280px;}
._28{width:36.867600px;}
._29{width:38.125440px;}
._12{width:39.204000px;}
._17{width:40.224624px;}
._f{width:48.534960px;}
._e{width:53.724240px;}
._21{width:57.969280px;}
._36{width:59.226480px;}
._34{width:60.376560px;}
._35{width:63.140640px;}
._16{width:64.767024px;}
._2a{width:66.113520px;}
._2e{width:67.725360px;}
._30{width:70.513440px;}
._20{width:73.406736px;}
._1a{width:76.206658px;}
._2f{width:78.226560px;}
._31{width:82.234224px;}
._1b{width:86.668483px;}
._3a{width:88.352880px;}
._39{width:89.469600px;}
._1d{width:102.105939px;}
._1e{width:112.567764px;}
._18{width:115.057231px;}
._37{width:118.343760px;}
._38{width:119.541840px;}
._1f{width:125.186385px;}
._23{width:134.967141px;}
._19{width:142.075849px;}
._22{width:175.603897px;}
._2d{width:207.326640px;}
.fc7{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc8{color:rgb(5,99,193);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y113{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y4a{bottom:3.960000px;}
.y85{bottom:4.320000px;}
.y82{bottom:4.500000px;}
.yc6{bottom:4.545000px;}
.y95{bottom:4.674000px;}
.y92{bottom:4.680000px;}
.y18{bottom:4.860000px;}
.yd6{bottom:5.040000px;}
.yd4{bottom:5.220000px;}
.yfd{bottom:6.120000px;}
.yf4{bottom:6.300000px;}
.yee{bottom:9.180000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.y12d{bottom:13.500000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y137{bottom:17.460000px;}
.y2{bottom:20.196000px;}
.y44{bottom:20.340000px;}
.ya3{bottom:20.520000px;}
.y104{bottom:20.550000px;}
.yfa{bottom:20.565000px;}
.y121{bottom:21.600000px;}
.y49{bottom:22.365000px;}
.y80{bottom:22.860000px;}
.y47{bottom:25.425000px;}
.yed{bottom:26.460000px;}
.y17{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y12c{bottom:30.645000px;}
.y136{bottom:34.740000px;}
.y5{bottom:36.720000px;}
.y43{bottom:37.620000px;}
.yf0{bottom:37.830000px;}
.y120{bottom:38.880000px;}
.y16{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y42{bottom:54.900000px;}
.y1{bottom:57.780000px;}
.y15{bottom:61.605000px;}
.y14{bottom:72.045000px;}
.y41{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y40{bottom:89.460000px;}
.y13{bottom:90.405000px;}
.y8{bottom:93.090000px;}
.y3f{bottom:106.740000px;}
.y12{bottom:109.485000px;}
.y56{bottom:111.096000px;}
.y7{bottom:111.270000px;}
.y167{bottom:112.896000px;}
.y14a{bottom:114.876000px;}
.yd2{bottom:115.956000px;}
.y134{bottom:116.496000px;}
.y17b{bottom:119.376000px;}
.y3e{bottom:123.840000px;}
.y102{bottom:123.876000px;}
.y55{bottom:128.376000px;}
.y96{bottom:128.736000px;}
.y166{bottom:130.176000px;}
.yd1{bottom:133.236000px;}
.y133{bottom:133.776000px;}
.y11{bottom:135.225000px;}
.y17a{bottom:136.476000px;}
.y3d{bottom:141.120000px;}
.y54{bottom:145.656000px;}
.y165{bottom:147.456000px;}
.y94{bottom:148.536000px;}
.yd0{bottom:150.330000px;}
.y132{bottom:151.050000px;}
.y179{bottom:153.750000px;}
.y3c{bottom:158.400000px;}
.y101{bottom:159.510000px;}
.y10{bottom:159.525000px;}
.y53{bottom:162.930000px;}
.y164{bottom:164.730000px;}
.ycf{bottom:165.630000px;}
.y93{bottom:168.330000px;}
.y178{bottom:171.030000px;}
.y3b{bottom:175.680000px;}
.y52{bottom:180.210000px;}
.y163{bottom:182.010000px;}
.yce{bottom:185.430000px;}
.y91{bottom:188.130000px;}
.y177{bottom:188.310000px;}
.y3a{bottom:192.960000px;}
.y100{bottom:195.150000px;}
.y51{bottom:197.310000px;}
.y162{bottom:199.290000px;}
.y131{bottom:200.730000px;}
.y2a{bottom:201.240000px;}
.ycd{bottom:205.230000px;}
.y176{bottom:205.590000px;}
.y39{bottom:210.060000px;}
.y90{bottom:211.170000px;}
.y50{bottom:214.590000px;}
.y161{bottom:216.390000px;}
.y29{bottom:216.540000px;}
.y130{bottom:219.090000px;}
.y175{bottom:222.870000px;}
.ycc{bottom:225.030000px;}
.y38{bottom:227.340000px;}
.y8f{bottom:228.450000px;}
.y4f{bottom:231.870000px;}
.y160{bottom:233.670000px;}
.yff{bottom:234.030000px;}
.y28{bottom:234.180000px;}
.y174{bottom:239.970000px;}
.y37{bottom:244.620000px;}
.y8e{bottom:245.730000px;}
.ycb{bottom:248.070000px;}
.y4e{bottom:249.150000px;}
.y15f{bottom:250.950000px;}
.yfe{bottom:251.310000px;}
.y27{bottom:251.460000px;}
.y12f{bottom:254.730000px;}
.y173{bottom:257.250000px;}
.y36{bottom:261.930000px;}
.y8d{bottom:263.010000px;}
.yca{bottom:265.170000px;}
.y4d{bottom:266.430000px;}
.y15e{bottom:268.230000px;}
.y26{bottom:268.770000px;}
.y12e{bottom:273.090000px;}
.y172{bottom:274.530000px;}
.y35{bottom:279.210000px;}
.y8c{bottom:280.290000px;}
.yc9{bottom:282.450000px;}
.y4c{bottom:283.530000px;}
.y15d{bottom:285.510000px;}
.y25{bottom:286.590000px;}
.yfc{bottom:287.850000px;}
.y171{bottom:291.810000px;}
.y34{bottom:296.490000px;}
.y8b{bottom:297.570000px;}
.yc8{bottom:299.730000px;}
.y4b{bottom:300.810000px;}
.y15c{bottom:302.610000px;}
.y24{bottom:303.150000px;}
.y12b{bottom:308.730000px;}
.yfb{bottom:309.090000px;}
.y33{bottom:313.590000px;}
.y8a{bottom:314.670000px;}
.y46{bottom:314.850000px;}
.yc7{bottom:317.010000px;}
.y23{bottom:319.530000px;}
.y15b{bottom:319.890000px;}
.y170{bottom:326.370000px;}
.yf9{bottom:330.510000px;}
.y32{bottom:330.870000px;}
.y89{bottom:331.950000px;}
.yc5{bottom:332.130000px;}
.y22{bottom:336.630000px;}
.y15a{bottom:337.215000px;}
.y16f{bottom:343.515000px;}
.y31{bottom:348.150000px;}
.y88{bottom:349.275000px;}
.y1b{bottom:351.615000px;}
.yc4{bottom:351.795000px;}
.y21{bottom:354.090000px;}
.y159{bottom:354.495000px;}
.y12a{bottom:357.915000px;}
.y16e{bottom:360.795000px;}
.y30{bottom:365.430000px;}
.yf8{bottom:366.195000px;}
.y87{bottom:366.555000px;}
.y20{bottom:371.550000px;}
.yc3{bottom:371.595000px;}
.y158{bottom:371.775000px;}
.y129{bottom:375.015000px;}
.y16d{bottom:378.075000px;}
.y86{bottom:381.675000px;}
.y2f{bottom:382.710000px;}
.yf7{bottom:387.615000px;}
.y1f{bottom:388.830000px;}
.y157{bottom:389.055000px;}
.yc2{bottom:391.395000px;}
.y128{bottom:392.295000px;}
.y16c{bottom:395.355000px;}
.y2e{bottom:399.990000px;}
.y84{bottom:401.295000px;}
.y149{bottom:402.375000px;}
.y156{bottom:406.155000px;}
.y1e{bottom:409.170000px;}
.y127{bottom:409.575000px;}
.y16b{bottom:412.635000px;}
.yc1{bottom:414.255000px;}
.y148{bottom:416.415000px;}
.y2d{bottom:417.090000px;}
.y83{bottom:420.735000px;}
.y155{bottom:423.435000px;}
.y126{bottom:426.855000px;}
.y16a{bottom:429.915000px;}
.yc0{bottom:431.535000px;}
.yf6{bottom:432.435000px;}
.y2c{bottom:434.370000px;}
.y1d{bottom:436.530000px;}
.y7f{bottom:440.355000px;}
.y154{bottom:440.715000px;}
.y125{bottom:441.975000px;}
.y169{bottom:447.015000px;}
.ybf{bottom:448.815000px;}
.yf5{bottom:449.715000px;}
.y2b{bottom:451.650000px;}
.y1c{bottom:454.350000px;}
.y153{bottom:457.995000px;}
.y81{bottom:458.715000px;}
.y124{bottom:460.335000px;}
.y168{bottom:464.295000px;}
.yf3{bottom:464.835000px;}
.ybe{bottom:466.095000px;}
.y152{bottom:475.275000px;}
.y7e{bottom:481.575000px;}
.ybd{bottom:483.375000px;}
.yf2{bottom:486.255000px;}
.y151{bottom:492.555000px;}
.y123{bottom:495.975000px;}
.y7d{bottom:498.855000px;}
.ybc{bottom:500.475000px;}
.y150{bottom:509.655000px;}
.y7c{bottom:516.135000px;}
.ybb{bottom:517.755000px;}
.yf1{bottom:521.895000px;}
.y14f{bottom:526.935000px;}
.y122{bottom:531.615000px;}
.y7b{bottom:533.235000px;}
.yba{bottom:535.035000px;}
.y14e{bottom:544.215000px;}
.y11f{bottom:549.975000px;}
.y7a{bottom:550.515000px;}
.yb9{bottom:552.315000px;}
.y14d{bottom:558.255000px;}
.y79{bottom:567.795000px;}
.yb8{bottom:569.595000px;}
.yef{bottom:574.635000px;}
.y78{bottom:585.075000px;}
.yb7{bottom:586.695000px;}
.y77{bottom:602.355000px;}
.yb6{bottom:604.005000px;}
.y11e{bottom:607.245000px;}
.y76{bottom:619.665000px;}
.yb5{bottom:621.285000px;}
.y11d{bottom:624.525000px;}
.yec{bottom:627.585000px;}
.y75{bottom:636.765000px;}
.yb4{bottom:638.565000px;}
.y11c{bottom:641.625000px;}
.y74{bottom:654.045000px;}
.yb3{bottom:655.845000px;}
.y11b{bottom:658.905000px;}
.y73{bottom:671.325000px;}
.yeb{bottom:672.405000px;}
.yb2{bottom:673.125000px;}
.y11a{bottom:676.185000px;}
.y72{bottom:688.605000px;}
.yea{bottom:689.685000px;}
.yb1{bottom:690.225000px;}
.y119{bottom:693.465000px;}
.y147{bottom:696.345000px;}
.y71{bottom:705.885000px;}
.ye9{bottom:706.965000px;}
.yb0{bottom:707.505000px;}
.y118{bottom:708.585000px;}
.y146{bottom:711.465000px;}
.y70{bottom:723.165000px;}
.ye8{bottom:724.245000px;}
.yaf{bottom:724.785000px;}
.y145{bottom:732.885000px;}
.y6f{bottom:740.265000px;}
.ye7{bottom:741.525000px;}
.yae{bottom:742.065000px;}
.y117{bottom:744.225000px;}
.y144{bottom:754.305000px;}
.y6e{bottom:757.545000px;}
.ye6{bottom:758.625000px;}
.yad{bottom:759.345000px;}
.y116{bottom:762.585000px;}
.y6d{bottom:774.825000px;}
.y143{bottom:775.545000px;}
.ye5{bottom:775.905000px;}
.yac{bottom:776.625000px;}
.y6c{bottom:792.105000px;}
.ye4{bottom:793.185000px;}
.yab{bottom:793.725000px;}
.y142{bottom:796.965000px;}
.y115{bottom:798.225000px;}
.y6b{bottom:809.385000px;}
.ye3{bottom:810.465000px;}
.yaa{bottom:811.005000px;}
.y19{bottom:817.305000px;}
.y6a{bottom:826.485000px;}
.ye2{bottom:827.745000px;}
.ya9{bottom:828.285000px;}
.y114{bottom:833.865000px;}
.y141{bottom:835.845000px;}
.y69{bottom:843.765000px;}
.ye1{bottom:845.025000px;}
.ya8{bottom:845.565000px;}
.yf{bottom:846.825000px;}
.y140{bottom:853.125000px;}
.y68{bottom:861.045000px;}
.ye0{bottom:862.125000px;}
.ya7{bottom:862.845000px;}
.y14c{bottom:864.105000px;}
.y112{bottom:869.505000px;}
.y13f{bottom:870.405000px;}
.y14b{bottom:878.190000px;}
.y67{bottom:878.370000px;}
.ydf{bottom:879.450000px;}
.ya6{bottom:880.170000px;}
.y13e{bottom:887.730000px;}
.y66{bottom:895.650000px;}
.yde{bottom:896.730000px;}
.ya5{bottom:897.270000px;}
.y13d{bottom:904.830000px;}
.y111{bottom:908.430000px;}
.ya4{bottom:912.390000px;}
.y65{bottom:912.930000px;}
.ydd{bottom:914.010000px;}
.y13c{bottom:919.950000px;}
.y110{bottom:925.530000px;}
.y64{bottom:930.030000px;}
.ya2{bottom:930.750000px;}
.ydc{bottom:931.290000px;}
.y13b{bottom:941.370000px;}
.y10f{bottom:942.810000px;}
.y63{bottom:947.310000px;}
.ydb{bottom:948.390000px;}
.y10e{bottom:960.090000px;}
.y62{bottom:964.590000px;}
.yda{bottom:965.670000px;}
.ya1{bottom:966.390000px;}
.y13a{bottom:977.010000px;}
.y10d{bottom:977.370000px;}
.yd9{bottom:980.790000px;}
.y61{bottom:981.870000px;}
.ya0{bottom:984.750000px;}
.y10c{bottom:994.650000px;}
.y60{bottom:999.150000px;}
.yd8{bottom:1001.130000px;}
.y9f{bottom:1003.290000px;}
.y10b{bottom:1011.930000px;}
.y139{bottom:1012.650000px;}
.y5f{bottom:1016.430000px;}
.yd7{bottom:1021.290000px;}
.yd{bottom:1021.470000px;}
.y9e{bottom:1024.890000px;}
.y10a{bottom:1029.030000px;}
.y5e{bottom:1033.530000px;}
.yd5{bottom:1041.630000px;}
.y9d{bottom:1041.990000px;}
.y109{bottom:1046.310000px;}
.y6{bottom:1046.850000px;}
.y138{bottom:1048.290000px;}
.y5d{bottom:1050.810000px;}
.y9c{bottom:1059.270000px;}
.yd3{bottom:1061.790000px;}
.y108{bottom:1063.590000px;}
.y5c{bottom:1068.090000px;}
.y9b{bottom:1076.550000px;}
.y107{bottom:1080.870000px;}
.y135{bottom:1083.930000px;}
.y5b{bottom:1085.370000px;}
.y9a{bottom:1093.830000px;}
.y106{bottom:1095.990000px;}
.y5a{bottom:1102.650000px;}
.y99{bottom:1108.950000px;}
.y105{bottom:1114.350000px;}
.y59{bottom:1119.930000px;}
.y98{bottom:1128.750000px;}
.y103{bottom:1132.710000px;}
.y58{bottom:1137.030000px;}
.y97{bottom:1148.580000px;}
.y57{bottom:1154.340000px;}
.h27{height:17.100000px;}
.h23{height:17.280000px;}
.h24{height:18.360000px;}
.h22{height:18.540000px;}
.h29{height:18.576000px;}
.h25{height:18.720000px;}
.h26{height:18.756000px;}
.h2b{height:19.080000px;}
.h2a{height:19.260000px;}
.h30{height:20.160000px;}
.h31{height:20.340000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h2f{height:34.380000px;}
.h33{height:34.416000px;}
.h28{height:34.560000px;}
.h32{height:34.596000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1f{height:36.756000px;}
.h21{height:36.900000px;}
.h1c{height:38.818125px;}
.h19{height:40.243711px;}
.h2c{height:40.500000px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.281367px;}
.h37{height:43.506914px;}
.he{height:44.002969px;}
.h35{height:44.676000px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h20{height:48.088125px;}
.h36{height:48.780000px;}
.h2e{height:51.660000px;}
.h2d{height:51.876000px;}
.h34{height:52.920000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:174.630000px;}
.h16{height:465.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:29.700000px;}
.w42{width:45.396000px;}
.wc{width:53.820000px;}
.w5c{width:57.996000px;}
.w5d{width:58.140000px;}
.w2a{width:58.500000px;}
.w4b{width:64.440000px;}
.w49{width:64.620000px;}
.w4a{width:64.656000px;}
.w29{width:65.160000px;}
.w34{width:65.340000px;}
.w2b{width:65.376000px;}
.w4f{width:70.920000px;}
.w55{width:71.136000px;}
.w3f{width:71.640000px;}
.w2c{width:71.820000px;}
.w2e{width:71.856000px;}
.w3{width:73.080000px;}
.w65{width:77.976000px;}
.w28{width:78.516000px;}
.w15{width:79.416000px;}
.w58{width:84.240000px;}
.w57{width:84.276000px;}
.w64{width:84.420000px;}
.w4e{width:84.456000px;}
.w2d{width:84.960000px;}
.w37{width:85.176000px;}
.w5e{width:90.900000px;}
.w56{width:90.936000px;}
.w4c{width:91.116000px;}
.w38{width:91.620000px;}
.w35{width:91.656000px;}
.w33{width:91.836000px;}
.w4d{width:97.560000px;}
.w54{width:97.596000px;}
.w3e{width:98.280000px;}
.w36{width:98.460000px;}
.w43{width:98.496000px;}
.w60{width:103.860000px;}
.w11{width:104.256000px;}
.w44{width:105.120000px;}
.w3d{width:105.156000px;}
.w5f{width:110.736000px;}
.w66{width:117.180000px;}
.w48{width:117.216000px;}
.w20{width:122.616000px;}
.wd{width:122.796000px;}
.w61{width:123.696000px;}
.w62{width:123.840000px;}
.w30{width:124.956000px;}
.w51{width:130.320000px;}
.w50{width:130.356000px;}
.w3a{width:131.580000px;}
.w39{width:131.616000px;}
.w41{width:131.760000px;}
.we{width:136.620000px;}
.w59{width:136.836000px;}
.w40{width:138.276000px;}
.w27{width:138.456000px;}
.w23{width:138.600000px;}
.w21{width:140.976000px;}
.w2f{width:144.756000px;}
.w45{width:144.900000px;}
.w1f{width:147.060000px;}
.w5{width:151.950000px;}
.w22{width:152.670000px;}
.w53{width:156.450000px;}
.w32{width:157.890000px;}
.w31{width:158.040000px;}
.w67{width:163.470000px;}
.w1e{width:167.790000px;}
.w24{width:169.410000px;}
.w5b{width:169.590000px;}
.w19{width:169.920000px;}
.w68{width:169.950000px;}
.w1b{width:171.750000px;}
.w1a{width:171.930000px;}
.w3c{width:177.870000px;}
.w1d{width:180.390000px;}
.w5a{width:189.570000px;}
.w52{width:189.750000px;}
.w47{width:191.010000px;}
.w3b{width:191.190000px;}
.w46{width:204.690000px;}
.w16{width:210.450000px;}
.w18{width:211.575000px;}
.w63{width:215.850000px;}
.w8{width:223.455000px;}
.w1c{width:230.115000px;}
.w14{width:283.350000px;}
.w69{width:287.850000px;}
.w25{width:294.735000px;}
.w12{width:308.235000px;}
.w26{width:309.090000px;}
.w10{width:314.130000px;}
.wb{width:315.570000px;}
.wa{width:412.125000px;}
.wf{width:413.565000px;}
.w17{width:439.995000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.200000px;}
.x2{left:8.676000px;}
.xe{left:11.556000px;}
.x10{left:12.600000px;}
.x3c{left:16.056000px;}
.x74{left:18.540000px;}
.x47{left:21.060000px;}
.xb{left:22.896000px;}
.x1b{left:24.480000px;}
.x73{left:25.956000px;}
.x22{left:27.720000px;}
.x1e{left:29.340000px;}
.x1c{left:31.680000px;}
.x16{left:34.200000px;}
.x33{left:36.936000px;}
.x23{left:39.420000px;}
.x46{left:41.076000px;}
.x8b{left:43.776000px;}
.x63{left:46.260000px;}
.x20{left:48.060000px;}
.x43{left:49.500000px;}
.x87{left:51.300000px;}
.x62{left:53.136000px;}
.x6c{left:54.180000px;}
.x38{left:55.620000px;}
.x4a{left:57.645000px;}
.x1f{left:59.220000px;}
.x5c{left:61.020000px;}
.x40{left:62.460000px;}
.x5f{left:64.665000px;}
.x4b{left:65.880000px;}
.x61{left:68.040000px;}
.x51{left:69.660000px;}
.x50{left:71.670000px;}
.x4f{left:75.270000px;}
.x56{left:79.605000px;}
.x1{left:81.000000px;}
.x14{left:82.080000px;}
.x11{left:85.499987px;}
.x37{left:97.050000px;}
.x4{left:98.130000px;}
.x29{left:104.445000px;}
.x12{left:108.035987px;}
.x97{left:112.545000px;}
.x2c{left:115.245000px;}
.x96{left:116.820000px;}
.x2d{left:118.080000px;}
.x2b{left:119.340000px;}
.x31{left:122.985000px;}
.x30{left:124.560000px;}
.x2e{left:127.305000px;}
.x75{left:128.556000px;}
.x21{left:135.210000px;}
.xc{left:136.290000px;}
.x2f{left:139.005000px;}
.x1d{left:142.590000px;}
.x8c{left:154.470000px;}
.x35{left:159.705000px;}
.x34{left:162.570000px;}
.x27{left:164.385000px;}
.x65{left:175.170000px;}
.x25{left:177.870000px;}
.x84{left:180.930000px;}
.x28{left:187.410000px;}
.x13{left:188.489987px;}
.x7d{left:200.550000px;}
.x76{left:201.630000px;}
.x53{left:205.770000px;}
.xd{left:216.075000px;}
.x8d{left:220.170000px;}
.x58{left:221.610000px;}
.x42{left:225.030000px;}
.x5{left:232.950000px;}
.x66{left:241.410000px;}
.x85{left:246.630000px;}
.x83{left:248.609987px;}
.x52{left:251.849987px;}
.x6e{left:254.730000px;}
.x41{left:258.510000px;}
.x7e{left:266.250000px;}
.x8{left:272.235000px;}
.x77{left:274.530000px;}
.x8e{left:279.435000px;}
.x6d{left:281.414987px;}
.x3d{left:284.655000px;}
.x3e{left:288.435000px;}
.x4c{left:290.414987px;}
.x64{left:293.654987px;}
.x39{left:295.095000px;}
.x3a{left:299.055000px;}
.x44{left:300.675000px;}
.xf{left:304.455000px;}
.x67{left:307.875000px;}
.x4d{left:313.275000px;}
.x86{left:319.035000px;}
.x57{left:322.634987px;}
.x1a{left:324.975000px;}
.x6f{left:327.675000px;}
.x6{left:331.995000px;}
.x94{left:333.074987px;}
.x78{left:340.995000px;}
.x8f{left:345.135000px;}
.x24{left:347.114987px;}
.x7{left:351.255000px;}
.x32{left:363.314987px;}
.xa{left:365.475000px;}
.x59{left:367.635000px;}
.x3f{left:369.435000px;}
.x36{left:374.115000px;}
.x88{left:384.735000px;}
.x70{left:394.095000px;}
.x9b{left:396.074987px;}
.x7f{left:397.875000px;}
.x45{left:402.555000px;}
.x90{left:404.355000px;}
.x79{left:413.895000px;}
.x5a{left:427.215000px;}
.x3b{left:438.195000px;}
.x9{left:439.500000px;}
.x68{left:440.715000px;}
.x99{left:446.474987px;}
.x89{left:450.615000px;}
.x71{left:460.515000px;}
.x80{left:463.575000px;}
.x48{left:465.915000px;}
.x5b{left:493.665000px;}
.x15{left:495.285000px;}
.x26{left:496.725000px;}
.x54{left:501.765000px;}
.x91{left:503.025000px;}
.x7a{left:513.465000px;}
.x95{left:523.005000px;}
.x2a{left:527.505000px;}
.x69{left:533.445000px;}
.x8a{left:542.625000px;}
.x18{left:550.365000px;}
.x72{left:553.425000px;}
.x81{left:555.765000px;}
.x5d{left:566.745000px;}
.x92{left:595.005000px;}
.x7b{left:619.845000px;}
.x6a{left:632.985000px;}
.x49{left:639.105000px;}
.x55{left:641.445000px;}
.x5e{left:652.965000px;}
.x82{left:654.405000px;}
.x4e{left:663.810000px;}
.x19{left:674.250000px;}
.x93{left:707.010000px;}
.x7c{left:712.590000px;}
.x6b{left:719.250000px;}
.x60{left:725.910000px;}
.x98{left:733.469987px;}
.x3{left:739.050000px;}
.x9a{left:742.829987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls37{letter-spacing:-3.018667pt;}
.ls35{letter-spacing:-2.101333pt;}
.ls36{letter-spacing:-2.016000pt;}
.ls24{letter-spacing:-1.968000pt;}
.ls19{letter-spacing:-1.104000pt;}
.ls11{letter-spacing:-1.093333pt;}
.ls38{letter-spacing:-1.050667pt;}
.ls3f{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.778667pt;}
.ls10{letter-spacing:-0.762667pt;}
.ls26{letter-spacing:-0.736000pt;}
.ls1d{letter-spacing:-0.725333pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls1c{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.470400pt;}
.ls2c{letter-spacing:-0.460800pt;}
.ls25{letter-spacing:-0.456533pt;}
.ls39{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.230933pt;}
.ls3e{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls34{letter-spacing:0.136533pt;}
.ls13{letter-spacing:0.150400pt;}
.ls7{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.186133pt;}
.ls15{letter-spacing:0.195733pt;}
.ls14{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.272533pt;}
.ls20{letter-spacing:0.281600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls2e{letter-spacing:0.456533pt;}
.ls23{letter-spacing:0.521600pt;}
.ls29{letter-spacing:0.656000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls2f{letter-spacing:0.736000pt;}
.ls17{letter-spacing:0.762667pt;}
.lsf{letter-spacing:0.773333pt;}
.ls16{letter-spacing:0.784000pt;}
.ls28{letter-spacing:0.789333pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.848000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls2b{letter-spacing:7.840000pt;}
.ls3b{letter-spacing:10.400000pt;}
.ls3c{letter-spacing:13.600000pt;}
.ls32{letter-spacing:14.672640pt;}
.ls33{letter-spacing:22.560000pt;}
.ls31{letter-spacing:25.120000pt;}
.ls30{letter-spacing:40.912640pt;}
.ls3a{letter-spacing:57.866667pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws1d{word-spacing:-14.128000pt;}
.ws1e{word-spacing:-14.069333pt;}
.ws10{word-spacing:-14.064000pt;}
.wsc{word-spacing:-14.053333pt;}
.ws11{word-spacing:-14.042667pt;}
.ws21{word-spacing:-14.016000pt;}
.ws1f{word-spacing:-13.936000pt;}
.ws18{word-spacing:-13.801600pt;}
.ws20{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.561600pt;}
.ws13{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.475733pt;}
.ws1c{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.430400pt;}
.ws24{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.ws27{word-spacing:-13.096533pt;}
.ws16{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws25{word-spacing:-12.870933pt;}
.ws1a{word-spacing:-12.823467pt;}
.ws12{word-spacing:-12.592000pt;}
.ws1b{word-spacing:-12.544000pt;}
.ws28{word-spacing:-12.320000pt;}
.ws26{word-spacing:-12.229333pt;}
.ws8{word-spacing:-12.005120pt;}
.ws19{word-spacing:-11.312000pt;}
.ws23{word-spacing:-11.264000pt;}
.ws22{word-spacing:-11.178667pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-4.940160pt;}
._3{margin-left:-3.696000pt;}
._2{margin-left:-2.709120pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.098667pt;}
._8{width:2.144213pt;}
._7{width:3.044693pt;}
._d{width:3.967147pt;}
._b{width:5.630720pt;}
._10{width:6.981760pt;}
._1c{width:7.941120pt;}
._11{width:8.871040pt;}
._5{width:10.152533pt;}
._6{width:11.193173pt;}
._c{width:12.250453pt;}
._14{width:14.229760pt;}
._13{width:15.287467pt;}
._33{width:16.189440pt;}
._15{width:17.161600pt;}
._25{width:18.842453pt;}
._9{width:19.813760pt;}
._a{width:21.264853pt;}
._32{width:22.277120pt;}
._2c{width:23.495893pt;}
._26{width:25.182933pt;}
._2b{width:27.096533pt;}
._24{width:28.846080pt;}
._27{width:30.671360pt;}
._28{width:32.771200pt;}
._29{width:33.889280pt;}
._12{width:34.848000pt;}
._17{width:35.755222pt;}
._f{width:43.142187pt;}
._e{width:47.754880pt;}
._21{width:51.528249pt;}
._36{width:52.645760pt;}
._34{width:53.668053pt;}
._35{width:56.125013pt;}
._16{width:57.570688pt;}
._2a{width:58.767573pt;}
._2e{width:60.200320pt;}
._30{width:62.678613pt;}
._20{width:65.250432pt;}
._1a{width:67.739252pt;}
._2f{width:69.534720pt;}
._31{width:73.097088pt;}
._1b{width:77.038652pt;}
._3a{width:78.535893pt;}
._39{width:79.528533pt;}
._1d{width:90.760834pt;}
._1e{width:100.060234pt;}
._18{width:102.273095pt;}
._37{width:105.194453pt;}
._38{width:106.259413pt;}
._1f{width:111.276787pt;}
._23{width:119.970792pt;}
._19{width:126.289643pt;}
._22{width:156.092353pt;}
._2d{width:184.290347pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y113{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y4a{bottom:3.520000pt;}
.y85{bottom:3.840000pt;}
.y82{bottom:4.000000pt;}
.yc6{bottom:4.040000pt;}
.y95{bottom:4.154667pt;}
.y92{bottom:4.160000pt;}
.y18{bottom:4.320000pt;}
.yd6{bottom:4.480000pt;}
.yd4{bottom:4.640000pt;}
.yfd{bottom:5.440000pt;}
.yf4{bottom:5.600000pt;}
.yee{bottom:8.160000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.y12d{bottom:12.000000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y137{bottom:15.520000pt;}
.y2{bottom:17.952000pt;}
.y44{bottom:18.080000pt;}
.ya3{bottom:18.240000pt;}
.y104{bottom:18.266667pt;}
.yfa{bottom:18.280000pt;}
.y121{bottom:19.200000pt;}
.y49{bottom:19.880000pt;}
.y80{bottom:20.320000pt;}
.y47{bottom:22.600000pt;}
.yed{bottom:23.520000pt;}
.y17{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y12c{bottom:27.240000pt;}
.y136{bottom:30.880000pt;}
.y5{bottom:32.640000pt;}
.y43{bottom:33.440000pt;}
.yf0{bottom:33.626667pt;}
.y120{bottom:34.560000pt;}
.y16{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y42{bottom:48.800000pt;}
.y1{bottom:51.360000pt;}
.y15{bottom:54.760000pt;}
.y14{bottom:64.040000pt;}
.y41{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y40{bottom:79.520000pt;}
.y13{bottom:80.360000pt;}
.y8{bottom:82.746667pt;}
.y3f{bottom:94.880000pt;}
.y12{bottom:97.320000pt;}
.y56{bottom:98.752000pt;}
.y7{bottom:98.906667pt;}
.y167{bottom:100.352000pt;}
.y14a{bottom:102.112000pt;}
.yd2{bottom:103.072000pt;}
.y134{bottom:103.552000pt;}
.y17b{bottom:106.112000pt;}
.y3e{bottom:110.080000pt;}
.y102{bottom:110.112000pt;}
.y55{bottom:114.112000pt;}
.y96{bottom:114.432000pt;}
.y166{bottom:115.712000pt;}
.yd1{bottom:118.432000pt;}
.y133{bottom:118.912000pt;}
.y11{bottom:120.200000pt;}
.y17a{bottom:121.312000pt;}
.y3d{bottom:125.440000pt;}
.y54{bottom:129.472000pt;}
.y165{bottom:131.072000pt;}
.y94{bottom:132.032000pt;}
.yd0{bottom:133.626667pt;}
.y132{bottom:134.266667pt;}
.y179{bottom:136.666667pt;}
.y3c{bottom:140.800000pt;}
.y101{bottom:141.786667pt;}
.y10{bottom:141.800000pt;}
.y53{bottom:144.826667pt;}
.y164{bottom:146.426667pt;}
.ycf{bottom:147.226667pt;}
.y93{bottom:149.626667pt;}
.y178{bottom:152.026667pt;}
.y3b{bottom:156.160000pt;}
.y52{bottom:160.186667pt;}
.y163{bottom:161.786667pt;}
.yce{bottom:164.826667pt;}
.y91{bottom:167.226667pt;}
.y177{bottom:167.386667pt;}
.y3a{bottom:171.520000pt;}
.y100{bottom:173.466667pt;}
.y51{bottom:175.386667pt;}
.y162{bottom:177.146667pt;}
.y131{bottom:178.426667pt;}
.y2a{bottom:178.880000pt;}
.ycd{bottom:182.426667pt;}
.y176{bottom:182.746667pt;}
.y39{bottom:186.720000pt;}
.y90{bottom:187.706667pt;}
.y50{bottom:190.746667pt;}
.y161{bottom:192.346667pt;}
.y29{bottom:192.480000pt;}
.y130{bottom:194.746667pt;}
.y175{bottom:198.106667pt;}
.ycc{bottom:200.026667pt;}
.y38{bottom:202.080000pt;}
.y8f{bottom:203.066667pt;}
.y4f{bottom:206.106667pt;}
.y160{bottom:207.706667pt;}
.yff{bottom:208.026667pt;}
.y28{bottom:208.160000pt;}
.y174{bottom:213.306667pt;}
.y37{bottom:217.440000pt;}
.y8e{bottom:218.426667pt;}
.ycb{bottom:220.506667pt;}
.y4e{bottom:221.466667pt;}
.y15f{bottom:223.066667pt;}
.yfe{bottom:223.386667pt;}
.y27{bottom:223.520000pt;}
.y12f{bottom:226.426667pt;}
.y173{bottom:228.666667pt;}
.y36{bottom:232.826667pt;}
.y8d{bottom:233.786667pt;}
.yca{bottom:235.706667pt;}
.y4d{bottom:236.826667pt;}
.y15e{bottom:238.426667pt;}
.y26{bottom:238.906667pt;}
.y12e{bottom:242.746667pt;}
.y172{bottom:244.026667pt;}
.y35{bottom:248.186667pt;}
.y8c{bottom:249.146667pt;}
.yc9{bottom:251.066667pt;}
.y4c{bottom:252.026667pt;}
.y15d{bottom:253.786667pt;}
.y25{bottom:254.746667pt;}
.yfc{bottom:255.866667pt;}
.y171{bottom:259.386667pt;}
.y34{bottom:263.546667pt;}
.y8b{bottom:264.506667pt;}
.yc8{bottom:266.426667pt;}
.y4b{bottom:267.386667pt;}
.y15c{bottom:268.986667pt;}
.y24{bottom:269.466667pt;}
.y12b{bottom:274.426667pt;}
.yfb{bottom:274.746667pt;}
.y33{bottom:278.746667pt;}
.y8a{bottom:279.706667pt;}
.y46{bottom:279.866667pt;}
.yc7{bottom:281.786667pt;}
.y23{bottom:284.026667pt;}
.y15b{bottom:284.346667pt;}
.y170{bottom:290.106667pt;}
.yf9{bottom:293.786667pt;}
.y32{bottom:294.106667pt;}
.y89{bottom:295.066667pt;}
.yc5{bottom:295.226667pt;}
.y22{bottom:299.226667pt;}
.y15a{bottom:299.746667pt;}
.y16f{bottom:305.346667pt;}
.y31{bottom:309.466667pt;}
.y88{bottom:310.466667pt;}
.y1b{bottom:312.546667pt;}
.yc4{bottom:312.706667pt;}
.y21{bottom:314.746667pt;}
.y159{bottom:315.106667pt;}
.y12a{bottom:318.146667pt;}
.y16e{bottom:320.706667pt;}
.y30{bottom:324.826667pt;}
.yf8{bottom:325.506667pt;}
.y87{bottom:325.826667pt;}
.y20{bottom:330.266667pt;}
.yc3{bottom:330.306667pt;}
.y158{bottom:330.466667pt;}
.y129{bottom:333.346667pt;}
.y16d{bottom:336.066667pt;}
.y86{bottom:339.266667pt;}
.y2f{bottom:340.186667pt;}
.yf7{bottom:344.546667pt;}
.y1f{bottom:345.626667pt;}
.y157{bottom:345.826667pt;}
.yc2{bottom:347.906667pt;}
.y128{bottom:348.706667pt;}
.y16c{bottom:351.426667pt;}
.y2e{bottom:355.546667pt;}
.y84{bottom:356.706667pt;}
.y149{bottom:357.666667pt;}
.y156{bottom:361.026667pt;}
.y1e{bottom:363.706667pt;}
.y127{bottom:364.066667pt;}
.y16b{bottom:366.786667pt;}
.yc1{bottom:368.226667pt;}
.y148{bottom:370.146667pt;}
.y2d{bottom:370.746667pt;}
.y83{bottom:373.986667pt;}
.y155{bottom:376.386667pt;}
.y126{bottom:379.426667pt;}
.y16a{bottom:382.146667pt;}
.yc0{bottom:383.586667pt;}
.yf6{bottom:384.386667pt;}
.y2c{bottom:386.106667pt;}
.y1d{bottom:388.026667pt;}
.y7f{bottom:391.426667pt;}
.y154{bottom:391.746667pt;}
.y125{bottom:392.866667pt;}
.y169{bottom:397.346667pt;}
.ybf{bottom:398.946667pt;}
.yf5{bottom:399.746667pt;}
.y2b{bottom:401.466667pt;}
.y1c{bottom:403.866667pt;}
.y153{bottom:407.106667pt;}
.y81{bottom:407.746667pt;}
.y124{bottom:409.186667pt;}
.y168{bottom:412.706667pt;}
.yf3{bottom:413.186667pt;}
.ybe{bottom:414.306667pt;}
.y152{bottom:422.466667pt;}
.y7e{bottom:428.066667pt;}
.ybd{bottom:429.666667pt;}
.yf2{bottom:432.226667pt;}
.y151{bottom:437.826667pt;}
.y123{bottom:440.866667pt;}
.y7d{bottom:443.426667pt;}
.ybc{bottom:444.866667pt;}
.y150{bottom:453.026667pt;}
.y7c{bottom:458.786667pt;}
.ybb{bottom:460.226667pt;}
.yf1{bottom:463.906667pt;}
.y14f{bottom:468.386667pt;}
.y122{bottom:472.546667pt;}
.y7b{bottom:473.986667pt;}
.yba{bottom:475.586667pt;}
.y14e{bottom:483.746667pt;}
.y11f{bottom:488.866667pt;}
.y7a{bottom:489.346667pt;}
.yb9{bottom:490.946667pt;}
.y14d{bottom:496.226667pt;}
.y79{bottom:504.706667pt;}
.yb8{bottom:506.306667pt;}
.yef{bottom:510.786667pt;}
.y78{bottom:520.066667pt;}
.yb7{bottom:521.506667pt;}
.y77{bottom:535.426667pt;}
.yb6{bottom:536.893333pt;}
.y11e{bottom:539.773333pt;}
.y76{bottom:550.813333pt;}
.yb5{bottom:552.253333pt;}
.y11d{bottom:555.133333pt;}
.yec{bottom:557.853333pt;}
.y75{bottom:566.013333pt;}
.yb4{bottom:567.613333pt;}
.y11c{bottom:570.333333pt;}
.y74{bottom:581.373333pt;}
.yb3{bottom:582.973333pt;}
.y11b{bottom:585.693333pt;}
.y73{bottom:596.733333pt;}
.yeb{bottom:597.693333pt;}
.yb2{bottom:598.333333pt;}
.y11a{bottom:601.053333pt;}
.y72{bottom:612.093333pt;}
.yea{bottom:613.053333pt;}
.yb1{bottom:613.533333pt;}
.y119{bottom:616.413333pt;}
.y147{bottom:618.973333pt;}
.y71{bottom:627.453333pt;}
.ye9{bottom:628.413333pt;}
.yb0{bottom:628.893333pt;}
.y118{bottom:629.853333pt;}
.y146{bottom:632.413333pt;}
.y70{bottom:642.813333pt;}
.ye8{bottom:643.773333pt;}
.yaf{bottom:644.253333pt;}
.y145{bottom:651.453333pt;}
.y6f{bottom:658.013333pt;}
.ye7{bottom:659.133333pt;}
.yae{bottom:659.613333pt;}
.y117{bottom:661.533333pt;}
.y144{bottom:670.493333pt;}
.y6e{bottom:673.373333pt;}
.ye6{bottom:674.333333pt;}
.yad{bottom:674.973333pt;}
.y116{bottom:677.853333pt;}
.y6d{bottom:688.733333pt;}
.y143{bottom:689.373333pt;}
.ye5{bottom:689.693333pt;}
.yac{bottom:690.333333pt;}
.y6c{bottom:704.093333pt;}
.ye4{bottom:705.053333pt;}
.yab{bottom:705.533333pt;}
.y142{bottom:708.413333pt;}
.y115{bottom:709.533333pt;}
.y6b{bottom:719.453333pt;}
.ye3{bottom:720.413333pt;}
.yaa{bottom:720.893333pt;}
.y19{bottom:726.493333pt;}
.y6a{bottom:734.653333pt;}
.ye2{bottom:735.773333pt;}
.ya9{bottom:736.253333pt;}
.y114{bottom:741.213333pt;}
.y141{bottom:742.973333pt;}
.y69{bottom:750.013333pt;}
.ye1{bottom:751.133333pt;}
.ya8{bottom:751.613333pt;}
.yf{bottom:752.733333pt;}
.y140{bottom:758.333333pt;}
.y68{bottom:765.373333pt;}
.ye0{bottom:766.333333pt;}
.ya7{bottom:766.973333pt;}
.y14c{bottom:768.093333pt;}
.y112{bottom:772.893333pt;}
.y13f{bottom:773.693333pt;}
.y14b{bottom:780.613333pt;}
.y67{bottom:780.773333pt;}
.ydf{bottom:781.733333pt;}
.ya6{bottom:782.373333pt;}
.y13e{bottom:789.093333pt;}
.y66{bottom:796.133333pt;}
.yde{bottom:797.093333pt;}
.ya5{bottom:797.573333pt;}
.y13d{bottom:804.293333pt;}
.y111{bottom:807.493333pt;}
.ya4{bottom:811.013333pt;}
.y65{bottom:811.493333pt;}
.ydd{bottom:812.453333pt;}
.y13c{bottom:817.733333pt;}
.y110{bottom:822.693333pt;}
.y64{bottom:826.693333pt;}
.ya2{bottom:827.333333pt;}
.ydc{bottom:827.813333pt;}
.y13b{bottom:836.773333pt;}
.y10f{bottom:838.053333pt;}
.y63{bottom:842.053333pt;}
.ydb{bottom:843.013333pt;}
.y10e{bottom:853.413333pt;}
.y62{bottom:857.413333pt;}
.yda{bottom:858.373333pt;}
.ya1{bottom:859.013333pt;}
.y13a{bottom:868.453333pt;}
.y10d{bottom:868.773333pt;}
.yd9{bottom:871.813333pt;}
.y61{bottom:872.773333pt;}
.ya0{bottom:875.333333pt;}
.y10c{bottom:884.133333pt;}
.y60{bottom:888.133333pt;}
.yd8{bottom:889.893333pt;}
.y9f{bottom:891.813333pt;}
.y10b{bottom:899.493333pt;}
.y139{bottom:900.133333pt;}
.y5f{bottom:903.493333pt;}
.yd7{bottom:907.813333pt;}
.yd{bottom:907.973333pt;}
.y9e{bottom:911.013333pt;}
.y10a{bottom:914.693333pt;}
.y5e{bottom:918.693333pt;}
.yd5{bottom:925.893333pt;}
.y9d{bottom:926.213333pt;}
.y109{bottom:930.053333pt;}
.y6{bottom:930.533333pt;}
.y138{bottom:931.813333pt;}
.y5d{bottom:934.053333pt;}
.y9c{bottom:941.573333pt;}
.yd3{bottom:943.813333pt;}
.y108{bottom:945.413333pt;}
.y5c{bottom:949.413333pt;}
.y9b{bottom:956.933333pt;}
.y107{bottom:960.773333pt;}
.y135{bottom:963.493333pt;}
.y5b{bottom:964.773333pt;}
.y9a{bottom:972.293333pt;}
.y106{bottom:974.213333pt;}
.y5a{bottom:980.133333pt;}
.y99{bottom:985.733333pt;}
.y105{bottom:990.533333pt;}
.y59{bottom:995.493333pt;}
.y98{bottom:1003.333333pt;}
.y103{bottom:1006.853333pt;}
.y58{bottom:1010.693333pt;}
.y97{bottom:1020.960000pt;}
.y57{bottom:1026.080000pt;}
.h27{height:15.200000pt;}
.h23{height:15.360000pt;}
.h24{height:16.320000pt;}
.h22{height:16.480000pt;}
.h29{height:16.512000pt;}
.h25{height:16.640000pt;}
.h26{height:16.672000pt;}
.h2b{height:16.960000pt;}
.h2a{height:17.120000pt;}
.h30{height:17.920000pt;}
.h31{height:18.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h2f{height:30.560000pt;}
.h33{height:30.592000pt;}
.h28{height:30.720000pt;}
.h32{height:30.752000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1f{height:32.672000pt;}
.h21{height:32.800000pt;}
.h1c{height:34.505000pt;}
.h19{height:35.772188pt;}
.h2c{height:36.000000pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h37{height:38.672812pt;}
.he{height:39.113750pt;}
.h35{height:39.712000pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h20{height:42.745000pt;}
.h36{height:43.360000pt;}
.h2e{height:45.920000pt;}
.h2d{height:46.112000pt;}
.h34{height:47.040000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:155.226667pt;}
.h16{height:413.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:26.400000pt;}
.w42{width:40.352000pt;}
.wc{width:47.840000pt;}
.w5c{width:51.552000pt;}
.w5d{width:51.680000pt;}
.w2a{width:52.000000pt;}
.w4b{width:57.280000pt;}
.w49{width:57.440000pt;}
.w4a{width:57.472000pt;}
.w29{width:57.920000pt;}
.w34{width:58.080000pt;}
.w2b{width:58.112000pt;}
.w4f{width:63.040000pt;}
.w55{width:63.232000pt;}
.w3f{width:63.680000pt;}
.w2c{width:63.840000pt;}
.w2e{width:63.872000pt;}
.w3{width:64.960000pt;}
.w65{width:69.312000pt;}
.w28{width:69.792000pt;}
.w15{width:70.592000pt;}
.w58{width:74.880000pt;}
.w57{width:74.912000pt;}
.w64{width:75.040000pt;}
.w4e{width:75.072000pt;}
.w2d{width:75.520000pt;}
.w37{width:75.712000pt;}
.w5e{width:80.800000pt;}
.w56{width:80.832000pt;}
.w4c{width:80.992000pt;}
.w38{width:81.440000pt;}
.w35{width:81.472000pt;}
.w33{width:81.632000pt;}
.w4d{width:86.720000pt;}
.w54{width:86.752000pt;}
.w3e{width:87.360000pt;}
.w36{width:87.520000pt;}
.w43{width:87.552000pt;}
.w60{width:92.320000pt;}
.w11{width:92.672000pt;}
.w44{width:93.440000pt;}
.w3d{width:93.472000pt;}
.w5f{width:98.432000pt;}
.w66{width:104.160000pt;}
.w48{width:104.192000pt;}
.w20{width:108.992000pt;}
.wd{width:109.152000pt;}
.w61{width:109.952000pt;}
.w62{width:110.080000pt;}
.w30{width:111.072000pt;}
.w51{width:115.840000pt;}
.w50{width:115.872000pt;}
.w3a{width:116.960000pt;}
.w39{width:116.992000pt;}
.w41{width:117.120000pt;}
.we{width:121.440000pt;}
.w59{width:121.632000pt;}
.w40{width:122.912000pt;}
.w27{width:123.072000pt;}
.w23{width:123.200000pt;}
.w21{width:125.312000pt;}
.w2f{width:128.672000pt;}
.w45{width:128.800000pt;}
.w1f{width:130.720000pt;}
.w5{width:135.066667pt;}
.w22{width:135.706667pt;}
.w53{width:139.066667pt;}
.w32{width:140.346667pt;}
.w31{width:140.480000pt;}
.w67{width:145.306667pt;}
.w1e{width:149.146667pt;}
.w24{width:150.586667pt;}
.w5b{width:150.746667pt;}
.w19{width:151.040000pt;}
.w68{width:151.066667pt;}
.w1b{width:152.666667pt;}
.w1a{width:152.826667pt;}
.w3c{width:158.106667pt;}
.w1d{width:160.346667pt;}
.w5a{width:168.506667pt;}
.w52{width:168.666667pt;}
.w47{width:169.786667pt;}
.w3b{width:169.946667pt;}
.w46{width:181.946667pt;}
.w16{width:187.066667pt;}
.w18{width:188.066667pt;}
.w63{width:191.866667pt;}
.w8{width:198.626667pt;}
.w1c{width:204.546667pt;}
.w14{width:251.866667pt;}
.w69{width:255.866667pt;}
.w25{width:261.986667pt;}
.w12{width:273.986667pt;}
.w26{width:274.746667pt;}
.w10{width:279.226667pt;}
.wb{width:280.506667pt;}
.wa{width:366.333333pt;}
.wf{width:367.613333pt;}
.w17{width:391.106667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.400000pt;}
.x2{left:7.712000pt;}
.xe{left:10.272000pt;}
.x10{left:11.200000pt;}
.x3c{left:14.272000pt;}
.x74{left:16.480000pt;}
.x47{left:18.720000pt;}
.xb{left:20.352000pt;}
.x1b{left:21.760000pt;}
.x73{left:23.072000pt;}
.x22{left:24.640000pt;}
.x1e{left:26.080000pt;}
.x1c{left:28.160000pt;}
.x16{left:30.400000pt;}
.x33{left:32.832000pt;}
.x23{left:35.040000pt;}
.x46{left:36.512000pt;}
.x8b{left:38.912000pt;}
.x63{left:41.120000pt;}
.x20{left:42.720000pt;}
.x43{left:44.000000pt;}
.x87{left:45.600000pt;}
.x62{left:47.232000pt;}
.x6c{left:48.160000pt;}
.x38{left:49.440000pt;}
.x4a{left:51.240000pt;}
.x1f{left:52.640000pt;}
.x5c{left:54.240000pt;}
.x40{left:55.520000pt;}
.x5f{left:57.480000pt;}
.x4b{left:58.560000pt;}
.x61{left:60.480000pt;}
.x51{left:61.920000pt;}
.x50{left:63.706667pt;}
.x4f{left:66.906667pt;}
.x56{left:70.760000pt;}
.x1{left:72.000000pt;}
.x14{left:72.960000pt;}
.x11{left:75.999988pt;}
.x37{left:86.266667pt;}
.x4{left:87.226667pt;}
.x29{left:92.840000pt;}
.x12{left:96.031988pt;}
.x97{left:100.040000pt;}
.x2c{left:102.440000pt;}
.x96{left:103.840000pt;}
.x2d{left:104.960000pt;}
.x2b{left:106.080000pt;}
.x31{left:109.320000pt;}
.x30{left:110.720000pt;}
.x2e{left:113.160000pt;}
.x75{left:114.272000pt;}
.x21{left:120.186667pt;}
.xc{left:121.146667pt;}
.x2f{left:123.560000pt;}
.x1d{left:126.746667pt;}
.x8c{left:137.306667pt;}
.x35{left:141.960000pt;}
.x34{left:144.506667pt;}
.x27{left:146.120000pt;}
.x65{left:155.706667pt;}
.x25{left:158.106667pt;}
.x84{left:160.826667pt;}
.x28{left:166.586667pt;}
.x13{left:167.546655pt;}
.x7d{left:178.266667pt;}
.x76{left:179.226667pt;}
.x53{left:182.906667pt;}
.xd{left:192.066667pt;}
.x8d{left:195.706667pt;}
.x58{left:196.986667pt;}
.x42{left:200.026667pt;}
.x5{left:207.066667pt;}
.x66{left:214.586667pt;}
.x85{left:219.226667pt;}
.x83{left:220.986655pt;}
.x52{left:223.866655pt;}
.x6e{left:226.426667pt;}
.x41{left:229.786667pt;}
.x7e{left:236.666667pt;}
.x8{left:241.986667pt;}
.x77{left:244.026667pt;}
.x8e{left:248.386667pt;}
.x6d{left:250.146655pt;}
.x3d{left:253.026667pt;}
.x3e{left:256.386667pt;}
.x4c{left:258.146655pt;}
.x64{left:261.026655pt;}
.x39{left:262.306667pt;}
.x3a{left:265.826667pt;}
.x44{left:267.266667pt;}
.xf{left:270.626667pt;}
.x67{left:273.666667pt;}
.x4d{left:278.466667pt;}
.x86{left:283.586667pt;}
.x57{left:286.786655pt;}
.x1a{left:288.866667pt;}
.x6f{left:291.266667pt;}
.x6{left:295.106667pt;}
.x94{left:296.066655pt;}
.x78{left:303.106667pt;}
.x8f{left:306.786667pt;}
.x24{left:308.546655pt;}
.x7{left:312.226667pt;}
.x32{left:322.946655pt;}
.xa{left:324.866667pt;}
.x59{left:326.786667pt;}
.x3f{left:328.386667pt;}
.x36{left:332.546667pt;}
.x88{left:341.986667pt;}
.x70{left:350.306667pt;}
.x9b{left:352.066655pt;}
.x7f{left:353.666667pt;}
.x45{left:357.826667pt;}
.x90{left:359.426667pt;}
.x79{left:367.906667pt;}
.x5a{left:379.746667pt;}
.x3b{left:389.506667pt;}
.x9{left:390.666667pt;}
.x68{left:391.746667pt;}
.x99{left:396.866655pt;}
.x89{left:400.546667pt;}
.x71{left:409.346667pt;}
.x80{left:412.066667pt;}
.x48{left:414.146667pt;}
.x5b{left:438.813333pt;}
.x15{left:440.253333pt;}
.x26{left:441.533333pt;}
.x54{left:446.013333pt;}
.x91{left:447.133333pt;}
.x7a{left:456.413333pt;}
.x95{left:464.893333pt;}
.x2a{left:468.893333pt;}
.x69{left:474.173333pt;}
.x8a{left:482.333333pt;}
.x18{left:489.213333pt;}
.x72{left:491.933333pt;}
.x81{left:494.013333pt;}
.x5d{left:503.773333pt;}
.x92{left:528.893333pt;}
.x7b{left:550.973333pt;}
.x6a{left:562.653333pt;}
.x49{left:568.093333pt;}
.x55{left:570.173333pt;}
.x5e{left:580.413333pt;}
.x82{left:581.693333pt;}
.x4e{left:590.053333pt;}
.x19{left:599.333333pt;}
.x93{left:628.453333pt;}
.x7c{left:633.413333pt;}
.x6b{left:639.333333pt;}
.x60{left:645.253333pt;}
.x98{left:651.973322pt;}
.x3{left:656.933333pt;}
.x9a{left:660.293322pt;}
}




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