
    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_e5bf1c292034e2efe2c0fe24.woff')format("woff");}.ff1{font-family:ff1;line-height:1.181818;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_e3a7cc2b87bc410af8bd82b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.181818;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_b090bc05869ec801bc2508bd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.181818;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_56e5163340b11bb247a5b42e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.181818;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_8fb028a117325626d5f7bf77.woff')format("woff");}.ff5{font-family:ff5;line-height:1.181818;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_367105c77aee376e943bd483.woff')format("woff");}.ff6{font-family:ff6;line-height:1.181818;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_1ee55f03f50f143a6e616365.woff')format("woff");}.ff7{font-family:ff7;line-height:1.181818;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_4ae865e519f20b58ee271ea4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.181818;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_6a322a1503cf5d6bd6433351.woff')format("woff");}.ff9{font-family:ff9;line-height:1.181818;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_fb620d19d3393f0910553b3c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.181818;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_05805c3bfae8b2b8a5580afe.woff')format("woff");}.ffb{font-family:ffb;line-height:1.181818;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_70750763d1f36b9e959dd945.woff')format("woff");}.ffc{font-family:ffc;line-height:1.181818;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_9977f4abd243c9efbbabc051.woff')format("woff");}.ffd{font-family:ffd;line-height:1.181818;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_b1e329a3e39946d328dfd344.woff')format("woff");}.ffe{font-family:ffe;line-height:1.181818;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_a3eae50c2834e93c57746efa.woff')format("woff");}.fff{font-family:fff;line-height:1.181818;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_798bfae4a9ee7c723031c03a.woff')format("woff");}.ff10{font-family:ff10;line-height:1.181818;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_9a0f9645b0de4b3ea749eb51.woff')format("woff");}.ff11{font-family:ff11;line-height:1.181818;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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls0{letter-spacing:-3.817230px;}
.ls21{letter-spacing:-2.322000px;}
.ls1e{letter-spacing:-2.214000px;}
.ls8{letter-spacing:-1.620000px;}
.ls1c{letter-spacing:-1.200000px;}
.ls25{letter-spacing:-1.080000px;}
.ls32{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.918000px;}
.ls23{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.780000px;}
.ls1f{letter-spacing:-0.702000px;}
.ls2a{letter-spacing:-0.697056px;}
.ls29{letter-spacing:-0.690744px;}
.ls2b{letter-spacing:-0.688680px;}
.ls15{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.576000px;}
.ls20{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.139920px;}
.ls30{letter-spacing:-0.104940px;}
.ls37{letter-spacing:-0.068700px;}
.ls1b{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000420px;}
.ls14{letter-spacing:0.001440px;}
.ls7{letter-spacing:0.003300px;}
.ls18{letter-spacing:0.016320px;}
.ls6{letter-spacing:0.016680px;}
.ls36{letter-spacing:0.068700px;}
.ls35{letter-spacing:0.137400px;}
.ls38{letter-spacing:0.274800px;}
.lsa{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.420000px;}
.ls28{letter-spacing:0.441000px;}
.lsb{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.594660px;}
.ls4{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.714000px;}
.ls1{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.840000px;}
.lse{letter-spacing:0.882000px;}
.ls31{letter-spacing:0.966000px;}
.ls19{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.050000px;}
.ls13{letter-spacing:416.932200px;}
.ls26{letter-spacing:417.472200px;}
.ls1a{letter-spacing:417.697200px;}
.ls10{letter-spacing:418.147200px;}
.ls16{letter-spacing:418.417200px;}
.ls5{letter-spacing:419.452200px;}
.ls22{letter-spacing:421.027200px;}
.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;}
}
.ws0{word-spacing:-37.632000px;}
.ws10{word-spacing:-25.074000px;}
.ws57{word-spacing:-19.579500px;}
.ws54{word-spacing:-19.442100px;}
.ws55{word-spacing:-19.373400px;}
.ws56{word-spacing:-19.236000px;}
.ws51{word-spacing:-17.520000px;}
.ws14{word-spacing:-17.460000px;}
.ws4f{word-spacing:-17.400000px;}
.ws53{word-spacing:-17.220000px;}
.ws3f{word-spacing:-16.800000px;}
.ws33{word-spacing:-16.080000px;}
.ws17{word-spacing:-15.660000px;}
.ws7{word-spacing:-15.240000px;}
.ws21{word-spacing:-15.174000px;}
.ws2e{word-spacing:-14.094000px;}
.ws34{word-spacing:-13.986000px;}
.ws18{word-spacing:-13.923000px;}
.wsb{word-spacing:-12.852000px;}
.ws15{word-spacing:-12.810000px;}
.wsa{word-spacing:-12.684000px;}
.ws9{word-spacing:-12.516000px;}
.ws40{word-spacing:-12.306000px;}
.ws4b{word-spacing:-11.424000px;}
.ws41{word-spacing:-11.382000px;}
.ws3d{word-spacing:-10.424040px;}
.ws12{word-spacing:-9.829380px;}
.ws44{word-spacing:-9.724440px;}
.ws3e{word-spacing:-9.689460px;}
.ws38{word-spacing:-9.235992px;}
.ws36{word-spacing:-9.152358px;}
.ws3b{word-spacing:-9.125010px;}
.wsf{word-spacing:-1.050000px;}
.ws42{word-spacing:-1.008000px;}
.ws49{word-spacing:-0.966000px;}
.ws52{word-spacing:-0.900000px;}
.ws2{word-spacing:-0.780000px;}
.wse{word-spacing:-0.660000px;}
.ws5{word-spacing:-0.600000px;}
.ws11{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.480000px;}
.ws8{word-spacing:-0.420000px;}
.ws16{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.060000px;}
.ws1c{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws26{word-spacing:0.060000px;}
.wsc{word-spacing:0.360000px;}
.ws3{word-spacing:0.576000px;}
.ws13{word-spacing:0.600000px;}
.ws1b{word-spacing:0.648000px;}
.ws32{word-spacing:0.864000px;}
.ws4c{word-spacing:0.960000px;}
.ws1a{word-spacing:2.160000px;}
.ws1{word-spacing:3.817230px;}
.ws6{word-spacing:43.020000px;}
.ws3a{word-spacing:44.779003px;}
.ws35{word-spacing:44.911475px;}
.ws39{word-spacing:44.912075px;}
.ws37{word-spacing:45.314797px;}
.ws24{word-spacing:145.508400px;}
.ws22{word-spacing:147.660600px;}
.ws1e{word-spacing:148.213800px;}
.ws1d{word-spacing:156.350400px;}
.ws25{word-spacing:193.608000px;}
.ws23{word-spacing:199.898400px;}
.ws20{word-spacing:207.929400px;}
.ws30{word-spacing:209.702400px;}
.ws31{word-spacing:212.893200px;}
.ws47{word-spacing:222.156279px;}
.ws46{word-spacing:223.026190px;}
.ws45{word-spacing:224.558899px;}
.ws2f{word-spacing:229.885200px;}
.ws48{word-spacing:230.042591px;}
.ws1f{word-spacing:232.802400px;}
.ws2d{word-spacing:241.237200px;}
.ws28{word-spacing:250.078200px;}
.ws2c{word-spacing:252.054600px;}
.ws2a{word-spacing:252.289800px;}
.ws2b{word-spacing:253.267800px;}
.ws29{word-spacing:255.716400px;}
.ws27{word-spacing:317.792400px;}
.ws19{word-spacing:363.847200px;}
.ws3c{word-spacing:383.947200px;}
.ws50{word-spacing:385.207200px;}
.ws4d{word-spacing:386.422200px;}
.ws4a{word-spacing:387.727200px;}
.ws43{word-spacing:394.027200px;}
._a{margin-left:-54.829200px;}
._7{margin-left:-7.670400px;}
._9{margin-left:-5.855188px;}
._2{margin-left:-4.702827px;}
._8{margin-left:-3.417600px;}
._4{margin-left:-2.352000px;}
._6{margin-left:-1.104000px;}
._5{width:1.900800px;}
._3{width:3.595831px;}
._1{width:4.679924px;}
._0{width:6.603808px;}
._2f{width:15.178514px;}
._2b{width:23.069400px;}
._32{width:24.411600px;}
._2d{width:25.787400px;}
._2c{width:31.716000px;}
._d{width:43.134000px;}
._c{width:44.436000px;}
._e{width:45.864000px;}
._b{width:50.358000px;}
._27{width:108.385200px;}
._14{width:162.266400px;}
._12{width:167.724600px;}
._f{width:172.825200px;}
._28{width:202.456800px;}
._11{width:218.392800px;}
._26{width:226.854597px;}
._24{width:241.347600px;}
._23{width:244.202400px;}
._13{width:245.792400px;}
._1e{width:249.520200px;}
._10{width:252.006600px;}
._20{width:257.553000px;}
._25{width:259.598400px;}
._21{width:264.308400px;}
._1a{width:270.212400px;}
._1c{width:272.490600px;}
._18{width:291.303600px;}
._30{width:310.901506px;}
._2e{width:312.434215px;}
._31{width:317.917907px;}
._16{width:319.740000px;}
._29{width:343.230694px;}
._2a{width:348.284030px;}
._22{width:401.979000px;}
._1f{width:414.410400px;}
._15{width:585.441000px;}
._1d{width:595.461600px;}
._1b{width:606.408600px;}
._19{width:654.357000px;}
._17{width:692.765400px;}
.fc6{color:transparent;}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(100,240,255);}
.fc3{color:rgb(73,111,170);}
.fc2{color:rgb(81,82,84);}
.fc1{color:rgb(126,243,255);}
.fc0{color:rgb(7,26,82);}
.fs10{font-size:34.060200px;}
.fs12{font-size:34.204200px;}
.fse{font-size:34.434000px;}
.fsa{font-size:34.537200px;}
.fsc{font-size:34.852800px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fsf{font-size:46.192200px;}
.fsb{font-size:46.330200px;}
.fsd{font-size:46.753800px;}
.fs9{font-size:48.000000px;}
.fs11{font-size:53.167200px;}
.fs13{font-size:53.391600px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs15{font-size:68.700000px;}
.fs0{font-size:76.344600px;}
.fs4{font-size:126.000000px;}
.fs14{font-size:156.000000px;}
.fs2{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y197{bottom:8.108944px;}
.y173{bottom:8.321970px;}
.y18a{bottom:8.325715px;}
.y181{bottom:8.330036px;}
.y121{bottom:11.128950px;}
.y109{bottom:11.161350px;}
.y117{bottom:11.161500px;}
.y114{bottom:11.263650px;}
.y176{bottom:19.314450px;}
.y18d{bottom:19.314750px;}
.y16a{bottom:19.314900px;}
.y184{bottom:19.604550px;}
.y11f{bottom:30.227847px;}
.y107{bottom:30.322550px;}
.y111{bottom:30.603316px;}
.y177{bottom:34.062517px;}
.y18e{bottom:35.723251px;}
.y16b{bottom:37.801074px;}
.y101{bottom:41.486700px;}
.y119{bottom:41.573850px;}
.y10b{bottom:42.078600px;}
.y17{bottom:43.334550px;}
.y178{bottom:48.810583px;}
.y185{bottom:49.216836px;}
.y18f{bottom:52.131753px;}
.y16c{bottom:56.287247px;}
.y179{bottom:63.558650px;}
.y16{bottom:64.334700px;}
.y10c{bottom:64.820052px;}
.y11a{bottom:66.977534px;}
.y102{bottom:67.182377px;}
.y190{bottom:68.540254px;}
.y16d{bottom:74.773421px;}
.y17a{bottom:78.306716px;}
.y186{bottom:78.829122px;}
.y191{bottom:84.948755px;}
.y10d{bottom:87.770621px;}
.y11b{bottom:92.381217px;}
.y103{bottom:92.662196px;}
.y17b{bottom:93.259144px;}
.y16e{bottom:93.259594px;}
.y168{bottom:99.921450px;}
.y192{bottom:101.357257px;}
.y1b8{bottom:106.299150px;}
.y17c{bottom:108.007211px;}
.y187{bottom:108.441408px;}
.y10e{bottom:110.721190px;}
.y16f{bottom:111.532892px;}
.y167{bottom:114.921450px;}
.y193{bottom:117.765758px;}
.y11c{bottom:117.784900px;}
.y104{bottom:118.142015px;}
.y1b7{bottom:121.299150px;}
.y17d{bottom:122.755277px;}
.y151{bottom:127.558950px;}
.y43{bottom:127.559100px;}
.yff{bottom:127.559250px;}
.y170{bottom:130.019065px;}
.y1ca{bottom:133.038000px;}
.y10f{bottom:133.462642px;}
.yf0{bottom:133.599000px;}
.y194{bottom:133.961383px;}
.y1b6{bottom:136.299150px;}
.y17e{bottom:137.503344px;}
.y188{bottom:138.053695px;}
.y69{bottom:139.149000px;}
.y169{bottom:139.647000px;}
.y18c{bottom:141.307500px;}
.y150{bottom:142.558950px;}
.y42{bottom:142.559100px;}
.yfe{bottom:142.559250px;}
.y11d{bottom:143.188584px;}
.y105{bottom:143.621835px;}
.y171{bottom:148.505239px;}
.y195{bottom:150.369885px;}
.y1b5{bottom:151.299150px;}
.y17f{bottom:152.251411px;}
.y1c9{bottom:154.038000px;}
.yef{bottom:154.599000px;}
.y110{bottom:156.413210px;}
.y14f{bottom:157.558950px;}
.y41{bottom:157.559100px;}
.y68{bottom:160.149000px;}
.yca{bottom:161.672700px;}
.y196{bottom:166.778386px;}
.y172{bottom:166.991412px;}
.y180{bottom:166.999477px;}
.y189{bottom:167.665981px;}
.y11e{bottom:168.592268px;}
.y106{bottom:169.317511px;}
.y14e{bottom:172.558950px;}
.y40{bottom:172.559100px;}
.y113{bottom:174.054718px;}
.y1c8{bottom:175.038000px;}
.yee{bottom:175.599000px;}
.yc9{bottom:179.672700px;}
.y67{bottom:181.149000px;}
.y182{bottom:184.631550px;}
.y174{bottom:184.631850px;}
.y18b{bottom:185.618700px;}
.y120{bottom:186.239250px;}
.y108{bottom:186.794850px;}
.y116{bottom:186.795000px;}
.y14d{bottom:187.558950px;}
.y3f{bottom:187.559100px;}
.y112{bottom:188.291250px;}
.yc8{bottom:197.672700px;}
.y14c{bottom:202.558950px;}
.y3e{bottom:202.559100px;}
.y1c7{bottom:213.045900px;}
.yed{bottom:213.606750px;}
.y14b{bottom:217.558950px;}
.y3d{bottom:217.559100px;}
.y66{bottom:219.156900px;}
.y1b4{bottom:227.932500px;}
.yc7{bottom:232.010550px;}
.y1c6{bottom:234.045900px;}
.yec{bottom:234.606750px;}
.y65{bottom:240.156900px;}
.y1b3{bottom:248.932500px;}
.yc6{bottom:250.010550px;}
.ya9{bottom:252.924750px;}
.y1c5{bottom:255.045900px;}
.yeb{bottom:255.606750px;}
.y15{bottom:256.875900px;}
.y64{bottom:261.156900px;}
.yfd{bottom:263.027850px;}
.y1b2{bottom:269.932500px;}
.ya8{bottom:273.924750px;}
.yea{bottom:276.606750px;}
.y14{bottom:277.875900px;}
.y14a{bottom:279.327000px;}
.y63{bottom:282.156900px;}
.yfc{bottom:284.027850px;}
.yc5{bottom:284.348550px;}
.y1b1{bottom:290.932500px;}
.ya7{bottom:294.924750px;}
.y3c{bottom:296.779650px;}
.ye9{bottom:297.606750px;}
.y13{bottom:298.875900px;}
.y149{bottom:300.327000px;}
.yc4{bottom:302.348550px;}
.y62{bottom:303.156900px;}
.yfb{bottom:305.027850px;}
.y1b0{bottom:311.932500px;}
.ya6{bottom:315.924750px;}
.y3b{bottom:317.779650px;}
.y1c4{bottom:318.565650px;}
.ye8{bottom:318.606750px;}
.y12{bottom:319.875750px;}
.y88{bottom:319.916700px;}
.yc3{bottom:320.348550px;}
.y148{bottom:321.327000px;}
.y61{bottom:324.156900px;}
.yfa{bottom:326.027850px;}
.y1af{bottom:332.932500px;}
.ya5{bottom:336.924750px;}
.yc2{bottom:338.348550px;}
.y3a{bottom:338.779650px;}
.ye7{bottom:339.606750px;}
.y87{bottom:340.916700px;}
.y147{bottom:342.327000px;}
.y60{bottom:345.156900px;}
.yf9{bottom:347.027850px;}
.y11{bottom:357.883650px;}
.ya4{bottom:357.924750px;}
.y39{bottom:359.779650px;}
.y183{bottom:360.316500px;}
.ye6{bottom:360.606750px;}
.y86{bottom:361.916700px;}
.y175{bottom:362.218500px;}
.y146{bottom:363.327000px;}
.yf8{bottom:368.027850px;}
.y1ae{bottom:370.940400px;}
.yc1{bottom:372.686550px;}
.y10{bottom:378.883650px;}
.ya3{bottom:378.924750px;}
.y38{bottom:380.779650px;}
.ye5{bottom:381.606750px;}
.y85{bottom:382.916700px;}
.y5f{bottom:383.164650px;}
.y145{bottom:384.327000px;}
.yf7{bottom:389.027850px;}
.yc0{bottom:390.686550px;}
.y1ad{bottom:391.940400px;}
.yf{bottom:399.883650px;}
.ya2{bottom:399.924750px;}
.y84{bottom:403.916850px;}
.y5e{bottom:404.164650px;}
.y144{bottom:405.327000px;}
.ybf{bottom:408.686550px;}
.yf6{bottom:410.027850px;}
.y1ac{bottom:412.940400px;}
.y37{bottom:418.787550px;}
.ye{bottom:420.883650px;}
.ya1{bottom:420.924750px;}
.ye0{bottom:424.097250px;}
.y83{bottom:424.916850px;}
.y5d{bottom:425.164650px;}
.y143{bottom:426.327000px;}
.ybe{bottom:426.686550px;}
.yf5{bottom:431.027850px;}
.y1ab{bottom:433.940400px;}
.y36{bottom:439.787550px;}
.yd{bottom:441.883650px;}
.ydf{bottom:445.097250px;}
.ye4{bottom:445.126500px;}
.y82{bottom:445.916850px;}
.y5c{bottom:446.164650px;}
.y142{bottom:447.327000px;}
.y1c3{bottom:449.908950px;}
.yf4{bottom:452.027850px;}
.y1aa{bottom:454.940400px;}
.ya0{bottom:458.932500px;}
.y35{bottom:460.787550px;}
.yc{bottom:462.883650px;}
.yde{bottom:466.097250px;}
.y5b{bottom:467.164650px;}
.y141{bottom:468.327000px;}
.y1c2{bottom:470.908950px;}
.y1a9{bottom:475.940400px;}
.y9f{bottom:479.932500px;}
.y34{bottom:481.787550px;}
.ybd{bottom:482.024550px;}
.ye3{bottom:482.926500px;}
.yb{bottom:483.883650px;}
.y81{bottom:483.924750px;}
.ydd{bottom:487.097250px;}
.y140{bottom:489.327000px;}
.y1c1{bottom:491.908950px;}
.y118{bottom:496.581000px;}
.y1a8{bottom:496.940400px;}
.y115{bottom:497.146500px;}
.ybc{bottom:498.524550px;}
.y9e{bottom:500.932500px;}
.y33{bottom:502.787550px;}
.y80{bottom:504.924750px;}
.ydc{bottom:508.097250px;}
.y13f{bottom:510.327000px;}
.ybb{bottom:515.024550px;}
.y9d{bottom:521.932500px;}
.y32{bottom:523.787550px;}
.y7f{bottom:525.924750px;}
.ydb{bottom:529.097250px;}
.y1c0{bottom:529.916850px;}
.y5a{bottom:530.684400px;}
.y13e{bottom:531.327000px;}
.y1a7{bottom:534.948300px;}
.y9c{bottom:542.932500px;}
.y31{bottom:544.787550px;}
.y7e{bottom:546.924750px;}
.yda{bottom:550.097250px;}
.y1bf{bottom:550.916850px;}
.y13d{bottom:552.327000px;}
.y1a6{bottom:555.948300px;}
.y9b{bottom:563.932500px;}
.y30{bottom:565.787550px;}
.y7d{bottom:567.924750px;}
.yd9{bottom:571.097250px;}
.y13c{bottom:573.327000px;}
.yba{bottom:576.740400px;}
.y1a5{bottom:576.948300px;}
.y1ec{bottom:580.066800px;}
.y166{bottom:586.475700px;}
.y2f{bottom:586.787550px;}
.y7c{bottom:588.924750px;}
.ya{bottom:591.557700px;}
.yd8{bottom:592.097250px;}
.y13b{bottom:594.327000px;}
.yb9{bottom:597.740400px;}
.y1a4{bottom:597.948300px;}
.y1eb{bottom:604.970550px;}
.y7b{bottom:609.924750px;}
.yd7{bottom:613.097250px;}
.y1be{bottom:614.436450px;}
.y13a{bottom:615.327000px;}
.y9{bottom:617.057700px;}
.y1a3{bottom:618.948300px;}
.y2e{bottom:624.795450px;}
.y9a{bottom:627.452250px;}
.y7a{bottom:630.924750px;}
.ye2{bottom:631.277700px;}
.y1df{bottom:631.649850px;}
.y139{bottom:636.327000px;}
.y1a2{bottom:639.948300px;}
.y165{bottom:641.491500px;}
.y8{bottom:642.557700px;}
.y1ea{bottom:643.099050px;}
.y2d{bottom:645.795450px;}
.yd6{bottom:651.105150px;}
.y1de{bottom:652.649850px;}
.yb8{bottom:652.756200px;}
.y138{bottom:657.327000px;}
.y59{bottom:662.027700px;}
.y164{bottom:662.491500px;}
.y2c{bottom:666.795450px;}
.y1e9{bottom:668.002800px;}
.yd5{bottom:672.105150px;}
.y1dd{bottom:673.649850px;}
.yb7{bottom:673.756200px;}
.y137{bottom:678.327000px;}
.y58{bottom:683.027700px;}
.y163{bottom:683.491500px;}
.y2b{bottom:687.795450px;}
.y79{bottom:694.444350px;}
.yb6{bottom:694.756200px;}
.y1a1{bottom:703.467900px;}
.y57{bottom:704.027700px;}
.y162{bottom:704.491500px;}
.y1e8{bottom:706.131300px;}
.y1dc{bottom:711.657750px;}
.yb5{bottom:715.756200px;}
.y10a{bottom:715.827000px;}
.y100{bottom:715.975500px;}
.y136{bottom:716.334750px;}
.yd4{bottom:721.117950px;}
.y56{bottom:725.027700px;}
.y161{bottom:725.491500px;}
.y2a{bottom:725.803350px;}
.y1e7{bottom:731.035050px;}
.y1db{bottom:732.657750px;}
.yb4{bottom:736.756200px;}
.y135{bottom:737.334750px;}
.y1bd{bottom:745.779750px;}
.y55{bottom:746.027700px;}
.y29{bottom:746.803350px;}
.y1da{bottom:753.657750px;}
.yd3{bottom:755.455950px;}
.yb3{bottom:757.756200px;}
.y134{bottom:758.334750px;}
.y99{bottom:758.795550px;}
.y7{bottom:760.937700px;}
.y160{bottom:763.499400px;}
.y1bc{bottom:766.779750px;}
.y28{bottom:767.803350px;}
.y1e6{bottom:769.163400px;}
.yb2{bottom:778.756200px;}
.y133{bottom:779.334750px;}
.y98{bottom:779.795400px;}
.y54{bottom:784.035600px;}
.y15f{bottom:784.499400px;}
.y1bb{bottom:787.779750px;}
.y27{bottom:788.803200px;}
.yd2{bottom:789.793950px;}
.y1d9{bottom:791.665650px;}
.y1e5{bottom:794.067300px;}
.yb1{bottom:799.756200px;}
.y132{bottom:800.334900px;}
.y97{bottom:800.795550px;}
.y53{bottom:805.035600px;}
.y15e{bottom:805.499400px;}
.y1ba{bottom:808.779750px;}
.y26{bottom:809.803200px;}
.y1d8{bottom:812.665650px;}
.y6{bottom:816.075300px;}
.y1a0{bottom:817.803450px;}
.yb0{bottom:820.756200px;}
.y131{bottom:821.334900px;}
.y96{bottom:821.795550px;}
.yd1{bottom:824.131950px;}
.y78{bottom:825.787650px;}
.y52{bottom:826.035600px;}
.y15d{bottom:826.499400px;}
.y1b9{bottom:829.779750px;}
.y25{bottom:830.803200px;}
.y1e4{bottom:832.195800px;}
.y1d7{bottom:833.665650px;}
.y19f{bottom:838.803450px;}
.y130{bottom:842.334900px;}
.y95{bottom:842.795550px;}
.y77{bottom:846.787650px;}
.y51{bottom:847.035600px;}
.y15c{bottom:847.499400px;}
.y24{bottom:851.803200px;}
.y1e3{bottom:857.099550px;}
.yd0{bottom:858.469800px;}
.yaf{bottom:858.763950px;}
.y19e{bottom:859.803450px;}
.y12f{bottom:863.334900px;}
.y94{bottom:863.795550px;}
.y76{bottom:867.787650px;}
.y50{bottom:868.035600px;}
.y15b{bottom:868.499400px;}
.y5{bottom:871.212750px;}
.y1d6{bottom:871.673550px;}
.y23{bottom:872.803200px;}
.y19d{bottom:880.803450px;}
.y12e{bottom:884.334900px;}
.y93{bottom:884.795550px;}
.y75{bottom:888.787650px;}
.y4f{bottom:889.035600px;}
.y15a{bottom:889.499400px;}
.y1d5{bottom:892.673550px;}
.ycf{bottom:892.807800px;}
.y22{bottom:893.803200px;}
.y1e2{bottom:895.228050px;}
.yae{bottom:896.772000px;}
.y19c{bottom:901.803450px;}
.y12d{bottom:905.334900px;}
.y92{bottom:905.795550px;}
.y74{bottom:909.787650px;}
.y159{bottom:910.499400px;}
.y1d4{bottom:913.673550px;}
.y21{bottom:914.803200px;}
.y1e1{bottom:920.131650px;}
.y19b{bottom:922.803450px;}
.y12c{bottom:926.334900px;}
.y4{bottom:926.350500px;}
.y91{bottom:926.795550px;}
.y4e{bottom:927.043500px;}
.yce{bottom:927.145800px;}
.y73{bottom:930.787650px;}
.y158{bottom:931.499400px;}
.yad{bottom:934.779750px;}
.y20{bottom:935.803200px;}
.y19a{bottom:943.803450px;}
.y12b{bottom:947.334900px;}
.y90{bottom:947.795550px;}
.y4d{bottom:948.043500px;}
.y1d3{bottom:951.681300px;}
.y72{bottom:951.787650px;}
.yf3{bottom:952.035600px;}
.y157{bottom:952.499400px;}
.yac{bottom:955.779750px;}
.ycd{bottom:960.733800px;}
.y199{bottom:964.803450px;}
.y12a{bottom:968.334900px;}
.y8f{bottom:968.795550px;}
.y4c{bottom:969.043500px;}
.y1d2{bottom:972.681300px;}
.yf2{bottom:973.035600px;}
.y156{bottom:973.499400px;}
.y1f{bottom:973.811250px;}
.y3{bottom:981.487950px;}
.y198{bottom:985.803450px;}
.y129{bottom:989.334900px;}
.y71{bottom:989.795550px;}
.y1d1{bottom:993.681300px;}
.yab{bottom:993.787650px;}
.yf1{bottom:994.035600px;}
.y155{bottom:994.499400px;}
.y1e{bottom:994.811250px;}
.ycc{bottom:995.071800px;}
.y8e{bottom:1006.803450px;}
.y4b{bottom:1007.051400px;}
.y128{bottom:1010.334900px;}
.y70{bottom:1010.795550px;}
.yaa{bottom:1014.787650px;}
.y154{bottom:1015.499400px;}
.y1d{bottom:1015.811250px;}
.y8d{bottom:1027.803450px;}
.y4a{bottom:1028.051400px;}
.y1d0{bottom:1031.689200px;}
.y6f{bottom:1031.795550px;}
.y153{bottom:1036.499400px;}
.y1c{bottom:1036.811250px;}
.y127{bottom:1048.342650px;}
.y8c{bottom:1048.803450px;}
.y49{bottom:1049.051400px;}
.y1e0{bottom:1051.334700px;}
.y1cf{bottom:1052.689200px;}
.y6e{bottom:1052.795550px;}
.ycb{bottom:1056.787650px;}
.y1b{bottom:1057.811250px;}
.y126{bottom:1069.342650px;}
.y8b{bottom:1069.803450px;}
.y48{bottom:1070.051400px;}
.y1ce{bottom:1073.689200px;}
.y6d{bottom:1073.795550px;}
.y1a{bottom:1078.811250px;}
.y125{bottom:1090.342650px;}
.y8a{bottom:1090.803450px;}
.y47{bottom:1091.051400px;}
.y6c{bottom:1094.795550px;}
.y19{bottom:1099.811250px;}
.y152{bottom:1100.019000px;}
.y124{bottom:1111.342650px;}
.y1cd{bottom:1111.697100px;}
.y89{bottom:1111.803450px;}
.y46{bottom:1112.051400px;}
.y2{bottom:1122.845100px;}
.y123{bottom:1132.342650px;}
.y1cc{bottom:1132.697100px;}
.y6b{bottom:1132.803450px;}
.y45{bottom:1133.051400px;}
.y18{bottom:1137.819000px;}
.y1{bottom:1148.345100px;}
.y122{bottom:1153.342650px;}
.y1cb{bottom:1153.697100px;}
.y6a{bottom:1153.803450px;}
.ye1{bottom:1154.033550px;}
.y44{bottom:1154.051400px;}
.h15{height:32.512009px;}
.h18{height:32.649464px;}
.h12{height:32.868818px;}
.hc{height:32.967327px;}
.hf{height:33.268582px;}
.h7{height:40.090909px;}
.h5{height:42.954545px;}
.h13{height:44.092555px;}
.hd{height:44.224282px;}
.h10{height:44.628627px;}
.ha{height:45.818182px;}
.h16{height:50.750509px;}
.h19{height:50.964709px;}
.h9{height:51.545455px;}
.h3{height:57.272727px;}
.h8{height:60.136364px;}
.h1c{height:65.577273px;}
.h2{height:72.874391px;}
.h6{height:120.272727px;}
.h1b{height:148.909091px;}
.h4{height:183.272727px;}
.h11{height:204.505500px;}
.h1a{height:204.570000px;}
.h14{height:204.777000px;}
.hb{height:205.327500px;}
.h17{height:205.639500px;}
.he{height:206.992500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:346.210500px;}
.w4{width:352.318500px;}
.w2{width:352.320000px;}
.w3{width:356.392500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:6.191578px;}
.x21{left:7.415351px;}
.x13{left:10.586437px;}
.x20{left:11.740997px;}
.x12{left:15.913800px;}
.x16{left:42.191400px;}
.x19{left:53.444250px;}
.x1c{left:54.506550px;}
.x23{left:61.788257px;}
.x3{left:62.999850px;}
.x1d{left:65.654100px;}
.x22{left:66.857850px;}
.x15{left:72.183533px;}
.x1e{left:95.304000px;}
.x1{left:101.065200px;}
.x1b{left:103.264500px;}
.x24{left:119.065200px;}
.x17{left:158.379150px;}
.x1a{left:160.351500px;}
.x5{left:162.778500px;}
.x25{left:167.750250px;}
.x6{left:173.551200px;}
.x4{left:175.130400px;}
.x8{left:184.181100px;}
.x7{left:193.960650px;}
.x11{left:316.387200px;}
.x9{left:383.385900px;}
.xe{left:386.093100px;}
.xf{left:387.512250px;}
.xa{left:450.000000px;}
.x1f{left:456.084000px;}
.x2{left:460.560450px;}
.x18{left:469.354500px;}
.x10{left:508.787550px;}
.xb{left:515.905500px;}
.xc{left:581.811000px;}
.xd{left:676.771650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls0{letter-spacing:-3.393093pt;}
.ls21{letter-spacing:-2.064000pt;}
.ls1e{letter-spacing:-1.968000pt;}
.ls8{letter-spacing:-1.440000pt;}
.ls1c{letter-spacing:-1.066667pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls32{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.816000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls1f{letter-spacing:-0.624000pt;}
.ls2a{letter-spacing:-0.619605pt;}
.ls29{letter-spacing:-0.613995pt;}
.ls2b{letter-spacing:-0.612160pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.124373pt;}
.ls30{letter-spacing:-0.093280pt;}
.ls37{letter-spacing:-0.061067pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000373pt;}
.ls14{letter-spacing:0.001280pt;}
.ls7{letter-spacing:0.002933pt;}
.ls18{letter-spacing:0.014507pt;}
.ls6{letter-spacing:0.014827pt;}
.ls36{letter-spacing:0.061067pt;}
.ls35{letter-spacing:0.122133pt;}
.ls38{letter-spacing:0.244267pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.373333pt;}
.ls28{letter-spacing:0.392000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.528587pt;}
.ls4{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.634667pt;}
.ls1{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.784000pt;}
.ls31{letter-spacing:0.858667pt;}
.ls19{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.933333pt;}
.ls13{letter-spacing:370.606400pt;}
.ls26{letter-spacing:371.086400pt;}
.ls1a{letter-spacing:371.286400pt;}
.ls10{letter-spacing:371.686400pt;}
.ls16{letter-spacing:371.926400pt;}
.ls5{letter-spacing:372.846400pt;}
.ls22{letter-spacing:374.246400pt;}
.ws0{word-spacing:-33.450667pt;}
.ws10{word-spacing:-22.288000pt;}
.ws57{word-spacing:-17.404000pt;}
.ws54{word-spacing:-17.281867pt;}
.ws55{word-spacing:-17.220800pt;}
.ws56{word-spacing:-17.098667pt;}
.ws51{word-spacing:-15.573333pt;}
.ws14{word-spacing:-15.520000pt;}
.ws4f{word-spacing:-15.466667pt;}
.ws53{word-spacing:-15.306667pt;}
.ws3f{word-spacing:-14.933333pt;}
.ws33{word-spacing:-14.293333pt;}
.ws17{word-spacing:-13.920000pt;}
.ws7{word-spacing:-13.546667pt;}
.ws21{word-spacing:-13.488000pt;}
.ws2e{word-spacing:-12.528000pt;}
.ws34{word-spacing:-12.432000pt;}
.ws18{word-spacing:-12.376000pt;}
.wsb{word-spacing:-11.424000pt;}
.ws15{word-spacing:-11.386667pt;}
.wsa{word-spacing:-11.274667pt;}
.ws9{word-spacing:-11.125333pt;}
.ws40{word-spacing:-10.938667pt;}
.ws4b{word-spacing:-10.154667pt;}
.ws41{word-spacing:-10.117333pt;}
.ws3d{word-spacing:-9.265813pt;}
.ws12{word-spacing:-8.737227pt;}
.ws44{word-spacing:-8.643947pt;}
.ws3e{word-spacing:-8.612853pt;}
.ws38{word-spacing:-8.209771pt;}
.ws36{word-spacing:-8.135429pt;}
.ws3b{word-spacing:-8.111120pt;}
.wsf{word-spacing:-0.933333pt;}
.ws42{word-spacing:-0.896000pt;}
.ws49{word-spacing:-0.858667pt;}
.ws52{word-spacing:-0.800000pt;}
.ws2{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.586667pt;}
.ws5{word-spacing:-0.533333pt;}
.ws11{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws8{word-spacing:-0.373333pt;}
.ws16{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.053333pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053333pt;}
.wsc{word-spacing:0.320000pt;}
.ws3{word-spacing:0.512000pt;}
.ws13{word-spacing:0.533333pt;}
.ws1b{word-spacing:0.576000pt;}
.ws32{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws1a{word-spacing:1.920000pt;}
.ws1{word-spacing:3.393093pt;}
.ws6{word-spacing:38.240000pt;}
.ws3a{word-spacing:39.803558pt;}
.ws35{word-spacing:39.921311pt;}
.ws39{word-spacing:39.921844pt;}
.ws37{word-spacing:40.279820pt;}
.ws24{word-spacing:129.340800pt;}
.ws22{word-spacing:131.253867pt;}
.ws1e{word-spacing:131.745600pt;}
.ws1d{word-spacing:138.978133pt;}
.ws25{word-spacing:172.096000pt;}
.ws23{word-spacing:177.687467pt;}
.ws20{word-spacing:184.826133pt;}
.ws30{word-spacing:186.402133pt;}
.ws31{word-spacing:189.238400pt;}
.ws47{word-spacing:197.472248pt;}
.ws46{word-spacing:198.245502pt;}
.ws45{word-spacing:199.607910pt;}
.ws2f{word-spacing:204.342400pt;}
.ws48{word-spacing:204.482303pt;}
.ws1f{word-spacing:206.935467pt;}
.ws2d{word-spacing:214.433067pt;}
.ws28{word-spacing:222.291733pt;}
.ws2c{word-spacing:224.048533pt;}
.ws2a{word-spacing:224.257600pt;}
.ws2b{word-spacing:225.126933pt;}
.ws29{word-spacing:227.303467pt;}
.ws27{word-spacing:282.482133pt;}
.ws19{word-spacing:323.419733pt;}
.ws3c{word-spacing:341.286400pt;}
.ws50{word-spacing:342.406400pt;}
.ws4d{word-spacing:343.486400pt;}
.ws4a{word-spacing:344.646400pt;}
.ws43{word-spacing:350.246400pt;}
._a{margin-left:-48.737067pt;}
._7{margin-left:-6.818133pt;}
._9{margin-left:-5.204612pt;}
._2{margin-left:-4.180291pt;}
._8{margin-left:-3.037867pt;}
._4{margin-left:-2.090667pt;}
._6{margin-left:-0.981333pt;}
._5{width:1.689600pt;}
._3{width:3.196294pt;}
._1{width:4.159932pt;}
._0{width:5.870051pt;}
._2f{width:13.492013pt;}
._2b{width:20.506133pt;}
._32{width:21.699200pt;}
._2d{width:22.922133pt;}
._2c{width:28.192000pt;}
._d{width:38.341333pt;}
._c{width:39.498667pt;}
._e{width:40.768000pt;}
._b{width:44.762667pt;}
._27{width:96.342400pt;}
._14{width:144.236800pt;}
._12{width:149.088533pt;}
._f{width:153.622400pt;}
._28{width:179.961600pt;}
._11{width:194.126933pt;}
._26{width:201.648530pt;}
._24{width:214.531200pt;}
._23{width:217.068800pt;}
._13{width:218.482133pt;}
._1e{width:221.795733pt;}
._10{width:224.005867pt;}
._20{width:228.936000pt;}
._25{width:230.754133pt;}
._21{width:234.940800pt;}
._1a{width:240.188800pt;}
._1c{width:242.213867pt;}
._18{width:258.936533pt;}
._30{width:276.356894pt;}
._2e{width:277.719302pt;}
._31{width:282.593695pt;}
._16{width:284.213333pt;}
._29{width:305.093950pt;}
._2a{width:309.585805pt;}
._22{width:357.314667pt;}
._1f{width:368.364800pt;}
._15{width:520.392000pt;}
._1d{width:529.299200pt;}
._1b{width:539.029867pt;}
._19{width:581.650667pt;}
._17{width:615.791467pt;}
.fs10{font-size:30.275733pt;}
.fs12{font-size:30.403733pt;}
.fse{font-size:30.608000pt;}
.fsa{font-size:30.699733pt;}
.fsc{font-size:30.980267pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fsf{font-size:41.059733pt;}
.fsb{font-size:41.182400pt;}
.fsd{font-size:41.558933pt;}
.fs9{font-size:42.666667pt;}
.fs11{font-size:47.259733pt;}
.fs13{font-size:47.459200pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs15{font-size:61.066667pt;}
.fs0{font-size:67.861867pt;}
.fs4{font-size:112.000000pt;}
.fs14{font-size:138.666667pt;}
.fs2{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:7.207950pt;}
.y173{bottom:7.397307pt;}
.y18a{bottom:7.400636pt;}
.y181{bottom:7.404476pt;}
.y121{bottom:9.892400pt;}
.y109{bottom:9.921200pt;}
.y117{bottom:9.921333pt;}
.y114{bottom:10.012133pt;}
.y176{bottom:17.168400pt;}
.y18d{bottom:17.168667pt;}
.y16a{bottom:17.168800pt;}
.y184{bottom:17.426267pt;}
.y11f{bottom:26.869197pt;}
.y107{bottom:26.953378pt;}
.y111{bottom:27.202947pt;}
.y177{bottom:30.277793pt;}
.y18e{bottom:31.754001pt;}
.y16b{bottom:33.600954pt;}
.y101{bottom:36.877067pt;}
.y119{bottom:36.954533pt;}
.y10b{bottom:37.403200pt;}
.y17{bottom:38.519600pt;}
.y178{bottom:43.387185pt;}
.y185{bottom:43.748299pt;}
.y18f{bottom:46.339336pt;}
.y16c{bottom:50.033109pt;}
.y179{bottom:56.496578pt;}
.y16{bottom:57.186400pt;}
.y10c{bottom:57.617824pt;}
.y11a{bottom:59.535585pt;}
.y102{bottom:59.717668pt;}
.y190{bottom:60.924670pt;}
.y16d{bottom:66.465263pt;}
.y17a{bottom:69.605970pt;}
.y186{bottom:70.070331pt;}
.y191{bottom:75.510005pt;}
.y10d{bottom:78.018330pt;}
.y11b{bottom:82.116637pt;}
.y103{bottom:82.366397pt;}
.y17b{bottom:82.897017pt;}
.y16e{bottom:82.897417pt;}
.y168{bottom:88.819067pt;}
.y192{bottom:90.095339pt;}
.y1b8{bottom:94.488133pt;}
.y17c{bottom:96.006410pt;}
.y187{bottom:96.392363pt;}
.y10e{bottom:98.418835pt;}
.y16f{bottom:99.140348pt;}
.y167{bottom:102.152400pt;}
.y193{bottom:104.680674pt;}
.y11c{bottom:104.697689pt;}
.y104{bottom:105.015125pt;}
.y1b7{bottom:107.821467pt;}
.y17d{bottom:109.115802pt;}
.y151{bottom:113.385733pt;}
.y43{bottom:113.385867pt;}
.yff{bottom:113.386000pt;}
.y170{bottom:115.572502pt;}
.y1ca{bottom:118.256000pt;}
.y10f{bottom:118.633459pt;}
.yf0{bottom:118.754667pt;}
.y194{bottom:119.076785pt;}
.y1b6{bottom:121.154800pt;}
.y17e{bottom:122.225195pt;}
.y188{bottom:122.714395pt;}
.y69{bottom:123.688000pt;}
.y169{bottom:124.130667pt;}
.y18c{bottom:125.606667pt;}
.y150{bottom:126.719067pt;}
.y42{bottom:126.719200pt;}
.yfe{bottom:126.719333pt;}
.y11d{bottom:127.278741pt;}
.y105{bottom:127.663853pt;}
.y171{bottom:132.004657pt;}
.y195{bottom:133.662120pt;}
.y1b5{bottom:134.488133pt;}
.y17f{bottom:135.334587pt;}
.y1c9{bottom:136.922667pt;}
.yef{bottom:137.421333pt;}
.y110{bottom:139.033965pt;}
.y14f{bottom:140.052400pt;}
.y41{bottom:140.052533pt;}
.y68{bottom:142.354667pt;}
.yca{bottom:143.709067pt;}
.y196{bottom:148.247454pt;}
.y172{bottom:148.436811pt;}
.y180{bottom:148.443980pt;}
.y189{bottom:149.036427pt;}
.y11e{bottom:149.859793pt;}
.y106{bottom:150.504455pt;}
.y14e{bottom:153.385733pt;}
.y40{bottom:153.385867pt;}
.y113{bottom:154.715305pt;}
.y1c8{bottom:155.589333pt;}
.yee{bottom:156.088000pt;}
.yc9{bottom:159.709067pt;}
.y67{bottom:161.021333pt;}
.y182{bottom:164.116933pt;}
.y174{bottom:164.117200pt;}
.y18b{bottom:164.994400pt;}
.y120{bottom:165.546000pt;}
.y108{bottom:166.039867pt;}
.y116{bottom:166.040000pt;}
.y14d{bottom:166.719067pt;}
.y3f{bottom:166.719200pt;}
.y112{bottom:167.370000pt;}
.yc8{bottom:175.709067pt;}
.y14c{bottom:180.052400pt;}
.y3e{bottom:180.052533pt;}
.y1c7{bottom:189.374133pt;}
.yed{bottom:189.872667pt;}
.y14b{bottom:193.385733pt;}
.y3d{bottom:193.385867pt;}
.y66{bottom:194.806133pt;}
.y1b4{bottom:202.606667pt;}
.yc7{bottom:206.231600pt;}
.y1c6{bottom:208.040800pt;}
.yec{bottom:208.539333pt;}
.y65{bottom:213.472800pt;}
.y1b3{bottom:221.273333pt;}
.yc6{bottom:222.231600pt;}
.ya9{bottom:224.822000pt;}
.y1c5{bottom:226.707467pt;}
.yeb{bottom:227.206000pt;}
.y15{bottom:228.334133pt;}
.y64{bottom:232.139467pt;}
.yfd{bottom:233.802533pt;}
.y1b2{bottom:239.940000pt;}
.ya8{bottom:243.488667pt;}
.yea{bottom:245.872667pt;}
.y14{bottom:247.000800pt;}
.y14a{bottom:248.290667pt;}
.y63{bottom:250.806133pt;}
.yfc{bottom:252.469200pt;}
.yc5{bottom:252.754267pt;}
.y1b1{bottom:258.606667pt;}
.ya7{bottom:262.155333pt;}
.y3c{bottom:263.804133pt;}
.ye9{bottom:264.539333pt;}
.y13{bottom:265.667467pt;}
.y149{bottom:266.957333pt;}
.yc4{bottom:268.754267pt;}
.y62{bottom:269.472800pt;}
.yfb{bottom:271.135867pt;}
.y1b0{bottom:277.273333pt;}
.ya6{bottom:280.822000pt;}
.y3b{bottom:282.470800pt;}
.y1c4{bottom:283.169467pt;}
.ye8{bottom:283.206000pt;}
.y12{bottom:284.334000pt;}
.y88{bottom:284.370400pt;}
.yc3{bottom:284.754267pt;}
.y148{bottom:285.624000pt;}
.y61{bottom:288.139467pt;}
.yfa{bottom:289.802533pt;}
.y1af{bottom:295.940000pt;}
.ya5{bottom:299.488667pt;}
.yc2{bottom:300.754267pt;}
.y3a{bottom:301.137467pt;}
.ye7{bottom:301.872667pt;}
.y87{bottom:303.037067pt;}
.y147{bottom:304.290667pt;}
.y60{bottom:306.806133pt;}
.yf9{bottom:308.469200pt;}
.y11{bottom:318.118800pt;}
.ya4{bottom:318.155333pt;}
.y39{bottom:319.804133pt;}
.y183{bottom:320.281333pt;}
.ye6{bottom:320.539333pt;}
.y86{bottom:321.703733pt;}
.y175{bottom:321.972000pt;}
.y146{bottom:322.957333pt;}
.yf8{bottom:327.135867pt;}
.y1ae{bottom:329.724800pt;}
.yc1{bottom:331.276933pt;}
.y10{bottom:336.785467pt;}
.ya3{bottom:336.822000pt;}
.y38{bottom:338.470800pt;}
.ye5{bottom:339.206000pt;}
.y85{bottom:340.370400pt;}
.y5f{bottom:340.590800pt;}
.y145{bottom:341.624000pt;}
.yf7{bottom:345.802533pt;}
.yc0{bottom:347.276933pt;}
.y1ad{bottom:348.391467pt;}
.yf{bottom:355.452133pt;}
.ya2{bottom:355.488667pt;}
.y84{bottom:359.037200pt;}
.y5e{bottom:359.257467pt;}
.y144{bottom:360.290667pt;}
.ybf{bottom:363.276933pt;}
.yf6{bottom:364.469200pt;}
.y1ac{bottom:367.058133pt;}
.y37{bottom:372.255600pt;}
.ye{bottom:374.118800pt;}
.ya1{bottom:374.155333pt;}
.ye0{bottom:376.975333pt;}
.y83{bottom:377.703867pt;}
.y5d{bottom:377.924133pt;}
.y143{bottom:378.957333pt;}
.ybe{bottom:379.276933pt;}
.yf5{bottom:383.135867pt;}
.y1ab{bottom:385.724800pt;}
.y36{bottom:390.922267pt;}
.yd{bottom:392.785467pt;}
.ydf{bottom:395.642000pt;}
.ye4{bottom:395.668000pt;}
.y82{bottom:396.370533pt;}
.y5c{bottom:396.590800pt;}
.y142{bottom:397.624000pt;}
.y1c3{bottom:399.919067pt;}
.yf4{bottom:401.802533pt;}
.y1aa{bottom:404.391467pt;}
.ya0{bottom:407.940000pt;}
.y35{bottom:409.588933pt;}
.yc{bottom:411.452133pt;}
.yde{bottom:414.308667pt;}
.y5b{bottom:415.257467pt;}
.y141{bottom:416.290667pt;}
.y1c2{bottom:418.585733pt;}
.y1a9{bottom:423.058133pt;}
.y9f{bottom:426.606667pt;}
.y34{bottom:428.255600pt;}
.ybd{bottom:428.466267pt;}
.ye3{bottom:429.268000pt;}
.yb{bottom:430.118800pt;}
.y81{bottom:430.155333pt;}
.ydd{bottom:432.975333pt;}
.y140{bottom:434.957333pt;}
.y1c1{bottom:437.252400pt;}
.y118{bottom:441.405333pt;}
.y1a8{bottom:441.724800pt;}
.y115{bottom:441.908000pt;}
.ybc{bottom:443.132933pt;}
.y9e{bottom:445.273333pt;}
.y33{bottom:446.922267pt;}
.y80{bottom:448.822000pt;}
.ydc{bottom:451.642000pt;}
.y13f{bottom:453.624000pt;}
.ybb{bottom:457.799600pt;}
.y9d{bottom:463.940000pt;}
.y32{bottom:465.588933pt;}
.y7f{bottom:467.488667pt;}
.ydb{bottom:470.308667pt;}
.y1c0{bottom:471.037200pt;}
.y5a{bottom:471.719467pt;}
.y13e{bottom:472.290667pt;}
.y1a7{bottom:475.509600pt;}
.y9c{bottom:482.606667pt;}
.y31{bottom:484.255600pt;}
.y7e{bottom:486.155333pt;}
.yda{bottom:488.975333pt;}
.y1bf{bottom:489.703867pt;}
.y13d{bottom:490.957333pt;}
.y1a6{bottom:494.176267pt;}
.y9b{bottom:501.273333pt;}
.y30{bottom:502.922267pt;}
.y7d{bottom:504.822000pt;}
.yd9{bottom:507.642000pt;}
.y13c{bottom:509.624000pt;}
.yba{bottom:512.658133pt;}
.y1a5{bottom:512.842933pt;}
.y1ec{bottom:515.614933pt;}
.y166{bottom:521.311733pt;}
.y2f{bottom:521.588933pt;}
.y7c{bottom:523.488667pt;}
.ya{bottom:525.829067pt;}
.yd8{bottom:526.308667pt;}
.y13b{bottom:528.290667pt;}
.yb9{bottom:531.324800pt;}
.y1a4{bottom:531.509600pt;}
.y1eb{bottom:537.751600pt;}
.y7b{bottom:542.155333pt;}
.yd7{bottom:544.975333pt;}
.y1be{bottom:546.165733pt;}
.y13a{bottom:546.957333pt;}
.y9{bottom:548.495733pt;}
.y1a3{bottom:550.176267pt;}
.y2e{bottom:555.373733pt;}
.y9a{bottom:557.735333pt;}
.y7a{bottom:560.822000pt;}
.ye2{bottom:561.135733pt;}
.y1df{bottom:561.466533pt;}
.y139{bottom:565.624000pt;}
.y1a2{bottom:568.842933pt;}
.y165{bottom:570.214667pt;}
.y8{bottom:571.162400pt;}
.y1ea{bottom:571.643600pt;}
.y2d{bottom:574.040400pt;}
.yd6{bottom:578.760133pt;}
.y1de{bottom:580.133200pt;}
.yb8{bottom:580.227733pt;}
.y138{bottom:584.290667pt;}
.y59{bottom:588.469067pt;}
.y164{bottom:588.881333pt;}
.y2c{bottom:592.707067pt;}
.y1e9{bottom:593.780267pt;}
.yd5{bottom:597.426800pt;}
.y1dd{bottom:598.799867pt;}
.yb7{bottom:598.894400pt;}
.y137{bottom:602.957333pt;}
.y58{bottom:607.135733pt;}
.y163{bottom:607.548000pt;}
.y2b{bottom:611.373733pt;}
.y79{bottom:617.283867pt;}
.yb6{bottom:617.561067pt;}
.y1a1{bottom:625.304800pt;}
.y57{bottom:625.802400pt;}
.y162{bottom:626.214667pt;}
.y1e8{bottom:627.672267pt;}
.y1dc{bottom:632.584667pt;}
.yb5{bottom:636.227733pt;}
.y10a{bottom:636.290667pt;}
.y100{bottom:636.422667pt;}
.y136{bottom:636.742000pt;}
.yd4{bottom:640.993733pt;}
.y56{bottom:644.469067pt;}
.y161{bottom:644.881333pt;}
.y2a{bottom:645.158533pt;}
.y1e7{bottom:649.808933pt;}
.y1db{bottom:651.251333pt;}
.yb4{bottom:654.894400pt;}
.y135{bottom:655.408667pt;}
.y1bd{bottom:662.915333pt;}
.y55{bottom:663.135733pt;}
.y29{bottom:663.825200pt;}
.y1da{bottom:669.918000pt;}
.yd3{bottom:671.516400pt;}
.yb3{bottom:673.561067pt;}
.y134{bottom:674.075333pt;}
.y99{bottom:674.484933pt;}
.y7{bottom:676.389067pt;}
.y160{bottom:678.666133pt;}
.y1bc{bottom:681.582000pt;}
.y28{bottom:682.491867pt;}
.y1e6{bottom:683.700800pt;}
.yb2{bottom:692.227733pt;}
.y133{bottom:692.742000pt;}
.y98{bottom:693.151467pt;}
.y54{bottom:696.920533pt;}
.y15f{bottom:697.332800pt;}
.y1bb{bottom:700.248667pt;}
.y27{bottom:701.158400pt;}
.yd2{bottom:702.039067pt;}
.y1d9{bottom:703.702800pt;}
.y1e5{bottom:705.837600pt;}
.yb1{bottom:710.894400pt;}
.y132{bottom:711.408800pt;}
.y97{bottom:711.818267pt;}
.y53{bottom:715.587200pt;}
.y15e{bottom:715.999467pt;}
.y1ba{bottom:718.915333pt;}
.y26{bottom:719.825067pt;}
.y1d8{bottom:722.369467pt;}
.y6{bottom:725.400267pt;}
.y1a0{bottom:726.936400pt;}
.yb0{bottom:729.561067pt;}
.y131{bottom:730.075467pt;}
.y96{bottom:730.484933pt;}
.yd1{bottom:732.561733pt;}
.y78{bottom:734.033467pt;}
.y52{bottom:734.253867pt;}
.y15d{bottom:734.666133pt;}
.y1b9{bottom:737.582000pt;}
.y25{bottom:738.491733pt;}
.y1e4{bottom:739.729600pt;}
.y1d7{bottom:741.036133pt;}
.y19f{bottom:745.603067pt;}
.y130{bottom:748.742133pt;}
.y95{bottom:749.151600pt;}
.y77{bottom:752.700133pt;}
.y51{bottom:752.920533pt;}
.y15c{bottom:753.332800pt;}
.y24{bottom:757.158400pt;}
.y1e3{bottom:761.866267pt;}
.yd0{bottom:763.084267pt;}
.yaf{bottom:763.345733pt;}
.y19e{bottom:764.269733pt;}
.y12f{bottom:767.408800pt;}
.y94{bottom:767.818267pt;}
.y76{bottom:771.366800pt;}
.y50{bottom:771.587200pt;}
.y15b{bottom:771.999467pt;}
.y5{bottom:774.411333pt;}
.y1d6{bottom:774.820933pt;}
.y23{bottom:775.825067pt;}
.y19d{bottom:782.936400pt;}
.y12e{bottom:786.075467pt;}
.y93{bottom:786.484933pt;}
.y75{bottom:790.033467pt;}
.y4f{bottom:790.253867pt;}
.y15a{bottom:790.666133pt;}
.y1d5{bottom:793.487600pt;}
.ycf{bottom:793.606933pt;}
.y22{bottom:794.491733pt;}
.y1e2{bottom:795.758267pt;}
.yae{bottom:797.130667pt;}
.y19c{bottom:801.603067pt;}
.y12d{bottom:804.742133pt;}
.y92{bottom:805.151600pt;}
.y74{bottom:808.700133pt;}
.y159{bottom:809.332800pt;}
.y1d4{bottom:812.154267pt;}
.y21{bottom:813.158400pt;}
.y1e1{bottom:817.894800pt;}
.y19b{bottom:820.269733pt;}
.y12c{bottom:823.408800pt;}
.y4{bottom:823.422667pt;}
.y91{bottom:823.818267pt;}
.y4e{bottom:824.038667pt;}
.yce{bottom:824.129600pt;}
.y73{bottom:827.366800pt;}
.y158{bottom:827.999467pt;}
.yad{bottom:830.915333pt;}
.y20{bottom:831.825067pt;}
.y19a{bottom:838.936400pt;}
.y12b{bottom:842.075467pt;}
.y90{bottom:842.484933pt;}
.y4d{bottom:842.705333pt;}
.y1d3{bottom:845.938933pt;}
.y72{bottom:846.033467pt;}
.yf3{bottom:846.253867pt;}
.y157{bottom:846.666133pt;}
.yac{bottom:849.582000pt;}
.ycd{bottom:853.985600pt;}
.y199{bottom:857.603067pt;}
.y12a{bottom:860.742133pt;}
.y8f{bottom:861.151600pt;}
.y4c{bottom:861.372000pt;}
.y1d2{bottom:864.605600pt;}
.yf2{bottom:864.920533pt;}
.y156{bottom:865.332800pt;}
.y1f{bottom:865.610000pt;}
.y3{bottom:872.433733pt;}
.y198{bottom:876.269733pt;}
.y129{bottom:879.408800pt;}
.y71{bottom:879.818267pt;}
.y1d1{bottom:883.272267pt;}
.yab{bottom:883.366800pt;}
.yf1{bottom:883.587200pt;}
.y155{bottom:883.999467pt;}
.y1e{bottom:884.276667pt;}
.ycc{bottom:884.508267pt;}
.y8e{bottom:894.936400pt;}
.y4b{bottom:895.156800pt;}
.y128{bottom:898.075467pt;}
.y70{bottom:898.484933pt;}
.yaa{bottom:902.033467pt;}
.y154{bottom:902.666133pt;}
.y1d{bottom:902.943333pt;}
.y8d{bottom:913.603067pt;}
.y4a{bottom:913.823467pt;}
.y1d0{bottom:917.057067pt;}
.y6f{bottom:917.151600pt;}
.y153{bottom:921.332800pt;}
.y1c{bottom:921.610000pt;}
.y127{bottom:931.860133pt;}
.y8c{bottom:932.269733pt;}
.y49{bottom:932.490133pt;}
.y1e0{bottom:934.519733pt;}
.y1cf{bottom:935.723733pt;}
.y6e{bottom:935.818267pt;}
.ycb{bottom:939.366800pt;}
.y1b{bottom:940.276667pt;}
.y126{bottom:950.526800pt;}
.y8b{bottom:950.936400pt;}
.y48{bottom:951.156800pt;}
.y1ce{bottom:954.390400pt;}
.y6d{bottom:954.484933pt;}
.y1a{bottom:958.943333pt;}
.y125{bottom:969.193467pt;}
.y8a{bottom:969.603067pt;}
.y47{bottom:969.823467pt;}
.y6c{bottom:973.151600pt;}
.y19{bottom:977.610000pt;}
.y152{bottom:977.794667pt;}
.y124{bottom:987.860133pt;}
.y1cd{bottom:988.175200pt;}
.y89{bottom:988.269733pt;}
.y46{bottom:988.490133pt;}
.y2{bottom:998.084533pt;}
.y123{bottom:1006.526800pt;}
.y1cc{bottom:1006.841867pt;}
.y6b{bottom:1006.936400pt;}
.y45{bottom:1007.156800pt;}
.y18{bottom:1011.394667pt;}
.y1{bottom:1020.751200pt;}
.y122{bottom:1025.193467pt;}
.y1cb{bottom:1025.508533pt;}
.y6a{bottom:1025.603067pt;}
.ye1{bottom:1025.807600pt;}
.y44{bottom:1025.823467pt;}
.h15{height:28.899564pt;}
.h18{height:29.021745pt;}
.h12{height:29.216727pt;}
.hc{height:29.304291pt;}
.hf{height:29.572073pt;}
.h7{height:35.636364pt;}
.h5{height:38.181818pt;}
.h13{height:39.193382pt;}
.hd{height:39.310473pt;}
.h10{height:39.669891pt;}
.ha{height:40.727273pt;}
.h16{height:45.111564pt;}
.h19{height:45.301964pt;}
.h9{height:45.818182pt;}
.h3{height:50.909091pt;}
.h8{height:53.454545pt;}
.h1c{height:58.290909pt;}
.h2{height:64.777236pt;}
.h6{height:106.909091pt;}
.h1b{height:132.363636pt;}
.h4{height:162.909091pt;}
.h11{height:181.782667pt;}
.h1a{height:181.840000pt;}
.h14{height:182.024000pt;}
.hb{height:182.513333pt;}
.h17{height:182.790667pt;}
.he{height:183.993333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:307.742667pt;}
.w4{width:313.172000pt;}
.w2{width:313.173333pt;}
.w3{width:316.793333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.503625pt;}
.x21{left:6.591423pt;}
.x13{left:9.410166pt;}
.x20{left:10.436441pt;}
.x12{left:14.145600pt;}
.x16{left:37.503467pt;}
.x19{left:47.506000pt;}
.x1c{left:48.450267pt;}
.x23{left:54.922895pt;}
.x3{left:55.999867pt;}
.x1d{left:58.359200pt;}
.x22{left:59.429200pt;}
.x15{left:64.163141pt;}
.x1e{left:84.714667pt;}
.x1{left:89.835733pt;}
.x1b{left:91.790667pt;}
.x24{left:105.835733pt;}
.x17{left:140.781467pt;}
.x1a{left:142.534667pt;}
.x5{left:144.692000pt;}
.x25{left:149.111333pt;}
.x6{left:154.267733pt;}
.x4{left:155.671467pt;}
.x8{left:163.716533pt;}
.x7{left:172.409467pt;}
.x11{left:281.233067pt;}
.x9{left:340.787467pt;}
.xe{left:343.193867pt;}
.xf{left:344.455333pt;}
.xa{left:400.000000pt;}
.x1f{left:405.408000pt;}
.x2{left:409.387067pt;}
.x18{left:417.204000pt;}
.x10{left:452.255600pt;}
.xb{left:458.582667pt;}
.xc{left:517.165333pt;}
.xd{left:601.574800pt;}
}




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