
    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_962ef49f100cb591cddf4272.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_756b2f36e282a5c1629d527c.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_51e8e650e2eac726c49fede1.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_c0b078f6067dbdeff679b8cc.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_9555f3d3271594c8ed0ca7be.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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_32c673d0967fd2d768ccebe2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_3c24ff3cf37ab560830f8e61.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ff070c4909c2532f3eee9a57.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_79f13dde3e6c5edb16870ac8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b7ea8ed19bd1bd157139b35d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914551;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_c1bb2bd801e8b92fe53dae5e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914551;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_743ac96c592bf844bb446b06.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_96c6c12e1c05dfe1cb373778.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3b8d904f000aac017967ec39.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.978027;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_23f1c782f90254c576d89a70.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.978027;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);}
.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;}
.ls28{letter-spacing:-0.774000px;}
.ls2a{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.413400px;}
.ls16{letter-spacing:-0.408000px;}
.ls17{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.127200px;}
.ls1b{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.038160px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.173280px;}
.ls5{letter-spacing:0.174240px;}
.ls1e{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls1a{letter-spacing:0.311760px;}
.ls18{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.379920px;}
.ls13{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.786240px;}
.ls11{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.978000px;}
.ls21{letter-spacing:2.340000px;}
.ls1d{letter-spacing:3.060000px;}
.ls24{letter-spacing:4.680000px;}
.ls20{letter-spacing:5.400000px;}
.ls22{letter-spacing:6.120000px;}
.ls25{letter-spacing:7.380000px;}
.ls27{letter-spacing:8.100000px;}
.ls23{letter-spacing:9.000000px;}
.ls29{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wse{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.526600px;}
.ws17{word-spacing:-14.479800px;}
.ws16{word-spacing:-14.166000px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.816720px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-9.720000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-7.888320px;}
._17{margin-left:-6.723360px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.296000px;}
._2{margin-left:-2.987760px;}
._0{margin-left:-1.140000px;}
._1{width:1.638000px;}
._d{width:3.381840px;}
._f{width:4.780800px;}
._11{width:6.094560px;}
._7{width:7.225200px;}
._8{width:8.383440px;}
._5{width:9.686880px;}
._6{width:11.021760px;}
._a{width:12.549600px;}
._e{width:13.744800px;}
._9{width:16.194960px;}
._14{width:17.569440px;}
._15{width:18.609840px;}
._b{width:19.756080px;}
._c{width:20.916000px;}
._10{width:22.708800px;}
._12{width:24.452640px;}
._13{width:25.805520px;}
._1a{width:40.944240px;}
._19{width:43.624800px;}
._18{width:44.999280px;}
.fc8{color:transparent;}
.fc7{color:rgb(68,71,70);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(27,28,29);}
.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;}
.y1c{bottom:0.180000px;}
.y4a{bottom:3.240000px;}
.y13c{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y50{bottom:3.960000px;}
.ye{bottom:9.360000px;}
.y1d{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y113{bottom:20.520000px;}
.y106{bottom:20.550000px;}
.y49{bottom:20.565000px;}
.y4f{bottom:22.320000px;}
.y1a{bottom:23.760000px;}
.y4d{bottom:28.980000px;}
.yb{bottom:30.240000px;}
.y112{bottom:37.800000px;}
.y105{bottom:37.830000px;}
.y48{bottom:37.845000px;}
.y19{bottom:40.365000px;}
.y4e{bottom:40.680000px;}
.y5{bottom:41.940000px;}
.y4c{bottom:43.560000px;}
.ya{bottom:46.620000px;}
.y114{bottom:51.840000px;}
.y18{bottom:52.965000px;}
.y47{bottom:55.125000px;}
.y1{bottom:64.440000px;}
.y46{bottom:72.405000px;}
.y17{bottom:73.305000px;}
.y9{bottom:73.470000px;}
.y45{bottom:89.505000px;}
.y16{bottom:89.685000px;}
.y8{bottom:93.090000px;}
.y15{bottom:102.105000px;}
.y44{bottom:106.785000px;}
.y1c4{bottom:109.476000px;}
.y98{bottom:111.276000px;}
.y7{bottom:111.450000px;}
.ye8{bottom:113.796000px;}
.y122{bottom:114.516000px;}
.y164{bottom:115.056000px;}
.y21c{bottom:115.416000px;}
.y205{bottom:116.136000px;}
.y59{bottom:116.316000px;}
.y14{bottom:116.865000px;}
.y1a4{bottom:118.116000px;}
.y1ed{bottom:120.816000px;}
.y1b2{bottom:122.976000px;}
.yc7{bottom:123.156000px;}
.y43{bottom:124.065000px;}
.y1c3{bottom:127.476000px;}
.y1fc{bottom:128.196000px;}
.y97{bottom:128.376000px;}
.ye7{bottom:131.076000px;}
.y1de{bottom:131.256000px;}
.y13{bottom:132.165000px;}
.y121{bottom:132.516000px;}
.y21b{bottom:132.696000px;}
.y163{bottom:133.056000px;}
.y58{bottom:133.416000px;}
.y1a3{bottom:135.396000px;}
.y1ec{bottom:138.096000px;}
.yc6{bottom:140.256000px;}
.y42{bottom:141.345000px;}
.y1c2{bottom:145.476000px;}
.y96{bottom:145.656000px;}
.ye6{bottom:148.356000px;}
.y21a{bottom:149.976000px;}
.y120{bottom:150.510000px;}
.y57{bottom:150.690000px;}
.y162{bottom:151.050000px;}
.y12{bottom:151.065000px;}
.y1a2{bottom:152.670000px;}
.yc5{bottom:154.290000px;}
.y1eb{bottom:155.370000px;}
.y1b1{bottom:157.350000px;}
.y41{bottom:158.625000px;}
.ye5{bottom:162.390000px;}
.y1fb{bottom:162.750000px;}
.y95{bottom:162.930000px;}
.y1c1{bottom:163.470000px;}
.y1dd{bottom:165.630000px;}
.y219{bottom:167.250000px;}
.y56{bottom:167.970000px;}
.y11f{bottom:168.510000px;}
.y161{bottom:169.050000px;}
.y1a1{bottom:169.950000px;}
.y1b0{bottom:171.390000px;}
.y1ea{bottom:172.650000px;}
.y40{bottom:175.905000px;}
.y18a{bottom:176.430000px;}
.y11{bottom:176.805000px;}
.y1fa{bottom:179.850000px;}
.y94{bottom:180.210000px;}
.y1c0{bottom:181.470000px;}
.y1dc{bottom:182.910000px;}
.y218{bottom:184.350000px;}
.y55{bottom:185.250000px;}
.y160{bottom:187.050000px;}
.y11e{bottom:189.750000px;}
.y189{bottom:191.190000px;}
.y3f{bottom:193.005000px;}
.y1db{bottom:196.950000px;}
.y1f9{bottom:197.130000px;}
.y93{bottom:197.490000px;}
.y10{bottom:201.285000px;}
.y217{bottom:201.630000px;}
.y2e{bottom:201.645000px;}
.y204{bottom:202.350000px;}
.y54{bottom:202.530000px;}
.y1bf{bottom:202.710000px;}
.y1a0{bottom:204.330000px;}
.y15f{bottom:205.050000px;}
.y11d{bottom:207.030000px;}
.y188{bottom:209.190000px;}
.y3e{bottom:210.285000px;}
.y1f8{bottom:214.410000px;}
.y92{bottom:214.590000px;}
.y2d{bottom:216.945000px;}
.y216{bottom:218.910000px;}
.y203{bottom:219.630000px;}
.y53{bottom:219.810000px;}
.y1be{bottom:219.990000px;}
.y19f{bottom:221.610000px;}
.y15e{bottom:223.050000px;}
.y11c{bottom:224.310000px;}
.y187{bottom:227.190000px;}
.y3d{bottom:227.565000px;}
.y1f7{bottom:231.690000px;}
.y91{bottom:231.870000px;}
.y2c{bottom:235.125000px;}
.y215{bottom:236.190000px;}
.y52{bottom:236.910000px;}
.y1bd{bottom:237.270000px;}
.y19e{bottom:238.890000px;}
.y15d{bottom:241.050000px;}
.y11b{bottom:241.410000px;}
.y1e9{bottom:241.590000px;}
.y3c{bottom:244.845000px;}
.y186{bottom:245.190000px;}
.y1f6{bottom:245.730000px;}
.y90{bottom:249.150000px;}
.y2b{bottom:252.405000px;}
.y19d{bottom:252.930000px;}
.y214{bottom:253.470000px;}
.y51{bottom:254.190000px;}
.y1bc{bottom:254.550000px;}
.y1e8{bottom:255.630000px;}
.y11a{bottom:258.690000px;}
.y15c{bottom:259.050000px;}
.y3b{bottom:262.125000px;}
.y185{bottom:263.190000px;}
.y140{bottom:264.630000px;}
.y8f{bottom:266.430000px;}
.y4b{bottom:268.230000px;}
.y2a{bottom:269.865000px;}
.y213{bottom:270.750000px;}
.y1bb{bottom:271.650000px;}
.y119{bottom:275.970000px;}
.y15b{bottom:277.050000px;}
.y3a{bottom:279.225000px;}
.y13f{bottom:279.390000px;}
.y184{bottom:281.190000px;}
.y8e{bottom:283.710000px;}
.y1ba{bottom:285.690000px;}
.y29{bottom:287.355000px;}
.y212{bottom:287.850000px;}
.y118{bottom:293.250000px;}
.y39{bottom:296.535000px;}
.y13e{bottom:297.390000px;}
.y15a{bottom:298.290000px;}
.y183{bottom:299.190000px;}
.y8d{bottom:300.990000px;}
.y28{bottom:304.635000px;}
.y211{bottom:305.130000px;}
.y117{bottom:310.530000px;}
.y38{bottom:313.815000px;}
.y13d{bottom:315.390000px;}
.y182{bottom:317.190000px;}
.y8c{bottom:318.090000px;}
.y27{bottom:322.095000px;}
.y210{bottom:322.410000px;}
.y1e{bottom:323.130000px;}
.y116{bottom:327.630000px;}
.y159{bottom:330.150000px;}
.y37{bottom:331.095000px;}
.y13b{bottom:333.390000px;}
.yb4{bottom:334.470000px;}
.y181{bottom:335.010000px;}
.y8b{bottom:335.370000px;}
.y26{bottom:339.375000px;}
.y20f{bottom:339.735000px;}
.y115{bottom:344.955000px;}
.y158{bottom:348.195000px;}
.y36{bottom:348.375000px;}
.yb3{bottom:349.275000px;}
.y13a{bottom:351.435000px;}
.y8a{bottom:352.695000px;}
.y180{bottom:353.055000px;}
.y25{bottom:356.835000px;}
.y20e{bottom:357.015000px;}
.y111{bottom:359.715000px;}
.y35{bottom:365.655000px;}
.y157{bottom:366.195000px;}
.yb2{bottom:367.275000px;}
.y139{bottom:369.435000px;}
.y89{bottom:369.975000px;}
.y17f{bottom:371.055000px;}
.y24{bottom:374.295000px;}
.y34{bottom:382.755000px;}
.y156{bottom:384.195000px;}
.yb1{bottom:385.275000px;}
.y88{bottom:387.255000px;}
.y138{bottom:387.435000px;}
.y20d{bottom:391.395000px;}
.y23{bottom:391.575000px;}
.y17e{bottom:392.295000px;}
.y33{bottom:400.035000px;}
.y155{bottom:402.195000px;}
.yb0{bottom:403.275000px;}
.yc4{bottom:403.455000px;}
.y87{bottom:404.535000px;}
.y137{bottom:405.435000px;}
.y20c{bottom:408.675000px;}
.y22{bottom:409.035000px;}
.y17d{bottom:409.575000px;}
.ye4{bottom:411.735000px;}
.y110{bottom:412.275000px;}
.y32{bottom:417.315000px;}
.y154{bottom:420.195000px;}
.yc3{bottom:420.735000px;}
.yaf{bottom:421.275000px;}
.y86{bottom:421.635000px;}
.y136{bottom:423.435000px;}
.y20b{bottom:425.955000px;}
.ye3{bottom:426.495000px;}
.y21{bottom:426.675000px;}
.y17c{bottom:426.855000px;}
.y10f{bottom:430.275000px;}
.y31{bottom:434.595000px;}
.yc2{bottom:434.775000px;}
.y153{bottom:438.195000px;}
.y85{bottom:438.915000px;}
.yae{bottom:439.275000px;}
.y135{bottom:441.435000px;}
.y20a{bottom:443.235000px;}
.y17b{bottom:444.135000px;}
.ye2{bottom:444.495000px;}
.y10e{bottom:448.275000px;}
.y30{bottom:451.875000px;}
.y20{bottom:454.035000px;}
.y84{bottom:456.195000px;}
.yad{bottom:460.515000px;}
.y17a{bottom:461.415000px;}
.ye1{bottom:462.495000px;}
.y134{bottom:462.675000px;}
.y10d{bottom:466.275000px;}
.y2f{bottom:469.155000px;}
.y1f{bottom:471.675000px;}
.y83{bottom:473.475000px;}
.y152{bottom:474.195000px;}
.yac{bottom:477.795000px;}
.y179{bottom:478.695000px;}
.y133{bottom:479.955000px;}
.ye0{bottom:480.495000px;}
.y10c{bottom:484.275000px;}
.y1da{bottom:486.795000px;}
.y82{bottom:490.755000px;}
.y151{bottom:492.195000px;}
.y209{bottom:494.895000px;}
.yab{bottom:495.075000px;}
.y178{bottom:495.795000px;}
.y132{bottom:497.235000px;}
.ydf{bottom:498.495000px;}
.y10b{bottom:502.275000px;}
.y1d9{bottom:503.895000px;}
.y81{bottom:507.855000px;}
.yaa{bottom:512.175000px;}
.y177{bottom:513.075000px;}
.y150{bottom:513.435000px;}
.y131{bottom:514.515000px;}
.yde{bottom:516.495000px;}
.y10a{bottom:520.275000px;}
.y1d8{bottom:521.175000px;}
.y1e7{bottom:522.075000px;}
.y80{bottom:525.135000px;}
.ya9{bottom:529.455000px;}
.y176{bottom:530.355000px;}
.y14f{bottom:530.715000px;}
.y130{bottom:531.795000px;}
.ydd{bottom:534.495000px;}
.y1f5{bottom:537.015000px;}
.y109{bottom:538.275000px;}
.y1d7{bottom:538.455000px;}
.y1e6{bottom:539.355000px;}
.y7f{bottom:542.415000px;}
.ya8{bottom:546.735000px;}
.y175{bottom:547.635000px;}
.y14e{bottom:547.995000px;}
.y12f{bottom:548.895000px;}
.ydc{bottom:552.495000px;}
.y1d6{bottom:553.215000px;}
.y1f4{bottom:554.115000px;}
.y108{bottom:556.275000px;}
.y1e5{bottom:556.635000px;}
.y7e{bottom:559.695000px;}
.y1af{bottom:560.235000px;}
.ya7{bottom:564.015000px;}
.y174{bottom:564.915000px;}
.y14d{bottom:565.275000px;}
.y12e{bottom:566.175000px;}
.ydb{bottom:570.495000px;}
.y1e4{bottom:570.675000px;}
.y1d5{bottom:571.215000px;}
.y1f3{bottom:571.395000px;}
.y107{bottom:574.275000px;}
.y7d{bottom:576.975000px;}
.y1ae{bottom:577.515000px;}
.y19c{bottom:578.235000px;}
.y208{bottom:581.115000px;}
.ya6{bottom:581.295000px;}
.y173{bottom:582.195000px;}
.y14c{bottom:582.555000px;}
.y12d{bottom:583.455000px;}
.y1f2{bottom:585.435000px;}
.yda{bottom:588.495000px;}
.y1d4{bottom:589.215000px;}
.y104{bottom:592.275000px;}
.y19b{bottom:592.995000px;}
.y7c{bottom:594.255000px;}
.y1ad{bottom:594.795000px;}
.y207{bottom:598.395000px;}
.ya5{bottom:598.575000px;}
.y172{bottom:599.295000px;}
.y12c{bottom:600.735000px;}
.yd9{bottom:606.525000px;}
.y1d3{bottom:607.245000px;}
.y1ac{bottom:609.585000px;}
.y19a{bottom:611.025000px;}
.y7b{bottom:611.385000px;}
.ya4{bottom:615.705000px;}
.y171{bottom:616.605000px;}
.y12b{bottom:618.045000px;}
.y1d2{bottom:625.245000px;}
.y1ab{bottom:627.405000px;}
.yd8{bottom:627.765000px;}
.y7a{bottom:628.665000px;}
.y199{bottom:629.025000px;}
.y170{bottom:630.645000px;}
.y12a{bottom:631.905000px;}
.ya3{bottom:632.985000px;}
.y14b{bottom:635.325000px;}
.y1d1{bottom:643.245000px;}
.yd7{bottom:645.045000px;}
.y79{bottom:645.945000px;}
.y198{bottom:647.025000px;}
.y103{bottom:648.105000px;}
.y1aa{bottom:648.645000px;}
.y221{bottom:649.905000px;}
.ya2{bottom:650.265000px;}
.y14a{bottom:653.685000px;}
.yd6{bottom:662.325000px;}
.y78{bottom:663.225000px;}
.y1d0{bottom:664.485000px;}
.y197{bottom:665.025000px;}
.y102{bottom:665.205000px;}
.y1a9{bottom:665.925000px;}
.ya1{bottom:667.545000px;}
.y149{bottom:670.965000px;}
.yd5{bottom:679.425000px;}
.y101{bottom:679.965000px;}
.y77{bottom:680.505000px;}
.y1b9{bottom:681.225000px;}
.y1cf{bottom:681.765000px;}
.y196{bottom:683.025000px;}
.y1a8{bottom:683.205000px;}
.ya0{bottom:684.825000px;}
.y148{bottom:688.065000px;}
.yd4{bottom:693.465000px;}
.yc1{bottom:695.625000px;}
.y76{bottom:697.785000px;}
.y100{bottom:697.965000px;}
.y1ce{bottom:699.045000px;}
.y1a7{bottom:700.485000px;}
.y195{bottom:701.025000px;}
.y9f{bottom:701.925000px;}
.y1b8{bottom:702.465000px;}
.y147{bottom:706.425000px;}
.yc0{bottom:710.385000px;}
.y1a6{bottom:714.525000px;}
.y220{bottom:714.885000px;}
.y75{bottom:715.965000px;}
.y1cd{bottom:716.145000px;}
.y194{bottom:719.025000px;}
.y9e{bottom:719.205000px;}
.y1b7{bottom:719.745000px;}
.y146{bottom:723.705000px;}
.ybf{bottom:728.385000px;}
.y74{bottom:733.245000px;}
.y1cc{bottom:733.425000px;}
.yff{bottom:733.965000px;}
.y9d{bottom:736.485000px;}
.y193{bottom:737.025000px;}
.y145{bottom:740.985000px;}
.ybe{bottom:746.385000px;}
.y21f{bottom:750.525000px;}
.y1cb{bottom:750.705000px;}
.y73{bottom:751.605000px;}
.yfe{bottom:751.965000px;}
.y9c{bottom:753.765000px;}
.y1b6{bottom:754.305000px;}
.y192{bottom:755.025000px;}
.y144{bottom:758.265000px;}
.ybd{bottom:764.385000px;}
.y1ca{bottom:767.985000px;}
.y1b5{bottom:768.345000px;}
.y72{bottom:768.885000px;}
.yfd{bottom:769.965000px;}
.y9b{bottom:771.045000px;}
.y191{bottom:773.025000px;}
.y143{bottom:775.545000px;}
.y1c9{bottom:785.265000px;}
.ybc{bottom:785.625000px;}
.y21e{bottom:786.165000px;}
.y71{bottom:787.245000px;}
.yfc{bottom:787.965000px;}
.y9a{bottom:788.325000px;}
.y202{bottom:791.205000px;}
.y142{bottom:792.645000px;}
.y190{bottom:794.265000px;}
.y1c8{bottom:802.545000px;}
.ybb{bottom:802.905000px;}
.y70{bottom:804.345000px;}
.y99{bottom:805.425000px;}
.yfb{bottom:805.965000px;}
.y1b{bottom:806.145000px;}
.y141{bottom:806.685000px;}
.y201{bottom:808.485000px;}
.y18f{bottom:811.545000px;}
.y1c7{bottom:819.645000px;}
.yba{bottom:820.185000px;}
.y21d{bottom:821.625000px;}
.y6f{bottom:822.705000px;}
.yfa{bottom:823.965000px;}
.y200{bottom:825.765000px;}
.y18e{bottom:828.645000px;}
.yf{bottom:835.845000px;}
.y1c6{bottom:836.925000px;}
.yb9{bottom:837.285000px;}
.y6e{bottom:839.985000px;}
.yf9{bottom:841.965000px;}
.y1ff{bottom:843.045000px;}
.y18d{bottom:845.925000px;}
.y1e3{bottom:846.825000px;}
.y1c5{bottom:850.965000px;}
.yb8{bottom:854.565000px;}
.y6d{bottom:857.265000px;}
.yf8{bottom:859.965000px;}
.y1fe{bottom:860.145000px;}
.y18c{bottom:863.205000px;}
.y1e2{bottom:864.105000px;}
.y206{bottom:869.685000px;}
.yb7{bottom:871.890000px;}
.y1f1{bottom:872.250000px;}
.y1fd{bottom:874.230000px;}
.y6c{bottom:874.590000px;}
.y18b{bottom:877.290000px;}
.yf7{bottom:878.010000px;}
.y1e1{bottom:881.430000px;}
.yb6{bottom:889.170000px;}
.y1f0{bottom:889.530000px;}
.y6b{bottom:891.870000px;}
.y1e0{bottom:898.710000px;}
.yf6{bottom:899.250000px;}
.yb5{bottom:903.210000px;}
.y1ef{bottom:906.810000px;}
.y6a{bottom:908.970000px;}
.y1df{bottom:912.750000px;}
.yf5{bottom:916.530000px;}
.yd3{bottom:917.250000px;}
.y1ee{bottom:920.850000px;}
.y69{bottom:926.250000px;}
.yf4{bottom:931.290000px;}
.yd2{bottom:932.010000px;}
.y68{bottom:943.530000px;}
.yf3{bottom:949.290000px;}
.yd1{bottom:950.010000px;}
.y67{bottom:960.810000px;}
.yf2{bottom:967.290000px;}
.yd0{bottom:968.010000px;}
.y16f{bottom:969.810000px;}
.y66{bottom:978.090000px;}
.y16e{bottom:984.570000px;}
.yf1{bottom:985.290000px;}
.ycf{bottom:986.010000px;}
.y65{bottom:995.370000px;}
.y16d{bottom:1002.570000px;}
.yf0{bottom:1003.290000px;}
.yce{bottom:1004.010000px;}
.y64{bottom:1012.470000px;}
.y16c{bottom:1020.570000px;}
.yef{bottom:1021.290000px;}
.ycd{bottom:1022.010000px;}
.y63{bottom:1029.750000px;}
.y16b{bottom:1038.570000px;}
.yee{bottom:1039.290000px;}
.ycc{bottom:1040.010000px;}
.y62{bottom:1047.030000px;}
.yd{bottom:1052.250000px;}
.y16a{bottom:1056.570000px;}
.yed{bottom:1057.290000px;}
.ycb{bottom:1058.010000px;}
.y61{bottom:1064.310000px;}
.y169{bottom:1074.570000px;}
.yec{bottom:1075.290000px;}
.yca{bottom:1076.010000px;}
.y129{bottom:1076.190000px;}
.y6{bottom:1077.450000px;}
.y60{bottom:1081.590000px;}
.y128{bottom:1090.950000px;}
.y168{bottom:1092.570000px;}
.yeb{bottom:1093.290000px;}
.yc9{bottom:1094.010000px;}
.y5f{bottom:1098.690000px;}
.y127{bottom:1108.950000px;}
.y167{bottom:1110.570000px;}
.yea{bottom:1111.290000px;}
.yc8{bottom:1112.010000px;}
.y1a5{bottom:1113.810000px;}
.y5e{bottom:1115.970000px;}
.y126{bottom:1126.950000px;}
.y166{bottom:1128.570000px;}
.ye9{bottom:1129.290000px;}
.y5d{bottom:1133.250000px;}
.y125{bottom:1144.980000px;}
.y1b4{bottom:1145.880000px;}
.y165{bottom:1146.600000px;}
.y5c{bottom:1150.560000px;}
.y124{bottom:1162.980000px;}
.y1b3{bottom:1163.880000px;}
.y5b{bottom:1167.840000px;}
.y123{bottom:1180.980000px;}
.y5a{bottom:1185.120000px;}
.h25{height:17.100000px;}
.h21{height:17.280000px;}
.h22{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h13{height:29.700000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1b{height:41.756133px;}
.h1a{height:42.164648px;}
.h12{height:43.453125px;}
.h20{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h1f{height:45.549492px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1c{height:48.046641px;}
.h1e{height:48.088125px;}
.h23{height:51.696000px;}
.h24{height:51.840000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.900000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:216.390000px;}
.h15{height:483.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w21{width:81.900000px;}
.w22{width:82.476000px;}
.w18{width:93.240000px;}
.w3a{width:93.600000px;}
.w1e{width:95.580000px;}
.w24{width:97.236000px;}
.w20{width:99.576000px;}
.w16{width:99.720000px;}
.w23{width:102.600000px;}
.wb{width:112.176000px;}
.w11{width:112.896000px;}
.w1c{width:116.460000px;}
.w1d{width:116.496000px;}
.w1b{width:116.676000px;}
.w25{width:120.960000px;}
.w15{width:121.680000px;}
.w14{width:121.716000px;}
.w35{width:122.256000px;}
.w39{width:142.956000px;}
.we{width:148.356000px;}
.w34{width:151.230000px;}
.w5{width:151.950000px;}
.w1f{width:157.530000px;}
.w33{width:169.050000px;}
.w38{width:174.630000px;}
.w3c{width:176.250000px;}
.w37{width:189.570000px;}
.w32{width:201.810000px;}
.w31{width:208.470000px;}
.w19{width:211.890000px;}
.w8{width:223.275000px;}
.wc{width:254.730000px;}
.w12{width:256.170000px;}
.wd{width:260.715000px;}
.w13{width:278.895000px;}
.w1a{width:298.335000px;}
.w36{width:301.710000px;}
.w28{width:308.055000px;}
.w30{width:334.875000px;}
.wf{width:336.090000px;}
.w2d{width:345.630000px;}
.w2b{width:351.210000px;}
.w2f{width:359.895000px;}
.w26{width:363.855000px;}
.w10{width:376.095000px;}
.wa{width:378.255000px;}
.w27{width:382.035000px;}
.w2e{width:385.995000px;}
.w2a{width:394.665000px;}
.w2c{width:400.245000px;}
.w29{width:437.835000px;}
.w17{width:439.845000px;}
.w9{width:524.055000px;}
.w3b{width:569.625000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.x11{left:16.596000px;}
.xc{left:25.416000px;}
.xf{left:32.076000px;}
.xe{left:61.416000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x1d{left:86.939987px;}
.x2a{left:88.199987px;}
.x73{left:91.835987px;}
.x44{left:93.095987px;}
.xd{left:94.350000px;}
.x4c{left:96.335987px;}
.x5{left:98.130000px;}
.x15{left:102.635987px;}
.x74{left:108.035987px;}
.x17{left:118.835987px;}
.x40{left:120.455987px;}
.x16{left:129.635987px;}
.x4d{left:133.955987px;}
.x75{left:135.035987px;}
.x45{left:141.695987px;}
.x23{left:156.809987px;}
.x63{left:166.169987px;}
.x64{left:177.689987px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.x5a{left:229.169987px;}
.x5e{left:230.429987px;}
.x37{left:231.510000px;}
.x60{left:234.029987px;}
.x54{left:243.030000px;}
.x69{left:244.289987px;}
.x2b{left:248.069987px;}
.x36{left:252.389987px;}
.x65{left:263.550000px;}
.x41{left:268.409987px;}
.x26{left:279.074987px;}
.x3d{left:280.154987px;}
.x61{left:286.094987px;}
.x9{left:288.435000px;}
.x5b{left:290.234987px;}
.x2c{left:292.754987px;}
.x49{left:294.014987px;}
.x13{left:296.175000px;}
.x46{left:301.754987px;}
.x6b{left:308.774987px;}
.x4e{left:310.214987px;}
.x52{left:316.874987px;}
.x53{left:320.834987px;}
.x6d{left:326.954987px;}
.x38{left:331.815000px;}
.x20{left:334.695000px;}
.x6e{left:339.914987px;}
.x10{left:346.215000px;}
.x7{left:348.195000px;}
.x5d{left:350.174987px;}
.x6f{left:351.434987px;}
.x1f{left:353.774987px;}
.x71{left:359.354987px;}
.x59{left:360.974987px;}
.x19{left:365.654987px;}
.x8{left:367.455000px;}
.x1e{left:368.894987px;}
.x33{left:372.315000px;}
.xb{left:373.575000px;}
.x42{left:382.035000px;}
.x55{left:394.995000px;}
.x4f{left:408.855000px;}
.x39{left:414.435000px;}
.x25{left:421.274987px;}
.x3e{left:437.835000px;}
.x66{left:438.915000px;}
.x18{left:446.474987px;}
.x27{left:450.075000px;}
.x1a{left:452.235000px;}
.xa{left:455.700000px;}
.x4a{left:459.975000px;}
.x47{left:468.645000px;}
.x48{left:474.225000px;}
.x2d{left:475.305000px;}
.x21{left:483.765000px;}
.x34{left:489.705000px;}
.x3a{left:497.625000px;}
.x31{left:513.825000px;}
.x56{left:518.145000px;}
.x28{left:563.685000px;}
.x1b{left:565.125000px;}
.x67{left:582.585000px;}
.x2e{left:597.705000px;}
.x3b{left:600.945000px;}
.x72{left:604.004987px;}
.x32{left:607.965000px;}
.x50{left:618.045000px;}
.x6a{left:643.605000px;}
.x5c{left:659.129987px;}
.x29{left:664.889987px;}
.x24{left:672.089987px;}
.x22{left:674.249987px;}
.x5f{left:679.469987px;}
.x62{left:683.249987px;}
.x58{left:694.049987px;}
.x3c{left:698.910000px;}
.x68{left:712.049987px;}
.x51{left:713.489987px;}
.x30{left:719.069987px;}
.x2f{left:720.150000px;}
.x43{left:722.129987px;}
.x35{left:724.290000px;}
.x3f{left:725.909987px;}
.x6c{left:728.969987px;}
.x1c{left:730.049987px;}
.x4b{left:732.389987px;}
.x70{left:733.469987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls28{letter-spacing:-0.688000pt;}
.ls2a{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.367467pt;}
.ls16{letter-spacing:-0.362667pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls1b{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.154027pt;}
.ls5{letter-spacing:0.154880pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls1a{letter-spacing:0.277120pt;}
.ls18{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.337707pt;}
.ls13{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.698880pt;}
.ls11{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.869333pt;}
.ls21{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:2.720000pt;}
.ls24{letter-spacing:4.160000pt;}
.ls20{letter-spacing:4.800000pt;}
.ls22{letter-spacing:5.440000pt;}
.ls25{letter-spacing:6.560000pt;}
.ls27{letter-spacing:7.200000pt;}
.ls23{letter-spacing:8.000000pt;}
.ls29{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wse{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.912533pt;}
.ws17{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.392640pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-7.011840pt;}
._17{margin-left:-5.976320pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.818667pt;}
._2{margin-left:-2.655787pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.456000pt;}
._d{width:3.006080pt;}
._f{width:4.249600pt;}
._11{width:5.417387pt;}
._7{width:6.422400pt;}
._8{width:7.451947pt;}
._5{width:8.610560pt;}
._6{width:9.797120pt;}
._a{width:11.155200pt;}
._e{width:12.217600pt;}
._9{width:14.395520pt;}
._14{width:15.617280pt;}
._15{width:16.542080pt;}
._b{width:17.560960pt;}
._c{width:18.592000pt;}
._10{width:20.185600pt;}
._12{width:21.735680pt;}
._13{width:22.938240pt;}
._1a{width:36.394880pt;}
._19{width:38.777600pt;}
._18{width:39.999360pt;}
.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;}
.y1c{bottom:0.160000pt;}
.y4a{bottom:2.880000pt;}
.y13c{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y50{bottom:3.520000pt;}
.ye{bottom:8.320000pt;}
.y1d{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y113{bottom:18.240000pt;}
.y106{bottom:18.266667pt;}
.y49{bottom:18.280000pt;}
.y4f{bottom:19.840000pt;}
.y1a{bottom:21.120000pt;}
.y4d{bottom:25.760000pt;}
.yb{bottom:26.880000pt;}
.y112{bottom:33.600000pt;}
.y105{bottom:33.626667pt;}
.y48{bottom:33.640000pt;}
.y19{bottom:35.880000pt;}
.y4e{bottom:36.160000pt;}
.y5{bottom:37.280000pt;}
.y4c{bottom:38.720000pt;}
.ya{bottom:41.440000pt;}
.y114{bottom:46.080000pt;}
.y18{bottom:47.080000pt;}
.y47{bottom:49.000000pt;}
.y1{bottom:57.280000pt;}
.y46{bottom:64.360000pt;}
.y17{bottom:65.160000pt;}
.y9{bottom:65.306667pt;}
.y45{bottom:79.560000pt;}
.y16{bottom:79.720000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:90.760000pt;}
.y44{bottom:94.920000pt;}
.y1c4{bottom:97.312000pt;}
.y98{bottom:98.912000pt;}
.y7{bottom:99.066667pt;}
.ye8{bottom:101.152000pt;}
.y122{bottom:101.792000pt;}
.y164{bottom:102.272000pt;}
.y21c{bottom:102.592000pt;}
.y205{bottom:103.232000pt;}
.y59{bottom:103.392000pt;}
.y14{bottom:103.880000pt;}
.y1a4{bottom:104.992000pt;}
.y1ed{bottom:107.392000pt;}
.y1b2{bottom:109.312000pt;}
.yc7{bottom:109.472000pt;}
.y43{bottom:110.280000pt;}
.y1c3{bottom:113.312000pt;}
.y1fc{bottom:113.952000pt;}
.y97{bottom:114.112000pt;}
.ye7{bottom:116.512000pt;}
.y1de{bottom:116.672000pt;}
.y13{bottom:117.480000pt;}
.y121{bottom:117.792000pt;}
.y21b{bottom:117.952000pt;}
.y163{bottom:118.272000pt;}
.y58{bottom:118.592000pt;}
.y1a3{bottom:120.352000pt;}
.y1ec{bottom:122.752000pt;}
.yc6{bottom:124.672000pt;}
.y42{bottom:125.640000pt;}
.y1c2{bottom:129.312000pt;}
.y96{bottom:129.472000pt;}
.ye6{bottom:131.872000pt;}
.y21a{bottom:133.312000pt;}
.y120{bottom:133.786667pt;}
.y57{bottom:133.946667pt;}
.y162{bottom:134.266667pt;}
.y12{bottom:134.280000pt;}
.y1a2{bottom:135.706667pt;}
.yc5{bottom:137.146667pt;}
.y1eb{bottom:138.106667pt;}
.y1b1{bottom:139.866667pt;}
.y41{bottom:141.000000pt;}
.ye5{bottom:144.346667pt;}
.y1fb{bottom:144.666667pt;}
.y95{bottom:144.826667pt;}
.y1c1{bottom:145.306667pt;}
.y1dd{bottom:147.226667pt;}
.y219{bottom:148.666667pt;}
.y56{bottom:149.306667pt;}
.y11f{bottom:149.786667pt;}
.y161{bottom:150.266667pt;}
.y1a1{bottom:151.066667pt;}
.y1b0{bottom:152.346667pt;}
.y1ea{bottom:153.466667pt;}
.y40{bottom:156.360000pt;}
.y18a{bottom:156.826667pt;}
.y11{bottom:157.160000pt;}
.y1fa{bottom:159.866667pt;}
.y94{bottom:160.186667pt;}
.y1c0{bottom:161.306667pt;}
.y1dc{bottom:162.586667pt;}
.y218{bottom:163.866667pt;}
.y55{bottom:164.666667pt;}
.y160{bottom:166.266667pt;}
.y11e{bottom:168.666667pt;}
.y189{bottom:169.946667pt;}
.y3f{bottom:171.560000pt;}
.y1db{bottom:175.066667pt;}
.y1f9{bottom:175.226667pt;}
.y93{bottom:175.546667pt;}
.y10{bottom:178.920000pt;}
.y217{bottom:179.226667pt;}
.y2e{bottom:179.240000pt;}
.y204{bottom:179.866667pt;}
.y54{bottom:180.026667pt;}
.y1bf{bottom:180.186667pt;}
.y1a0{bottom:181.626667pt;}
.y15f{bottom:182.266667pt;}
.y11d{bottom:184.026667pt;}
.y188{bottom:185.946667pt;}
.y3e{bottom:186.920000pt;}
.y1f8{bottom:190.586667pt;}
.y92{bottom:190.746667pt;}
.y2d{bottom:192.840000pt;}
.y216{bottom:194.586667pt;}
.y203{bottom:195.226667pt;}
.y53{bottom:195.386667pt;}
.y1be{bottom:195.546667pt;}
.y19f{bottom:196.986667pt;}
.y15e{bottom:198.266667pt;}
.y11c{bottom:199.386667pt;}
.y187{bottom:201.946667pt;}
.y3d{bottom:202.280000pt;}
.y1f7{bottom:205.946667pt;}
.y91{bottom:206.106667pt;}
.y2c{bottom:209.000000pt;}
.y215{bottom:209.946667pt;}
.y52{bottom:210.586667pt;}
.y1bd{bottom:210.906667pt;}
.y19e{bottom:212.346667pt;}
.y15d{bottom:214.266667pt;}
.y11b{bottom:214.586667pt;}
.y1e9{bottom:214.746667pt;}
.y3c{bottom:217.640000pt;}
.y186{bottom:217.946667pt;}
.y1f6{bottom:218.426667pt;}
.y90{bottom:221.466667pt;}
.y2b{bottom:224.360000pt;}
.y19d{bottom:224.826667pt;}
.y214{bottom:225.306667pt;}
.y51{bottom:225.946667pt;}
.y1bc{bottom:226.266667pt;}
.y1e8{bottom:227.226667pt;}
.y11a{bottom:229.946667pt;}
.y15c{bottom:230.266667pt;}
.y3b{bottom:233.000000pt;}
.y185{bottom:233.946667pt;}
.y140{bottom:235.226667pt;}
.y8f{bottom:236.826667pt;}
.y4b{bottom:238.426667pt;}
.y2a{bottom:239.880000pt;}
.y213{bottom:240.666667pt;}
.y1bb{bottom:241.466667pt;}
.y119{bottom:245.306667pt;}
.y15b{bottom:246.266667pt;}
.y3a{bottom:248.200000pt;}
.y13f{bottom:248.346667pt;}
.y184{bottom:249.946667pt;}
.y8e{bottom:252.186667pt;}
.y1ba{bottom:253.946667pt;}
.y29{bottom:255.426667pt;}
.y212{bottom:255.866667pt;}
.y118{bottom:260.666667pt;}
.y39{bottom:263.586667pt;}
.y13e{bottom:264.346667pt;}
.y15a{bottom:265.146667pt;}
.y183{bottom:265.946667pt;}
.y8d{bottom:267.546667pt;}
.y28{bottom:270.786667pt;}
.y211{bottom:271.226667pt;}
.y117{bottom:276.026667pt;}
.y38{bottom:278.946667pt;}
.y13d{bottom:280.346667pt;}
.y182{bottom:281.946667pt;}
.y8c{bottom:282.746667pt;}
.y27{bottom:286.306667pt;}
.y210{bottom:286.586667pt;}
.y1e{bottom:287.226667pt;}
.y116{bottom:291.226667pt;}
.y159{bottom:293.466667pt;}
.y37{bottom:294.306667pt;}
.y13b{bottom:296.346667pt;}
.yb4{bottom:297.306667pt;}
.y181{bottom:297.786667pt;}
.y8b{bottom:298.106667pt;}
.y26{bottom:301.666667pt;}
.y20f{bottom:301.986667pt;}
.y115{bottom:306.626667pt;}
.y158{bottom:309.506667pt;}
.y36{bottom:309.666667pt;}
.yb3{bottom:310.466667pt;}
.y13a{bottom:312.386667pt;}
.y8a{bottom:313.506667pt;}
.y180{bottom:313.826667pt;}
.y25{bottom:317.186667pt;}
.y20e{bottom:317.346667pt;}
.y111{bottom:319.746667pt;}
.y35{bottom:325.026667pt;}
.y157{bottom:325.506667pt;}
.yb2{bottom:326.466667pt;}
.y139{bottom:328.386667pt;}
.y89{bottom:328.866667pt;}
.y17f{bottom:329.826667pt;}
.y24{bottom:332.706667pt;}
.y34{bottom:340.226667pt;}
.y156{bottom:341.506667pt;}
.yb1{bottom:342.466667pt;}
.y88{bottom:344.226667pt;}
.y138{bottom:344.386667pt;}
.y20d{bottom:347.906667pt;}
.y23{bottom:348.066667pt;}
.y17e{bottom:348.706667pt;}
.y33{bottom:355.586667pt;}
.y155{bottom:357.506667pt;}
.yb0{bottom:358.466667pt;}
.yc4{bottom:358.626667pt;}
.y87{bottom:359.586667pt;}
.y137{bottom:360.386667pt;}
.y20c{bottom:363.266667pt;}
.y22{bottom:363.586667pt;}
.y17d{bottom:364.066667pt;}
.ye4{bottom:365.986667pt;}
.y110{bottom:366.466667pt;}
.y32{bottom:370.946667pt;}
.y154{bottom:373.506667pt;}
.yc3{bottom:373.986667pt;}
.yaf{bottom:374.466667pt;}
.y86{bottom:374.786667pt;}
.y136{bottom:376.386667pt;}
.y20b{bottom:378.626667pt;}
.ye3{bottom:379.106667pt;}
.y21{bottom:379.266667pt;}
.y17c{bottom:379.426667pt;}
.y10f{bottom:382.466667pt;}
.y31{bottom:386.306667pt;}
.yc2{bottom:386.466667pt;}
.y153{bottom:389.506667pt;}
.y85{bottom:390.146667pt;}
.yae{bottom:390.466667pt;}
.y135{bottom:392.386667pt;}
.y20a{bottom:393.986667pt;}
.y17b{bottom:394.786667pt;}
.ye2{bottom:395.106667pt;}
.y10e{bottom:398.466667pt;}
.y30{bottom:401.666667pt;}
.y20{bottom:403.586667pt;}
.y84{bottom:405.506667pt;}
.yad{bottom:409.346667pt;}
.y17a{bottom:410.146667pt;}
.ye1{bottom:411.106667pt;}
.y134{bottom:411.266667pt;}
.y10d{bottom:414.466667pt;}
.y2f{bottom:417.026667pt;}
.y1f{bottom:419.266667pt;}
.y83{bottom:420.866667pt;}
.y152{bottom:421.506667pt;}
.yac{bottom:424.706667pt;}
.y179{bottom:425.506667pt;}
.y133{bottom:426.626667pt;}
.ye0{bottom:427.106667pt;}
.y10c{bottom:430.466667pt;}
.y1da{bottom:432.706667pt;}
.y82{bottom:436.226667pt;}
.y151{bottom:437.506667pt;}
.y209{bottom:439.906667pt;}
.yab{bottom:440.066667pt;}
.y178{bottom:440.706667pt;}
.y132{bottom:441.986667pt;}
.ydf{bottom:443.106667pt;}
.y10b{bottom:446.466667pt;}
.y1d9{bottom:447.906667pt;}
.y81{bottom:451.426667pt;}
.yaa{bottom:455.266667pt;}
.y177{bottom:456.066667pt;}
.y150{bottom:456.386667pt;}
.y131{bottom:457.346667pt;}
.yde{bottom:459.106667pt;}
.y10a{bottom:462.466667pt;}
.y1d8{bottom:463.266667pt;}
.y1e7{bottom:464.066667pt;}
.y80{bottom:466.786667pt;}
.ya9{bottom:470.626667pt;}
.y176{bottom:471.426667pt;}
.y14f{bottom:471.746667pt;}
.y130{bottom:472.706667pt;}
.ydd{bottom:475.106667pt;}
.y1f5{bottom:477.346667pt;}
.y109{bottom:478.466667pt;}
.y1d7{bottom:478.626667pt;}
.y1e6{bottom:479.426667pt;}
.y7f{bottom:482.146667pt;}
.ya8{bottom:485.986667pt;}
.y175{bottom:486.786667pt;}
.y14e{bottom:487.106667pt;}
.y12f{bottom:487.906667pt;}
.ydc{bottom:491.106667pt;}
.y1d6{bottom:491.746667pt;}
.y1f4{bottom:492.546667pt;}
.y108{bottom:494.466667pt;}
.y1e5{bottom:494.786667pt;}
.y7e{bottom:497.506667pt;}
.y1af{bottom:497.986667pt;}
.ya7{bottom:501.346667pt;}
.y174{bottom:502.146667pt;}
.y14d{bottom:502.466667pt;}
.y12e{bottom:503.266667pt;}
.ydb{bottom:507.106667pt;}
.y1e4{bottom:507.266667pt;}
.y1d5{bottom:507.746667pt;}
.y1f3{bottom:507.906667pt;}
.y107{bottom:510.466667pt;}
.y7d{bottom:512.866667pt;}
.y1ae{bottom:513.346667pt;}
.y19c{bottom:513.986667pt;}
.y208{bottom:516.546667pt;}
.ya6{bottom:516.706667pt;}
.y173{bottom:517.506667pt;}
.y14c{bottom:517.826667pt;}
.y12d{bottom:518.626667pt;}
.y1f2{bottom:520.386667pt;}
.yda{bottom:523.106667pt;}
.y1d4{bottom:523.746667pt;}
.y104{bottom:526.466667pt;}
.y19b{bottom:527.106667pt;}
.y7c{bottom:528.226667pt;}
.y1ad{bottom:528.706667pt;}
.y207{bottom:531.906667pt;}
.ya5{bottom:532.066667pt;}
.y172{bottom:532.706667pt;}
.y12c{bottom:533.986667pt;}
.yd9{bottom:539.133333pt;}
.y1d3{bottom:539.773333pt;}
.y1ac{bottom:541.853333pt;}
.y19a{bottom:543.133333pt;}
.y7b{bottom:543.453333pt;}
.ya4{bottom:547.293333pt;}
.y171{bottom:548.093333pt;}
.y12b{bottom:549.373333pt;}
.y1d2{bottom:555.773333pt;}
.y1ab{bottom:557.693333pt;}
.yd8{bottom:558.013333pt;}
.y7a{bottom:558.813333pt;}
.y199{bottom:559.133333pt;}
.y170{bottom:560.573333pt;}
.y12a{bottom:561.693333pt;}
.ya3{bottom:562.653333pt;}
.y14b{bottom:564.733333pt;}
.y1d1{bottom:571.773333pt;}
.yd7{bottom:573.373333pt;}
.y79{bottom:574.173333pt;}
.y198{bottom:575.133333pt;}
.y103{bottom:576.093333pt;}
.y1aa{bottom:576.573333pt;}
.y221{bottom:577.693333pt;}
.ya2{bottom:578.013333pt;}
.y14a{bottom:581.053333pt;}
.yd6{bottom:588.733333pt;}
.y78{bottom:589.533333pt;}
.y1d0{bottom:590.653333pt;}
.y197{bottom:591.133333pt;}
.y102{bottom:591.293333pt;}
.y1a9{bottom:591.933333pt;}
.ya1{bottom:593.373333pt;}
.y149{bottom:596.413333pt;}
.yd5{bottom:603.933333pt;}
.y101{bottom:604.413333pt;}
.y77{bottom:604.893333pt;}
.y1b9{bottom:605.533333pt;}
.y1cf{bottom:606.013333pt;}
.y196{bottom:607.133333pt;}
.y1a8{bottom:607.293333pt;}
.ya0{bottom:608.733333pt;}
.y148{bottom:611.613333pt;}
.yd4{bottom:616.413333pt;}
.yc1{bottom:618.333333pt;}
.y76{bottom:620.253333pt;}
.y100{bottom:620.413333pt;}
.y1ce{bottom:621.373333pt;}
.y1a7{bottom:622.653333pt;}
.y195{bottom:623.133333pt;}
.y9f{bottom:623.933333pt;}
.y1b8{bottom:624.413333pt;}
.y147{bottom:627.933333pt;}
.yc0{bottom:631.453333pt;}
.y1a6{bottom:635.133333pt;}
.y220{bottom:635.453333pt;}
.y75{bottom:636.413333pt;}
.y1cd{bottom:636.573333pt;}
.y194{bottom:639.133333pt;}
.y9e{bottom:639.293333pt;}
.y1b7{bottom:639.773333pt;}
.y146{bottom:643.293333pt;}
.ybf{bottom:647.453333pt;}
.y74{bottom:651.773333pt;}
.y1cc{bottom:651.933333pt;}
.yff{bottom:652.413333pt;}
.y9d{bottom:654.653333pt;}
.y193{bottom:655.133333pt;}
.y145{bottom:658.653333pt;}
.ybe{bottom:663.453333pt;}
.y21f{bottom:667.133333pt;}
.y1cb{bottom:667.293333pt;}
.y73{bottom:668.093333pt;}
.yfe{bottom:668.413333pt;}
.y9c{bottom:670.013333pt;}
.y1b6{bottom:670.493333pt;}
.y192{bottom:671.133333pt;}
.y144{bottom:674.013333pt;}
.ybd{bottom:679.453333pt;}
.y1ca{bottom:682.653333pt;}
.y1b5{bottom:682.973333pt;}
.y72{bottom:683.453333pt;}
.yfd{bottom:684.413333pt;}
.y9b{bottom:685.373333pt;}
.y191{bottom:687.133333pt;}
.y143{bottom:689.373333pt;}
.y1c9{bottom:698.013333pt;}
.ybc{bottom:698.333333pt;}
.y21e{bottom:698.813333pt;}
.y71{bottom:699.773333pt;}
.yfc{bottom:700.413333pt;}
.y9a{bottom:700.733333pt;}
.y202{bottom:703.293333pt;}
.y142{bottom:704.573333pt;}
.y190{bottom:706.013333pt;}
.y1c8{bottom:713.373333pt;}
.ybb{bottom:713.693333pt;}
.y70{bottom:714.973333pt;}
.y99{bottom:715.933333pt;}
.yfb{bottom:716.413333pt;}
.y1b{bottom:716.573333pt;}
.y141{bottom:717.053333pt;}
.y201{bottom:718.653333pt;}
.y18f{bottom:721.373333pt;}
.y1c7{bottom:728.573333pt;}
.yba{bottom:729.053333pt;}
.y21d{bottom:730.333333pt;}
.y6f{bottom:731.293333pt;}
.yfa{bottom:732.413333pt;}
.y200{bottom:734.013333pt;}
.y18e{bottom:736.573333pt;}
.yf{bottom:742.973333pt;}
.y1c6{bottom:743.933333pt;}
.yb9{bottom:744.253333pt;}
.y6e{bottom:746.653333pt;}
.yf9{bottom:748.413333pt;}
.y1ff{bottom:749.373333pt;}
.y18d{bottom:751.933333pt;}
.y1e3{bottom:752.733333pt;}
.y1c5{bottom:756.413333pt;}
.yb8{bottom:759.613333pt;}
.y6d{bottom:762.013333pt;}
.yf8{bottom:764.413333pt;}
.y1fe{bottom:764.573333pt;}
.y18c{bottom:767.293333pt;}
.y1e2{bottom:768.093333pt;}
.y206{bottom:773.053333pt;}
.yb7{bottom:775.013333pt;}
.y1f1{bottom:775.333333pt;}
.y1fd{bottom:777.093333pt;}
.y6c{bottom:777.413333pt;}
.y18b{bottom:779.813333pt;}
.yf7{bottom:780.453333pt;}
.y1e1{bottom:783.493333pt;}
.yb6{bottom:790.373333pt;}
.y1f0{bottom:790.693333pt;}
.y6b{bottom:792.773333pt;}
.y1e0{bottom:798.853333pt;}
.yf6{bottom:799.333333pt;}
.yb5{bottom:802.853333pt;}
.y1ef{bottom:806.053333pt;}
.y6a{bottom:807.973333pt;}
.y1df{bottom:811.333333pt;}
.yf5{bottom:814.693333pt;}
.yd3{bottom:815.333333pt;}
.y1ee{bottom:818.533333pt;}
.y69{bottom:823.333333pt;}
.yf4{bottom:827.813333pt;}
.yd2{bottom:828.453333pt;}
.y68{bottom:838.693333pt;}
.yf3{bottom:843.813333pt;}
.yd1{bottom:844.453333pt;}
.y67{bottom:854.053333pt;}
.yf2{bottom:859.813333pt;}
.yd0{bottom:860.453333pt;}
.y16f{bottom:862.053333pt;}
.y66{bottom:869.413333pt;}
.y16e{bottom:875.173333pt;}
.yf1{bottom:875.813333pt;}
.ycf{bottom:876.453333pt;}
.y65{bottom:884.773333pt;}
.y16d{bottom:891.173333pt;}
.yf0{bottom:891.813333pt;}
.yce{bottom:892.453333pt;}
.y64{bottom:899.973333pt;}
.y16c{bottom:907.173333pt;}
.yef{bottom:907.813333pt;}
.ycd{bottom:908.453333pt;}
.y63{bottom:915.333333pt;}
.y16b{bottom:923.173333pt;}
.yee{bottom:923.813333pt;}
.ycc{bottom:924.453333pt;}
.y62{bottom:930.693333pt;}
.yd{bottom:935.333333pt;}
.y16a{bottom:939.173333pt;}
.yed{bottom:939.813333pt;}
.ycb{bottom:940.453333pt;}
.y61{bottom:946.053333pt;}
.y169{bottom:955.173333pt;}
.yec{bottom:955.813333pt;}
.yca{bottom:956.453333pt;}
.y129{bottom:956.613333pt;}
.y6{bottom:957.733333pt;}
.y60{bottom:961.413333pt;}
.y128{bottom:969.733333pt;}
.y168{bottom:971.173333pt;}
.yeb{bottom:971.813333pt;}
.yc9{bottom:972.453333pt;}
.y5f{bottom:976.613333pt;}
.y127{bottom:985.733333pt;}
.y167{bottom:987.173333pt;}
.yea{bottom:987.813333pt;}
.yc8{bottom:988.453333pt;}
.y1a5{bottom:990.053333pt;}
.y5e{bottom:991.973333pt;}
.y126{bottom:1001.733333pt;}
.y166{bottom:1003.173333pt;}
.ye9{bottom:1003.813333pt;}
.y5d{bottom:1007.333333pt;}
.y125{bottom:1017.760000pt;}
.y1b4{bottom:1018.560000pt;}
.y165{bottom:1019.200000pt;}
.y5c{bottom:1022.720000pt;}
.y124{bottom:1033.760000pt;}
.y1b3{bottom:1034.560000pt;}
.y5b{bottom:1038.080000pt;}
.y123{bottom:1049.760000pt;}
.y5a{bottom:1053.440000pt;}
.h25{height:15.200000pt;}
.h21{height:15.360000pt;}
.h22{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h13{height:26.400000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.116563pt;}
.h1a{height:37.479688pt;}
.h12{height:38.625000pt;}
.h20{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h1f{height:40.488438pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1c{height:42.708125pt;}
.h1e{height:42.745000pt;}
.h23{height:45.952000pt;}
.h24{height:46.080000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.800000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:192.346667pt;}
.h15{height:429.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w21{width:72.800000pt;}
.w22{width:73.312000pt;}
.w18{width:82.880000pt;}
.w3a{width:83.200000pt;}
.w1e{width:84.960000pt;}
.w24{width:86.432000pt;}
.w20{width:88.512000pt;}
.w16{width:88.640000pt;}
.w23{width:91.200000pt;}
.wb{width:99.712000pt;}
.w11{width:100.352000pt;}
.w1c{width:103.520000pt;}
.w1d{width:103.552000pt;}
.w1b{width:103.712000pt;}
.w25{width:107.520000pt;}
.w15{width:108.160000pt;}
.w14{width:108.192000pt;}
.w35{width:108.672000pt;}
.w39{width:127.072000pt;}
.we{width:131.872000pt;}
.w34{width:134.426667pt;}
.w5{width:135.066667pt;}
.w1f{width:140.026667pt;}
.w33{width:150.266667pt;}
.w38{width:155.226667pt;}
.w3c{width:156.666667pt;}
.w37{width:168.506667pt;}
.w32{width:179.386667pt;}
.w31{width:185.306667pt;}
.w19{width:188.346667pt;}
.w8{width:198.466667pt;}
.wc{width:226.426667pt;}
.w12{width:227.706667pt;}
.wd{width:231.746667pt;}
.w13{width:247.906667pt;}
.w1a{width:265.186667pt;}
.w36{width:268.186667pt;}
.w28{width:273.826667pt;}
.w30{width:297.666667pt;}
.wf{width:298.746667pt;}
.w2d{width:307.226667pt;}
.w2b{width:312.186667pt;}
.w2f{width:319.906667pt;}
.w26{width:323.426667pt;}
.w10{width:334.306667pt;}
.wa{width:336.226667pt;}
.w27{width:339.586667pt;}
.w2e{width:343.106667pt;}
.w2a{width:350.813333pt;}
.w2c{width:355.773333pt;}
.w29{width:389.186667pt;}
.w17{width:390.973333pt;}
.w9{width:465.826667pt;}
.w3b{width:506.333333pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.x11{left:14.752000pt;}
.xc{left:22.592000pt;}
.xf{left:28.512000pt;}
.xe{left:54.592000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x1d{left:77.279988pt;}
.x2a{left:78.399988pt;}
.x73{left:81.631988pt;}
.x44{left:82.751988pt;}
.xd{left:83.866667pt;}
.x4c{left:85.631988pt;}
.x5{left:87.226667pt;}
.x15{left:91.231988pt;}
.x74{left:96.031988pt;}
.x17{left:105.631988pt;}
.x40{left:107.071988pt;}
.x16{left:115.231988pt;}
.x4d{left:119.071988pt;}
.x75{left:120.031988pt;}
.x45{left:125.951988pt;}
.x23{left:139.386655pt;}
.x63{left:147.706655pt;}
.x64{left:157.946655pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.x5a{left:203.706655pt;}
.x5e{left:204.826655pt;}
.x37{left:205.786667pt;}
.x60{left:208.026655pt;}
.x54{left:216.026667pt;}
.x69{left:217.146655pt;}
.x2b{left:220.506655pt;}
.x36{left:224.346655pt;}
.x65{left:234.266667pt;}
.x41{left:238.586655pt;}
.x26{left:248.066655pt;}
.x3d{left:249.026655pt;}
.x61{left:254.306655pt;}
.x9{left:256.386667pt;}
.x5b{left:257.986655pt;}
.x2c{left:260.226655pt;}
.x49{left:261.346655pt;}
.x13{left:263.266667pt;}
.x46{left:268.226655pt;}
.x6b{left:274.466655pt;}
.x4e{left:275.746655pt;}
.x52{left:281.666655pt;}
.x53{left:285.186655pt;}
.x6d{left:290.626655pt;}
.x38{left:294.946667pt;}
.x20{left:297.506667pt;}
.x6e{left:302.146655pt;}
.x10{left:307.746667pt;}
.x7{left:309.506667pt;}
.x5d{left:311.266655pt;}
.x6f{left:312.386655pt;}
.x1f{left:314.466655pt;}
.x71{left:319.426655pt;}
.x59{left:320.866655pt;}
.x19{left:325.026655pt;}
.x8{left:326.626667pt;}
.x1e{left:327.906655pt;}
.x33{left:330.946667pt;}
.xb{left:332.066667pt;}
.x42{left:339.586667pt;}
.x55{left:351.106667pt;}
.x4f{left:363.426667pt;}
.x39{left:368.386667pt;}
.x25{left:374.466655pt;}
.x3e{left:389.186667pt;}
.x66{left:390.146667pt;}
.x18{left:396.866655pt;}
.x27{left:400.066667pt;}
.x1a{left:401.986667pt;}
.xa{left:405.066667pt;}
.x4a{left:408.866667pt;}
.x47{left:416.573333pt;}
.x48{left:421.533333pt;}
.x2d{left:422.493333pt;}
.x21{left:430.013333pt;}
.x34{left:435.293333pt;}
.x3a{left:442.333333pt;}
.x31{left:456.733333pt;}
.x56{left:460.573333pt;}
.x28{left:501.053333pt;}
.x1b{left:502.333333pt;}
.x67{left:517.853333pt;}
.x2e{left:531.293333pt;}
.x3b{left:534.173333pt;}
.x72{left:536.893322pt;}
.x32{left:540.413333pt;}
.x50{left:549.373333pt;}
.x6a{left:572.093333pt;}
.x5c{left:585.893322pt;}
.x29{left:591.013322pt;}
.x24{left:597.413322pt;}
.x22{left:599.333322pt;}
.x5f{left:603.973322pt;}
.x62{left:607.333322pt;}
.x58{left:616.933322pt;}
.x3c{left:621.253333pt;}
.x68{left:632.933322pt;}
.x51{left:634.213322pt;}
.x30{left:639.173322pt;}
.x2f{left:640.133333pt;}
.x43{left:641.893322pt;}
.x35{left:643.813333pt;}
.x3f{left:645.253322pt;}
.x6c{left:647.973322pt;}
.x1c{left:648.933322pt;}
.x4b{left:651.013322pt;}
.x70{left:651.973322pt;}
.x3{left:663.013333pt;}
}




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