
    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_6f97abd0db1267355d0b2ea3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_9d11c4c9c11ceefa666523ce.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_b2683708de6048130374e47b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_ae54ab1b5e4aa33366a5ee34.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_a667a92c107933fe645c86dc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.103516;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_7a98fbba9a66a0dc17cab9de.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_1012ed7abfb95258ffbb2d25.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091797;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_cc52ba0269fe0e4b1eb2180b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_bc039715ee601a834e46fb3b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_3793804835bd73834b8a9ee0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_16972fb2ca11b634ca0cd2c1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_c573d6ed22f73732f0183529.woff')format("woff");}.ffd{font-family:ffd;line-height:1.090332;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_2ebb3bbef2f1309d385ffbce.woff')format("woff");}.ffe{font-family:ffe;line-height:1.031738;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_f6c52000a675a74f053fdadd.woff')format("woff");}.fff{font-family:fff;line-height:1.090332;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_daeebb8d01d2e7e61fb2ce1f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.935547;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_f34aa8476025d7a54f350485.woff')format("woff");}.ff11{font-family:ff11;line-height:1.090332;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_628ede46c68b293f2467aa2e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.938965;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_2fd5481d68e65fcd5fc07a46.woff')format("woff");}.ff13{font-family:ff13;line-height:1.106934;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);}
.v7{vertical-align:-68.544000px;}
.v1{vertical-align:-4.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.860000px;}
.v2{vertical-align:3.180000px;}
.v6{vertical-align:31.680000px;}
.v5{vertical-align:34.740000px;}
.v4{vertical-align:66.840000px;}
.ls1a{letter-spacing:-1.206000px;}
.ls4e{letter-spacing:-0.906000px;}
.ls4c{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.732000px;}
.ls32{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.494400px;}
.ls19{letter-spacing:-0.487200px;}
.ls38{letter-spacing:-0.468000px;}
.ls46{letter-spacing:-0.383400px;}
.ls45{letter-spacing:-0.310200px;}
.ls50{letter-spacing:-0.303600px;}
.ls1f{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.280800px;}
.ls16{letter-spacing:-0.205200px;}
.ls22{letter-spacing:-0.189000px;}
.ls17{letter-spacing:-0.186600px;}
.ls3a{letter-spacing:-0.148800px;}
.ls13{letter-spacing:-0.128400px;}
.lsc{letter-spacing:-0.121800px;}
.ls20{letter-spacing:-0.108000px;}
.ls49{letter-spacing:-0.100200px;}
.ls18{letter-spacing:-0.082200px;}
.ls24{letter-spacing:-0.078000px;}
.ls27{letter-spacing:-0.072000px;}
.ls4d{letter-spacing:-0.044760px;}
.ls23{letter-spacing:-0.036000px;}
.ls2a{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000006px;}
.ls4a{letter-spacing:0.002016px;}
.ls12{letter-spacing:0.015840px;}
.ls47{letter-spacing:0.030816px;}
.lsa{letter-spacing:0.034560px;}
.ls31{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.042048px;}
.ls43{letter-spacing:0.064800px;}
.ls10{letter-spacing:0.071280px;}
.ls1d{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.104400px;}
.ls1e{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.117000px;}
.ls1c{letter-spacing:0.129600px;}
.ls26{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.144600px;}
.ls3b{letter-spacing:0.175800px;}
.lsf{letter-spacing:0.179400px;}
.ls29{letter-spacing:0.180000px;}
.lse{letter-spacing:0.180600px;}
.ls14{letter-spacing:0.196800px;}
.ls34{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.225600px;}
.ls9{letter-spacing:0.232800px;}
.ls2e{letter-spacing:0.233400px;}
.ls28{letter-spacing:0.238200px;}
.ls42{letter-spacing:0.246000px;}
.ls21{letter-spacing:0.252000px;}
.ls33{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.261600px;}
.lsb{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.319800px;}
.ls39{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.396000px;}
.ls30{letter-spacing:0.612000px;}
.ls41{letter-spacing:0.678000px;}
.ls44{letter-spacing:0.972000px;}
.ls48{letter-spacing:1.104000px;}
.ls35{letter-spacing:1.116000px;}
.ls3f{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.248192px;}
.ls2d{letter-spacing:3.078000px;}
.ls36{letter-spacing:4.686768px;}
.ls1b{letter-spacing:4.716000px;}
.ls3d{letter-spacing:7.596000px;}
.ls3e{letter-spacing:8.316000px;}
.ls37{letter-spacing:11.916000px;}
.ls3c{letter-spacing:19.116000px;}
.ls3{letter-spacing:23.831280px;}
.ls4{letter-spacing:24.551280px;}
.ls4f{letter-spacing:34.430400px;}
.ls5{letter-spacing:89.769600px;}
.ls1{letter-spacing:89.856000px;}
.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:-144.000000px;}
.ws36{word-spacing:-120.384000px;}
.ws4{word-spacing:-120.240000px;}
.ws4f{word-spacing:-108.000000px;}
.ws51{word-spacing:-95.760000px;}
.ws5e{word-spacing:-87.725232px;}
.ws5c{word-spacing:-73.109232px;}
.ws3b{word-spacing:-40.350960px;}
.ws43{word-spacing:-34.055280px;}
.ws5b{word-spacing:-29.232000px;}
.ws2c{word-spacing:-26.621280px;}
.ws8{word-spacing:-24.641520px;}
.ws2{word-spacing:-24.634320px;}
.ws19{word-spacing:-24.605520px;}
.ws7{word-spacing:-24.582552px;}
.ws17{word-spacing:-24.424560px;}
.ws3{word-spacing:-24.408720px;}
.ws1d{word-spacing:-24.355752px;}
.ws18{word-spacing:-24.280320px;}
.ws1c{word-spacing:-24.251352px;}
.ws1b{word-spacing:-24.232752px;}
.ws1a{word-spacing:-24.157152px;}
.ws1e{word-spacing:-23.921520px;}
.ws5{word-spacing:-23.914320px;}
.ws6{word-spacing:-23.676720px;}
.ws49{word-spacing:-23.112000px;}
.ws52{word-spacing:-23.057232px;}
.ws4e{word-spacing:-22.896000px;}
.ws4b{word-spacing:-22.631232px;}
.ws3e{word-spacing:-22.536000px;}
.ws37{word-spacing:-22.484880px;}
.ws54{word-spacing:-22.320000px;}
.ws46{word-spacing:-22.284000px;}
.ws4a{word-spacing:-22.273032px;}
.ws4c{word-spacing:-22.199232px;}
.ws25{word-spacing:-22.176000px;}
.ws44{word-spacing:-22.140000px;}
.ws48{word-spacing:-22.129032px;}
.ws41{word-spacing:-22.104000px;}
.ws3d{word-spacing:-22.068000px;}
.ws5a{word-spacing:-22.057632px;}
.ws22{word-spacing:-22.032000px;}
.ws4d{word-spacing:-22.018032px;}
.ws2f{word-spacing:-22.001640px;}
.ws21{word-spacing:-21.996000px;}
.ws3f{word-spacing:-21.960000px;}
.ws56{word-spacing:-21.955248px;}
.ws55{word-spacing:-21.953232px;}
.ws10{word-spacing:-21.924000px;}
.ws58{word-spacing:-21.908472px;}
.ws27{word-spacing:-21.888000px;}
.ws53{word-spacing:-21.853032px;}
.ws3c{word-spacing:-21.852000px;}
.ws24{word-spacing:-21.816000px;}
.ws47{word-spacing:-21.804432px;}
.ws26{word-spacing:-21.764232px;}
.ws23{word-spacing:-21.636000px;}
.ws45{word-spacing:-21.456000px;}
.ws40{word-spacing:-21.276000px;}
.ws57{word-spacing:-21.096000px;}
.ws59{word-spacing:-21.047232px;}
.ws30{word-spacing:-20.376000px;}
.ws38{word-spacing:-20.196000px;}
.ws2e{word-spacing:-20.160000px;}
.ws2d{word-spacing:-20.124000px;}
.ws29{word-spacing:-20.016000px;}
.ws31{word-spacing:-19.468512px;}
.ws1f{word-spacing:-19.239552px;}
.ws20{word-spacing:-19.206720px;}
.ws32{word-spacing:-18.414720px;}
.ws11{word-spacing:-17.362320px;}
.ws50{word-spacing:-17.332560px;}
.wsd{word-spacing:-17.100720px;}
.ws5d{word-spacing:-16.613280px;}
.ws39{word-spacing:-15.752880px;}
.ws42{word-spacing:-15.102720px;}
.wse{word-spacing:-14.616000px;}
.ws3a{word-spacing:-13.464000px;}
.ws35{word-spacing:-13.058064px;}
.ws34{word-spacing:-13.032000px;}
.ws33{word-spacing:-13.031997px;}
.ws2a{word-spacing:-12.784320px;}
.wsa{word-spacing:-12.015504px;}
.ws9{word-spacing:-11.989440px;}
.ws12{word-spacing:-2.326272px;}
.ws15{word-spacing:-1.542240px;}
.ws13{word-spacing:-0.761544px;}
.ws16{word-spacing:-0.698640px;}
.ws14{word-spacing:-0.464256px;}
.wsf{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.408000px;}
.ws28{word-spacing:25.488000px;}
.wsc{word-spacing:125.436000px;}
.ws2b{word-spacing:396.654816px;}
._29{margin-left:-12.755280px;}
._8{margin-left:-9.389952px;}
._38{margin-left:-8.137920px;}
._11{margin-left:-7.067520px;}
._3{margin-left:-5.328000px;}
._4{margin-left:-4.194000px;}
._2{margin-left:-2.502000px;}
._0{margin-left:-1.345680px;}
._1{width:1.345680px;}
._12{width:2.830320px;}
._1c{width:4.644000px;}
._14{width:5.831280px;}
._2e{width:7.324320px;}
._37{width:8.581680px;}
._1b{width:9.750000px;}
._1a{width:11.304000px;}
._15{width:12.875280px;}
._c{width:14.375520px;}
._b{width:15.742800px;}
._13{width:17.389440px;}
._2a{width:19.182576px;}
._16{width:21.360960px;}
._7{width:23.103840px;}
._24{width:24.354960px;}
._18{width:25.799520px;}
._19{width:26.943840px;}
._3a{width:28.362000px;}
._3b{width:29.820000px;}
._17{width:32.209920px;}
._22{width:34.249680px;}
._35{width:35.878080px;}
._33{width:37.136640px;}
._32{width:39.085680px;}
._2f{width:40.680000px;}
._34{width:41.814528px;}
._28{width:43.393776px;}
._1d{width:44.402976px;}
._27{width:45.898704px;}
._2b{width:47.183568px;}
._39{width:49.569648px;}
._5{width:51.402960px;}
._6{width:52.405920px;}
._36{width:55.345680px;}
._42{width:56.413680px;}
._31{width:58.320960px;}
._30{width:59.580000px;}
._1e{width:63.468000px;}
._26{width:65.742000px;}
._25{width:67.128000px;}
._3c{width:73.469952px;}
._3d{width:74.851536px;}
._41{width:76.256784px;}
._40{width:78.882720px;}
._3f{width:80.190000px;}
._2d{width:88.552320px;}
._2c{width:89.796000px;}
._9{width:94.656384px;}
._a{width:95.844000px;}
._10{width:134.938320px;}
._f{width:162.312000px;}
._3e{width:164.293680px;}
._20{width:237.995280px;}
._21{width:289.046640px;}
._23{width:509.737680px;}
._1f{width:677.340720px;}
._e{width:783.822000px;}
._d{width:1308.381840px;}
.fcd{color:rgb(18,71,131);}
.fc1a{color:rgb(0,32,96);}
.fcb{color:rgb(2,36,57);}
.fc8{color:rgb(75,197,222);}
.fca{color:rgb(64,64,64);}
.fc1d{color:rgb(157,203,253);}
.fc9{color:rgb(166,166,166);}
.fc4{color:rgb(58,58,58);}
.fc2{color:rgb(127,127,127);}
.fc11{color:rgb(192,79,21);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(15,60,116);}
.fc12{color:rgb(70,177,225);}
.fc1{color:rgb(121,183,251);}
.fc7{color:rgb(237,141,47);}
.fc0{color:rgb(49,85,139);}
.fcf{color:rgb(255,255,255);}
.fcc{color:transparent;}
.fce{color:rgb(107,191,112);}
.fc10{color:rgb(89,89,89);}
.fc15{color:rgb(3,78,162);}
.fc13{color:rgb(70,120,134);}
.fc14{color:rgb(7,119,243);}
.fc16{color:rgb(87,201,224);}
.fc17{color:rgb(30,192,138);}
.fc1b{color:rgb(0,195,91);}
.fc18{color:rgb(71,212,90);}
.fc5{color:rgb(244,110,10);}
.fc19{color:rgb(146,208,80);}
.fc1c{color:rgb(0,133,130);}
.fs4{font-size:54.000000px;}
.fs11{font-size:59.760000px;}
.fs10{font-size:59.904000px;}
.fs12{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fsb{font-size:72.000000px;}
.fs15{font-size:72.144000px;}
.fse{font-size:77.904000px;}
.fs8{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fs13{font-size:95.760000px;}
.fs14{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs5{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fs16{font-size:360.144000px;}
.fs17{font-size:432.144000px;}
.y0{bottom:0.000000px;}
.y127{bottom:16.020000px;}
.y12e{bottom:18.900000px;}
.y8{bottom:31.104000px;}
.y12c{bottom:48.420000px;}
.y12b{bottom:62.820000px;}
.yed{bottom:73.548000px;}
.y121{bottom:73.620000px;}
.y130{bottom:83.160000px;}
.yb7{bottom:88.848000px;}
.y126{bottom:92.955000px;}
.y120{bottom:92.985000px;}
.y106{bottom:93.060000px;}
.y10e{bottom:93.135000px;}
.y108{bottom:93.165000px;}
.yec{bottom:93.348000px;}
.y34{bottom:94.464000px;}
.ya4{bottom:98.820000px;}
.y5f{bottom:98.892000px;}
.y30{bottom:101.268000px;}
.y12d{bottom:104.655000px;}
.y11d{bottom:104.760000px;}
.y11a{bottom:104.835000px;}
.y53{bottom:106.128000px;}
.y103{bottom:106.704000px;}
.y99{bottom:109.656000px;}
.yb6{bottom:110.448000px;}
.y12f{bottom:111.960000px;}
.y46{bottom:116.172000px;}
.y2f{bottom:121.068000px;}
.y5e{bottom:124.128000px;}
.y98{bottom:128.556000px;}
.ybe{bottom:128.700000px;}
.y13{bottom:130.032000px;}
.y125{bottom:131.220000px;}
.y52{bottom:131.328000px;}
.yc1{bottom:136.440000px;}
.yc5{bottom:138.168000px;}
.yff{bottom:139.104000px;}
.ya3{bottom:140.292000px;}
.y2e{bottom:140.868000px;}
.y58{bottom:143.820000px;}
.y5d{bottom:149.328000px;}
.y39{bottom:156.060000px;}
.ye5{bottom:156.420000px;}
.y51{bottom:156.525000px;}
.y35{bottom:160.530000px;}
.y2d{bottom:160.665000px;}
.y68{bottom:160.845000px;}
.y45{bottom:161.610000px;}
.y7d{bottom:163.260000px;}
.y28{bottom:163.905000px;}
.y57{bottom:165.420000px;}
.y12{bottom:166.035000px;}
.yc4{bottom:170.610000px;}
.yfe{bottom:171.540000px;}
.yc0{bottom:172.470000px;}
.y5c{bottom:174.525000px;}
.y6{bottom:176.070000px;}
.ye4{bottom:176.220000px;}
.y12a{bottom:179.355000px;}
.y112{bottom:179.535000px;}
.y10c{bottom:179.565000px;}
.y50{bottom:181.770000px;}
.y27{bottom:183.705000px;}
.yf3{bottom:185.655000px;}
.ybd{bottom:185.910000px;}
.y124{bottom:191.055000px;}
.y117{bottom:191.235000px;}
.y56{bottom:191.955000px;}
.ye3{bottom:196.020000px;}
.y67{bottom:196.845000px;}
.y6c{bottom:197.970000px;}
.y5b{bottom:199.725000px;}
.y11f{bottom:203.220000px;}
.y26{bottom:203.505000px;}
.yfd{bottom:203.940000px;}
.y1a{bottom:206.535000px;}
.y4f{bottom:206.970000px;}
.y128{bottom:208.155000px;}
.y110{bottom:208.335000px;}
.y10a{bottom:208.365000px;}
.ydf{bottom:212.580000px;}
.y55{bottom:213.555000px;}
.y7c{bottom:215.460000px;}
.ye2{bottom:215.820000px;}
.y135{bottom:216.690000px;}
.y122{bottom:222.585000px;}
.y115{bottom:222.735000px;}
.y6b{bottom:223.170000px;}
.y25{bottom:223.305000px;}
.y129{bottom:224.175000px;}
.y5a{bottom:224.925000px;}
.y19{bottom:226.335000px;}
.yc3{bottom:231.585000px;}
.y4e{bottom:232.170000px;}
.y11c{bottom:232.560000px;}
.y66{bottom:232.845000px;}
.y114{bottom:233.100000px;}
.y74{bottom:235.230000px;}
.y102{bottom:236.340000px;}
.y11{bottom:238.035000px;}
.y13c{bottom:239.475000px;}
.yb0{bottom:239.940000px;}
.y22{bottom:242.250000px;}
.y24{bottom:243.150000px;}
.ybc{bottom:243.645000px;}
.yde{bottom:244.980000px;}
.y11b{bottom:246.960000px;}
.y2c{bottom:250.020000px;}
.y59{bottom:250.125000px;}
.y134{bottom:250.485000px;}
.yab{bottom:255.165000px;}
.y9b{bottom:256.965000px;}
.y4d{bottom:257.370000px;}
.y13b{bottom:257.475000px;}
.ya2{bottom:259.455000px;}
.yaf{bottom:261.540000px;}
.y21{bottom:262.050000px;}
.ye7{bottom:262.800000px;}
.y23{bottom:262.950000px;}
.yc2{bottom:267.585000px;}
.y73{bottom:267.630000px;}
.y7b{bottom:267.660000px;}
.yfc{bottom:268.740000px;}
.y2b{bottom:269.820000px;}
.ye1{bottom:272.055000px;}
.y41{bottom:272.730000px;}
.y6a{bottom:273.600000px;}
.y10{bottom:274.065000px;}
.y119{bottom:276.300000px;}
.y20{bottom:281.850000px;}
.y1d{bottom:282.495000px;}
.y4c{bottom:282.570000px;}
.ye6{bottom:282.600000px;}
.yf2{bottom:282.885000px;}
.yae{bottom:283.170000px;}
.yaa{bottom:283.965000px;}
.y2a{bottom:289.620000px;}
.y13a{bottom:290.055000px;}
.y118{bottom:290.700000px;}
.y123{bottom:296.205000px;}
.y69{bottom:298.800000px;}
.y72{bottom:300.060000px;}
.yfb{bottom:301.140000px;}
.y1f{bottom:301.650000px;}
.y1c{bottom:302.295000px;}
.y32{bottom:303.945000px;}
.y65{bottom:304.890000px;}
.ya1{bottom:305.175000px;}
.y4b{bottom:307.770000px;}
.y29{bottom:309.420000px;}
.y139{bottom:309.855000px;}
.y96{bottom:309.990000px;}
.y8b{bottom:310.965000px;}
.y5{bottom:312.945000px;}
.y16{bottom:313.200000px;}
.y10f{bottom:315.900000px;}
.y38{bottom:316.440000px;}
.ye9{bottom:316.830000px;}
.y93{bottom:318.165000px;}
.y91{bottom:319.110000px;}
.y8d{bottom:319.140000px;}
.y8f{bottom:319.860000px;}
.y7a{bottom:319.890000px;}
.y1e{bottom:321.450000px;}
.y1b{bottom:322.095000px;}
.y31{bottom:323.745000px;}
.y95{bottom:328.890000px;}
.y8a{bottom:328.965000px;}
.y138{bottom:329.655000px;}
.y8c{bottom:331.020000px;}
.y44{bottom:331.560000px;}
.y40{bottom:332.280000px;}
.y71{bottom:332.460000px;}
.yfa{bottom:333.570000px;}
.ye8{bottom:336.630000px;}
.ybf{bottom:336.885000px;}
.y11e{bottom:337.320000px;}
.y92{bottom:337.965000px;}
.y37{bottom:338.760000px;}
.y90{bottom:338.910000px;}
.y8e{bottom:339.660000px;}
.yf{bottom:346.065000px;}
.y89{bottom:346.965000px;}
.y94{bottom:347.790000px;}
.y43{bottom:356.760000px;}
.y4{bottom:357.945000px;}
.y18{bottom:358.020000px;}
.y9c{bottom:360.645000px;}
.y113{bottom:362.700000px;}
.y36{bottom:363.960000px;}
.y70{bottom:364.860000px;}
.yf9{bottom:365.970000px;}
.ya9{bottom:370.410000px;}
.y137{bottom:371.625000px;}
.y79{bottom:372.090000px;}
.ydd{bottom:374.610000px;}
.y48{bottom:376.305000px;}
.y17{bottom:377.820000px;}
.yf1{bottom:380.085000px;}
.y42{bottom:381.960000px;}
.ye{bottom:382.065000px;}
.y109{bottom:384.300000px;}
.ya0{bottom:384.630000px;}
.y3f{bottom:387.750000px;}
.y88{bottom:390.165000px;}
.y84{bottom:396.720000px;}
.y82{bottom:397.230000px;}
.y86{bottom:397.725000px;}
.yf8{bottom:398.370000px;}
.ya8{bottom:399.210000px;}
.y3{bottom:402.945000px;}
.ydc{bottom:407.010000px;}
.y87{bottom:408.165000px;}
.y13d{bottom:409.860000px;}
.y133{bottom:412.530000px;}
.y64{bottom:412.890000px;}
.y3e{bottom:412.950000px;}
.y54{bottom:414.390000px;}
.y83{bottom:416.520000px;}
.y81{bottom:417.030000px;}
.y85{bottom:417.525000px;}
.y78{bottom:424.290000px;}
.y9a{bottom:426.750000px;}
.ya7{bottom:428.010000px;}
.y9f{bottom:428.940000px;}
.y101{bottom:430.770000px;}
.y10d{bottom:431.100000px;}
.ycb{bottom:437.010000px;}
.yd2{bottom:442.590000px;}
.y132{bottom:444.930000px;}
.yce{bottom:447.120000px;}
.yc7{bottom:448.170000px;}
.y63{bottom:448.920000px;}
.yd{bottom:454.110000px;}
.y116{bottom:455.835000px;}
.yca{bottom:458.610000px;}
.y100{bottom:463.170000px;}
.yd1{bottom:464.190000px;}
.ycd{bottom:472.320000px;}
.yc6{bottom:473.370000px;}
.yeb{bottom:476.385000px;}
.y77{bottom:476.535000px;}
.y3d{bottom:477.030000px;}
.yf0{bottom:477.330000px;}
.yc9{bottom:480.210000px;}
.yd0{bottom:485.790000px;}
.yc{bottom:490.110000px;}
.y2{bottom:494.460000px;}
.y6f{bottom:494.490000px;}
.yf7{bottom:495.615000px;}
.yad{bottom:496.005000px;}
.ycc{bottom:497.520000px;}
.y107{bottom:499.500000px;}
.yc8{bottom:501.840000px;}
.y3c{bottom:502.230000px;}
.ydb{bottom:504.255000px;}
.y9e{bottom:506.625000px;}
.ycf{bottom:507.420000px;}
.yef{bottom:509.730000px;}
.y76{bottom:512.025000px;}
.ya6{bottom:514.440000px;}
.y15{bottom:514.650000px;}
.y49{bottom:514.905000px;}
.yac{bottom:515.805000px;}
.y7f{bottom:520.455000px;}
.y62{bottom:520.920000px;}
.y111{bottom:524.235000px;}
.yb2{bottom:525.930000px;}
.y6e{bottom:526.890000px;}
.yb5{bottom:527.730000px;}
.yf6{bottom:528.015000px;}
.yea{bottom:530.250000px;}
.yba{bottom:535.470000px;}
.yda{bottom:536.655000px;}
.y75{bottom:537.225000px;}
.yee{bottom:542.130000px;}
.ya5{bottom:543.240000px;}
.y105{bottom:543.420000px;}
.yb1{bottom:547.530000px;}
.yb4{bottom:549.330000px;}
.y9d{bottom:550.905000px;}
.yd9{bottom:554.730000px;}
.y61{bottom:556.920000px;}
.yb9{bottom:557.070000px;}
.y6d{bottom:559.290000px;}
.yf5{bottom:560.415000px;}
.y1{bottom:560.520000px;}
.yb{bottom:562.110000px;}
.y3b{bottom:569.985000px;}
.yb3{bottom:570.960000px;}
.y131{bottom:574.560000px;}
.y14{bottom:575.070000px;}
.yd4{bottom:576.255000px;}
.yd8{bottom:576.330000px;}
.y4a{bottom:576.720000px;}
.yd6{bottom:577.185000px;}
.yb8{bottom:578.670000px;}
.y80{bottom:583.350000px;}
.y136{bottom:587.370000px;}
.y97{bottom:588.450000px;}
.y10b{bottom:592.665000px;}
.yf4{bottom:592.815000px;}
.y60{bottom:592.920000px;}
.y3a{bottom:595.230000px;}
.yd3{bottom:597.855000px;}
.yd7{bottom:597.930000px;}
.yd5{bottom:598.785000px;}
.ye0{bottom:617.190000px;}
.ybb{bottom:631.230000px;}
.ya{bottom:634.140000px;}
.y104{bottom:636.480000px;}
.y47{bottom:675.330000px;}
.y33{bottom:675.390000px;}
.y7e{bottom:676.155000px;}
.y9{bottom:717.270000px;}
.y7{bottom:730.470000px;}
.hc{height:48.224531px;}
.he{height:48.256875px;}
.h6{height:48.858398px;}
.h20{height:50.510039px;}
.h14{height:52.417969px;}
.h12{height:52.453125px;}
.hf{height:53.293125px;}
.h23{height:53.552813px;}
.h34{height:53.573906px;}
.h1e{height:55.987031px;}
.h22{height:57.410156px;}
.hb{height:57.507187px;}
.hd{height:57.632203px;}
.h28{height:59.932969px;}
.h17{height:61.370156px;}
.h18{height:61.475062px;}
.h11{height:62.402344px;}
.h29{height:62.507812px;}
.h2b{height:62.527148px;}
.h2a{height:62.632828px;}
.h1d{height:65.144531px;}
.h33{height:65.274820px;}
.h16{height:70.486383px;}
.h10{height:73.010742px;}
.h1b{height:73.093008px;}
.ha{height:73.134141px;}
.h13{height:73.135547px;}
.h26{height:82.995117px;}
.h27{height:83.119922px;}
.h2c{height:83.135391px;}
.h1f{height:85.371750px;}
.h24{height:86.642227px;}
.h21{height:87.667031px;}
.h19{height:93.603516px;}
.h1a{height:93.728320px;}
.h15{height:93.761719px;}
.h8{height:104.211914px;}
.h9{height:104.336719px;}
.h25{height:104.388047px;}
.h3{height:124.804688px;}
.h4{height:124.929492px;}
.h5{height:125.015625px;}
.h7{height:145.643203px;}
.h1{height:166.895859px;}
.h2{height:167.020875px;}
.h1c{height:191.644687px;}
.h2d{height:201.780000px;}
.h30{height:226.980000px;}
.h31{height:307.080000px;}
.h32{height:312.136523px;}
.h35{height:374.538867px;}
.h2e{height:403.380000px;}
.h2f{height:428.580000px;}
.h0{height:810.000000px;}
.w3{width:55.980000px;}
.w2{width:229.680000px;}
.w4{width:796.140000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xa0{left:11.085000px;}
.x4c{left:24.371979px;}
.x1{left:33.371979px;}
.x30{left:45.179979px;}
.x2{left:55.583979px;}
.x65{left:60.659979px;}
.x4d{left:63.791979px;}
.x3{left:66.383979px;}
.x2f{left:71.207979px;}
.x46{left:72.755979px;}
.x59{left:73.907979px;}
.x3c{left:96.587979px;}
.x48{left:103.139979px;}
.x4a{left:116.351979px;}
.xa2{left:124.020000px;}
.xa7{left:126.395979px;}
.x4b{left:128.807979px;}
.x3e{left:132.839979px;}
.x7{left:134.999979px;}
.x6{left:159.374979px;}
.x6b{left:170.174979px;}
.x8{left:175.499979px;}
.xa3{left:179.820000px;}
.x41{left:188.819979px;}
.x70{left:192.239979px;}
.xb{left:196.769979px;}
.xc{left:199.334979px;}
.x8d{left:200.519979px;}
.x6f{left:206.819979px;}
.x84{left:210.749979px;}
.x5a{left:217.004979px;}
.xd{left:218.054979px;}
.x93{left:224.789979px;}
.x99{left:227.339979px;}
.x4e{left:230.249979px;}
.x42{left:234.029979px;}
.x6c{left:237.209979px;}
.x83{left:242.249979px;}
.x9{left:245.729979px;}
.x9d{left:251.894979px;}
.xa4{left:259.124979px;}
.x40{left:284.609979px;}
.x9b{left:300.419979px;}
.x44{left:317.009979px;}
.x43{left:327.629979px;}
.x8c{left:346.649979px;}
.x20{left:349.994979px;}
.x89{left:351.869979px;}
.x8e{left:353.129979px;}
.x8b{left:354.209979px;}
.x21{left:357.014979px;}
.x22{left:359.894979px;}
.x24{left:360.974979px;}
.x23{left:367.454979px;}
.x25{left:372.494979px;}
.x8a{left:373.829979px;}
.xe{left:375.989979px;}
.x8f{left:377.249979px;}
.x2c{left:382.934979px;}
.x94{left:386.459979px;}
.x95{left:388.259979px;}
.x96{left:392.219979px;}
.xf{left:394.529979px;}
.x97{left:401.399979px;}
.x98{left:403.589979px;}
.x4f{left:410.549979px;}
.x50{left:411.629979px;}
.x66{left:417.059979px;}
.x3f{left:418.169979px;}
.x5b{left:419.759979px;}
.x9a{left:422.564979px;}
.x9c{left:425.234979px;}
.x71{left:438.044979px;}
.x72{left:445.064979px;}
.xa{left:484.049979px;}
.x9e{left:486.644979px;}
.x80{left:498.989979px;}
.x2e{left:506.519979px;}
.x1a{left:508.529979px;}
.x85{left:516.779979px;}
.x18{left:522.389979px;}
.x19{left:528.329979px;}
.x77{left:535.934979px;}
.x10{left:544.289979px;}
.x11{left:556.529979px;}
.x36{left:559.769979px;}
.x5c{left:561.674979px;}
.x12{left:563.579979px;}
.xa6{left:566.069979px;}
.x2a{left:572.909979px;}
.x76{left:573.914979px;}
.x2b{left:578.309979px;}
.x5d{left:583.094979px;}
.x3a{left:587.159979px;}
.x49{left:593.789979px;}
.x51{left:596.849979px;}
.x13{left:601.379979px;}
.x5{left:607.499979px;}
.xa5{left:617.939979px;}
.x37{left:627.689979px;}
.x7f{left:640.469979px;}
.x39{left:645.224979px;}
.x74{left:653.009979px;}
.x75{left:661.109979px;}
.x73{left:681.629979px;}
.x86{left:730.334979px;}
.x91{left:733.709979px;}
.x87{left:741.674979px;}
.x90{left:743.609979px;}
.x88{left:751.034979px;}
.x52{left:756.614979px;}
.x92{left:759.629979px;}
.x53{left:763.274979px;}
.x5e{left:765.074979px;}
.x5f{left:778.214979px;}
.x3d{left:785.669979px;}
.x7c{left:811.154979px;}
.x7d{left:813.419979px;}
.x7e{left:815.369979px;}
.x31{left:837.209979px;}
.x45{left:864.029979px;}
.x81{left:869.789979px;}
.x4{left:889.559979px;}
.x6e{left:891.974979px;}
.x78{left:908.309979px;}
.x60{left:921.989979px;}
.x3b{left:924.119979px;}
.x79{left:925.589979px;}
.x54{left:945.209979px;}
.x61{left:946.514979px;}
.x7a{left:950.069979px;}
.x67{left:953.669979px;}
.x32{left:955.694979px;}
.x55{left:958.349979px;}
.x69{left:971.129979px;}
.x9f{left:975.780000px;}
.x47{left:1003.754979px;}
.xa1{left:1045.544979px;}
.x82{left:1046.774979px;}
.x1c{left:1059.554979px;}
.x1b{left:1062.614979px;}
.x33{left:1070.924979px;}
.x1e{left:1077.734979px;}
.x1f{left:1080.074979px;}
.x14{left:1084.754979px;}
.x1d{left:1089.434979px;}
.x62{left:1096.124979px;}
.x56{left:1102.214979px;}
.x15{left:1103.294979px;}
.x63{left:1106.384979px;}
.x2d{left:1146.809979px;}
.x38{left:1168.919979px;}
.x34{left:1191.089979px;}
.x68{left:1228.709979px;}
.x7b{left:1230.479979px;}
.x6a{left:1237.784979px;}
.x26{left:1239.629979px;}
.x35{left:1242.209979px;}
.x28{left:1246.649979px;}
.x27{left:1255.109979px;}
.x16{left:1259.429979px;}
.x29{left:1260.509979px;}
.x17{left:1277.969979px;}
.x6d{left:1286.789979px;}
.x58{left:1288.514979px;}
.x64{left:1309.709979px;}
.x57{left:1317.134979px;}
@media print{
.v7{vertical-align:-60.928000pt;}
.v1{vertical-align:-3.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.653333pt;}
.v2{vertical-align:2.826667pt;}
.v6{vertical-align:28.160000pt;}
.v5{vertical-align:30.880000pt;}
.v4{vertical-align:59.413333pt;}
.ls1a{letter-spacing:-1.072000pt;}
.ls4e{letter-spacing:-0.805333pt;}
.ls4c{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.650667pt;}
.ls32{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.439467pt;}
.ls19{letter-spacing:-0.433067pt;}
.ls38{letter-spacing:-0.416000pt;}
.ls46{letter-spacing:-0.340800pt;}
.ls45{letter-spacing:-0.275733pt;}
.ls50{letter-spacing:-0.269867pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.249600pt;}
.ls16{letter-spacing:-0.182400pt;}
.ls22{letter-spacing:-0.168000pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls3a{letter-spacing:-0.132267pt;}
.ls13{letter-spacing:-0.114133pt;}
.lsc{letter-spacing:-0.108267pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls49{letter-spacing:-0.089067pt;}
.ls18{letter-spacing:-0.073067pt;}
.ls24{letter-spacing:-0.069333pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls4d{letter-spacing:-0.039787pt;}
.ls23{letter-spacing:-0.032000pt;}
.ls2a{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000005pt;}
.ls4a{letter-spacing:0.001792pt;}
.ls12{letter-spacing:0.014080pt;}
.ls47{letter-spacing:0.027392pt;}
.lsa{letter-spacing:0.030720pt;}
.ls31{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.037376pt;}
.ls43{letter-spacing:0.057600pt;}
.ls10{letter-spacing:0.063360pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.092800pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.104000pt;}
.ls1c{letter-spacing:0.115200pt;}
.ls26{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.128533pt;}
.ls3b{letter-spacing:0.156267pt;}
.lsf{letter-spacing:0.159467pt;}
.ls29{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.160533pt;}
.ls14{letter-spacing:0.174933pt;}
.ls34{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.200533pt;}
.ls9{letter-spacing:0.206933pt;}
.ls2e{letter-spacing:0.207467pt;}
.ls28{letter-spacing:0.211733pt;}
.ls42{letter-spacing:0.218667pt;}
.ls21{letter-spacing:0.224000pt;}
.ls33{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.232533pt;}
.lsb{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.284267pt;}
.ls39{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.352000pt;}
.ls30{letter-spacing:0.544000pt;}
.ls41{letter-spacing:0.602667pt;}
.ls44{letter-spacing:0.864000pt;}
.ls48{letter-spacing:0.981333pt;}
.ls35{letter-spacing:0.992000pt;}
.ls3f{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.109504pt;}
.ls2d{letter-spacing:2.736000pt;}
.ls36{letter-spacing:4.166016pt;}
.ls1b{letter-spacing:4.192000pt;}
.ls3d{letter-spacing:6.752000pt;}
.ls3e{letter-spacing:7.392000pt;}
.ls37{letter-spacing:10.592000pt;}
.ls3c{letter-spacing:16.992000pt;}
.ls3{letter-spacing:21.183360pt;}
.ls4{letter-spacing:21.823360pt;}
.ls4f{letter-spacing:30.604800pt;}
.ls5{letter-spacing:79.795200pt;}
.ls1{letter-spacing:79.872000pt;}
.ws0{word-spacing:-128.000000pt;}
.ws36{word-spacing:-107.008000pt;}
.ws4{word-spacing:-106.880000pt;}
.ws4f{word-spacing:-96.000000pt;}
.ws51{word-spacing:-85.120000pt;}
.ws5e{word-spacing:-77.977984pt;}
.ws5c{word-spacing:-64.985984pt;}
.ws3b{word-spacing:-35.867520pt;}
.ws43{word-spacing:-30.271360pt;}
.ws5b{word-spacing:-25.984000pt;}
.ws2c{word-spacing:-23.663360pt;}
.ws8{word-spacing:-21.903573pt;}
.ws2{word-spacing:-21.897173pt;}
.ws19{word-spacing:-21.871573pt;}
.ws7{word-spacing:-21.851157pt;}
.ws17{word-spacing:-21.710720pt;}
.ws3{word-spacing:-21.696640pt;}
.ws1d{word-spacing:-21.649557pt;}
.ws18{word-spacing:-21.582507pt;}
.ws1c{word-spacing:-21.556757pt;}
.ws1b{word-spacing:-21.540224pt;}
.ws1a{word-spacing:-21.473024pt;}
.ws1e{word-spacing:-21.263573pt;}
.ws5{word-spacing:-21.257173pt;}
.ws6{word-spacing:-21.045973pt;}
.ws49{word-spacing:-20.544000pt;}
.ws52{word-spacing:-20.495317pt;}
.ws4e{word-spacing:-20.352000pt;}
.ws4b{word-spacing:-20.116651pt;}
.ws3e{word-spacing:-20.032000pt;}
.ws37{word-spacing:-19.986560pt;}
.ws54{word-spacing:-19.840000pt;}
.ws46{word-spacing:-19.808000pt;}
.ws4a{word-spacing:-19.798251pt;}
.ws4c{word-spacing:-19.732651pt;}
.ws25{word-spacing:-19.712000pt;}
.ws44{word-spacing:-19.680000pt;}
.ws48{word-spacing:-19.670251pt;}
.ws41{word-spacing:-19.648000pt;}
.ws3d{word-spacing:-19.616000pt;}
.ws5a{word-spacing:-19.606784pt;}
.ws22{word-spacing:-19.584000pt;}
.ws4d{word-spacing:-19.571584pt;}
.ws2f{word-spacing:-19.557013pt;}
.ws21{word-spacing:-19.552000pt;}
.ws3f{word-spacing:-19.520000pt;}
.ws56{word-spacing:-19.515776pt;}
.ws55{word-spacing:-19.513984pt;}
.ws10{word-spacing:-19.488000pt;}
.ws58{word-spacing:-19.474197pt;}
.ws27{word-spacing:-19.456000pt;}
.ws53{word-spacing:-19.424917pt;}
.ws3c{word-spacing:-19.424000pt;}
.ws24{word-spacing:-19.392000pt;}
.ws47{word-spacing:-19.381717pt;}
.ws26{word-spacing:-19.345984pt;}
.ws23{word-spacing:-19.232000pt;}
.ws45{word-spacing:-19.072000pt;}
.ws40{word-spacing:-18.912000pt;}
.ws57{word-spacing:-18.752000pt;}
.ws59{word-spacing:-18.708651pt;}
.ws30{word-spacing:-18.112000pt;}
.ws38{word-spacing:-17.952000pt;}
.ws2e{word-spacing:-17.920000pt;}
.ws2d{word-spacing:-17.888000pt;}
.ws29{word-spacing:-17.792000pt;}
.ws31{word-spacing:-17.305344pt;}
.ws1f{word-spacing:-17.101824pt;}
.ws20{word-spacing:-17.072640pt;}
.ws32{word-spacing:-16.368640pt;}
.ws11{word-spacing:-15.433173pt;}
.ws50{word-spacing:-15.406720pt;}
.wsd{word-spacing:-15.200640pt;}
.ws5d{word-spacing:-14.767360pt;}
.ws39{word-spacing:-14.002560pt;}
.ws42{word-spacing:-13.424640pt;}
.wse{word-spacing:-12.992000pt;}
.ws3a{word-spacing:-11.968000pt;}
.ws35{word-spacing:-11.607168pt;}
.ws34{word-spacing:-11.584000pt;}
.ws33{word-spacing:-11.583997pt;}
.ws2a{word-spacing:-11.363840pt;}
.wsa{word-spacing:-10.680448pt;}
.ws9{word-spacing:-10.657280pt;}
.ws12{word-spacing:-2.067797pt;}
.ws15{word-spacing:-1.370880pt;}
.ws13{word-spacing:-0.676928pt;}
.ws16{word-spacing:-0.621013pt;}
.ws14{word-spacing:-0.412672pt;}
.wsf{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.362667pt;}
.ws28{word-spacing:22.656000pt;}
.wsc{word-spacing:111.498667pt;}
.ws2b{word-spacing:352.582059pt;}
._29{margin-left:-11.338027pt;}
._8{margin-left:-8.346624pt;}
._38{margin-left:-7.233707pt;}
._11{margin-left:-6.282240pt;}
._3{margin-left:-4.736000pt;}
._4{margin-left:-3.728000pt;}
._2{margin-left:-2.224000pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.196160pt;}
._12{width:2.515840pt;}
._1c{width:4.128000pt;}
._14{width:5.183360pt;}
._2e{width:6.510507pt;}
._37{width:7.628160pt;}
._1b{width:8.666667pt;}
._1a{width:10.048000pt;}
._15{width:11.444693pt;}
._c{width:12.778240pt;}
._b{width:13.993600pt;}
._13{width:15.457280pt;}
._2a{width:17.051179pt;}
._16{width:18.987520pt;}
._7{width:20.536747pt;}
._24{width:21.648853pt;}
._18{width:22.932907pt;}
._19{width:23.950080pt;}
._3a{width:25.210667pt;}
._3b{width:26.506667pt;}
._17{width:28.631040pt;}
._22{width:30.444160pt;}
._35{width:31.891627pt;}
._33{width:33.010347pt;}
._32{width:34.742827pt;}
._2f{width:36.160000pt;}
._34{width:37.168469pt;}
._28{width:38.572245pt;}
._1d{width:39.469312pt;}
._27{width:40.798848pt;}
._2b{width:41.940949pt;}
._39{width:44.061909pt;}
._5{width:45.691520pt;}
._6{width:46.583040pt;}
._36{width:49.196160pt;}
._42{width:50.145493pt;}
._31{width:51.840853pt;}
._30{width:52.960000pt;}
._1e{width:56.416000pt;}
._26{width:58.437333pt;}
._25{width:59.669333pt;}
._3c{width:65.306624pt;}
._3d{width:66.534699pt;}
._41{width:67.783808pt;}
._40{width:70.117973pt;}
._3f{width:71.280000pt;}
._2d{width:78.713173pt;}
._2c{width:79.818667pt;}
._9{width:84.139008pt;}
._a{width:85.194667pt;}
._10{width:119.945173pt;}
._f{width:144.277333pt;}
._3e{width:146.038827pt;}
._20{width:211.551360pt;}
._21{width:256.930347pt;}
._23{width:453.100160pt;}
._1f{width:602.080640pt;}
._e{width:696.730667pt;}
._d{width:1163.006080pt;}
.fs4{font-size:48.000000pt;}
.fs11{font-size:53.120000pt;}
.fs10{font-size:53.248000pt;}
.fs12{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fsb{font-size:64.000000pt;}
.fs15{font-size:64.128000pt;}
.fse{font-size:69.248000pt;}
.fs8{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fs13{font-size:85.120000pt;}
.fs14{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs5{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fs16{font-size:320.128000pt;}
.fs17{font-size:384.128000pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:14.240000pt;}
.y12e{bottom:16.800000pt;}
.y8{bottom:27.648000pt;}
.y12c{bottom:43.040000pt;}
.y12b{bottom:55.840000pt;}
.yed{bottom:65.376000pt;}
.y121{bottom:65.440000pt;}
.y130{bottom:73.920000pt;}
.yb7{bottom:78.976000pt;}
.y126{bottom:82.626667pt;}
.y120{bottom:82.653333pt;}
.y106{bottom:82.720000pt;}
.y10e{bottom:82.786667pt;}
.y108{bottom:82.813333pt;}
.yec{bottom:82.976000pt;}
.y34{bottom:83.968000pt;}
.ya4{bottom:87.840000pt;}
.y5f{bottom:87.904000pt;}
.y30{bottom:90.016000pt;}
.y12d{bottom:93.026667pt;}
.y11d{bottom:93.120000pt;}
.y11a{bottom:93.186667pt;}
.y53{bottom:94.336000pt;}
.y103{bottom:94.848000pt;}
.y99{bottom:97.472000pt;}
.yb6{bottom:98.176000pt;}
.y12f{bottom:99.520000pt;}
.y46{bottom:103.264000pt;}
.y2f{bottom:107.616000pt;}
.y5e{bottom:110.336000pt;}
.y98{bottom:114.272000pt;}
.ybe{bottom:114.400000pt;}
.y13{bottom:115.584000pt;}
.y125{bottom:116.640000pt;}
.y52{bottom:116.736000pt;}
.yc1{bottom:121.280000pt;}
.yc5{bottom:122.816000pt;}
.yff{bottom:123.648000pt;}
.ya3{bottom:124.704000pt;}
.y2e{bottom:125.216000pt;}
.y58{bottom:127.840000pt;}
.y5d{bottom:132.736000pt;}
.y39{bottom:138.720000pt;}
.ye5{bottom:139.040000pt;}
.y51{bottom:139.133333pt;}
.y35{bottom:142.693333pt;}
.y2d{bottom:142.813333pt;}
.y68{bottom:142.973333pt;}
.y45{bottom:143.653333pt;}
.y7d{bottom:145.120000pt;}
.y28{bottom:145.693333pt;}
.y57{bottom:147.040000pt;}
.y12{bottom:147.586667pt;}
.yc4{bottom:151.653333pt;}
.yfe{bottom:152.480000pt;}
.yc0{bottom:153.306667pt;}
.y5c{bottom:155.133333pt;}
.y6{bottom:156.506667pt;}
.ye4{bottom:156.640000pt;}
.y12a{bottom:159.426667pt;}
.y112{bottom:159.586667pt;}
.y10c{bottom:159.613333pt;}
.y50{bottom:161.573333pt;}
.y27{bottom:163.293333pt;}
.yf3{bottom:165.026667pt;}
.ybd{bottom:165.253333pt;}
.y124{bottom:169.826667pt;}
.y117{bottom:169.986667pt;}
.y56{bottom:170.626667pt;}
.ye3{bottom:174.240000pt;}
.y67{bottom:174.973333pt;}
.y6c{bottom:175.973333pt;}
.y5b{bottom:177.533333pt;}
.y11f{bottom:180.640000pt;}
.y26{bottom:180.893333pt;}
.yfd{bottom:181.280000pt;}
.y1a{bottom:183.586667pt;}
.y4f{bottom:183.973333pt;}
.y128{bottom:185.026667pt;}
.y110{bottom:185.186667pt;}
.y10a{bottom:185.213333pt;}
.ydf{bottom:188.960000pt;}
.y55{bottom:189.826667pt;}
.y7c{bottom:191.520000pt;}
.ye2{bottom:191.840000pt;}
.y135{bottom:192.613333pt;}
.y122{bottom:197.853333pt;}
.y115{bottom:197.986667pt;}
.y6b{bottom:198.373333pt;}
.y25{bottom:198.493333pt;}
.y129{bottom:199.266667pt;}
.y5a{bottom:199.933333pt;}
.y19{bottom:201.186667pt;}
.yc3{bottom:205.853333pt;}
.y4e{bottom:206.373333pt;}
.y11c{bottom:206.720000pt;}
.y66{bottom:206.973333pt;}
.y114{bottom:207.200000pt;}
.y74{bottom:209.093333pt;}
.y102{bottom:210.080000pt;}
.y11{bottom:211.586667pt;}
.y13c{bottom:212.866667pt;}
.yb0{bottom:213.280000pt;}
.y22{bottom:215.333333pt;}
.y24{bottom:216.133333pt;}
.ybc{bottom:216.573333pt;}
.yde{bottom:217.760000pt;}
.y11b{bottom:219.520000pt;}
.y2c{bottom:222.240000pt;}
.y59{bottom:222.333333pt;}
.y134{bottom:222.653333pt;}
.yab{bottom:226.813333pt;}
.y9b{bottom:228.413333pt;}
.y4d{bottom:228.773333pt;}
.y13b{bottom:228.866667pt;}
.ya2{bottom:230.626667pt;}
.yaf{bottom:232.480000pt;}
.y21{bottom:232.933333pt;}
.ye7{bottom:233.600000pt;}
.y23{bottom:233.733333pt;}
.yc2{bottom:237.853333pt;}
.y73{bottom:237.893333pt;}
.y7b{bottom:237.920000pt;}
.yfc{bottom:238.880000pt;}
.y2b{bottom:239.840000pt;}
.ye1{bottom:241.826667pt;}
.y41{bottom:242.426667pt;}
.y6a{bottom:243.200000pt;}
.y10{bottom:243.613333pt;}
.y119{bottom:245.600000pt;}
.y20{bottom:250.533333pt;}
.y1d{bottom:251.106667pt;}
.y4c{bottom:251.173333pt;}
.ye6{bottom:251.200000pt;}
.yf2{bottom:251.453333pt;}
.yae{bottom:251.706667pt;}
.yaa{bottom:252.413333pt;}
.y2a{bottom:257.440000pt;}
.y13a{bottom:257.826667pt;}
.y118{bottom:258.400000pt;}
.y123{bottom:263.293333pt;}
.y69{bottom:265.600000pt;}
.y72{bottom:266.720000pt;}
.yfb{bottom:267.680000pt;}
.y1f{bottom:268.133333pt;}
.y1c{bottom:268.706667pt;}
.y32{bottom:270.173333pt;}
.y65{bottom:271.013333pt;}
.ya1{bottom:271.266667pt;}
.y4b{bottom:273.573333pt;}
.y29{bottom:275.040000pt;}
.y139{bottom:275.426667pt;}
.y96{bottom:275.546667pt;}
.y8b{bottom:276.413333pt;}
.y5{bottom:278.173333pt;}
.y16{bottom:278.400000pt;}
.y10f{bottom:280.800000pt;}
.y38{bottom:281.280000pt;}
.ye9{bottom:281.626667pt;}
.y93{bottom:282.813333pt;}
.y91{bottom:283.653333pt;}
.y8d{bottom:283.680000pt;}
.y8f{bottom:284.320000pt;}
.y7a{bottom:284.346667pt;}
.y1e{bottom:285.733333pt;}
.y1b{bottom:286.306667pt;}
.y31{bottom:287.773333pt;}
.y95{bottom:292.346667pt;}
.y8a{bottom:292.413333pt;}
.y138{bottom:293.026667pt;}
.y8c{bottom:294.240000pt;}
.y44{bottom:294.720000pt;}
.y40{bottom:295.360000pt;}
.y71{bottom:295.520000pt;}
.yfa{bottom:296.506667pt;}
.ye8{bottom:299.226667pt;}
.ybf{bottom:299.453333pt;}
.y11e{bottom:299.840000pt;}
.y92{bottom:300.413333pt;}
.y37{bottom:301.120000pt;}
.y90{bottom:301.253333pt;}
.y8e{bottom:301.920000pt;}
.yf{bottom:307.613333pt;}
.y89{bottom:308.413333pt;}
.y94{bottom:309.146667pt;}
.y43{bottom:317.120000pt;}
.y4{bottom:318.173333pt;}
.y18{bottom:318.240000pt;}
.y9c{bottom:320.573333pt;}
.y113{bottom:322.400000pt;}
.y36{bottom:323.520000pt;}
.y70{bottom:324.320000pt;}
.yf9{bottom:325.306667pt;}
.ya9{bottom:329.253333pt;}
.y137{bottom:330.333333pt;}
.y79{bottom:330.746667pt;}
.ydd{bottom:332.986667pt;}
.y48{bottom:334.493333pt;}
.y17{bottom:335.840000pt;}
.yf1{bottom:337.853333pt;}
.y42{bottom:339.520000pt;}
.ye{bottom:339.613333pt;}
.y109{bottom:341.600000pt;}
.ya0{bottom:341.893333pt;}
.y3f{bottom:344.666667pt;}
.y88{bottom:346.813333pt;}
.y84{bottom:352.640000pt;}
.y82{bottom:353.093333pt;}
.y86{bottom:353.533333pt;}
.yf8{bottom:354.106667pt;}
.ya8{bottom:354.853333pt;}
.y3{bottom:358.173333pt;}
.ydc{bottom:361.786667pt;}
.y87{bottom:362.813333pt;}
.y13d{bottom:364.320000pt;}
.y133{bottom:366.693333pt;}
.y64{bottom:367.013333pt;}
.y3e{bottom:367.066667pt;}
.y54{bottom:368.346667pt;}
.y83{bottom:370.240000pt;}
.y81{bottom:370.693333pt;}
.y85{bottom:371.133333pt;}
.y78{bottom:377.146667pt;}
.y9a{bottom:379.333333pt;}
.ya7{bottom:380.453333pt;}
.y9f{bottom:381.280000pt;}
.y101{bottom:382.906667pt;}
.y10d{bottom:383.200000pt;}
.ycb{bottom:388.453333pt;}
.yd2{bottom:393.413333pt;}
.y132{bottom:395.493333pt;}
.yce{bottom:397.440000pt;}
.yc7{bottom:398.373333pt;}
.y63{bottom:399.040000pt;}
.yd{bottom:403.653333pt;}
.y116{bottom:405.186667pt;}
.yca{bottom:407.653333pt;}
.y100{bottom:411.706667pt;}
.yd1{bottom:412.613333pt;}
.ycd{bottom:419.840000pt;}
.yc6{bottom:420.773333pt;}
.yeb{bottom:423.453333pt;}
.y77{bottom:423.586667pt;}
.y3d{bottom:424.026667pt;}
.yf0{bottom:424.293333pt;}
.yc9{bottom:426.853333pt;}
.yd0{bottom:431.813333pt;}
.yc{bottom:435.653333pt;}
.y2{bottom:439.520000pt;}
.y6f{bottom:439.546667pt;}
.yf7{bottom:440.546667pt;}
.yad{bottom:440.893333pt;}
.ycc{bottom:442.240000pt;}
.y107{bottom:444.000000pt;}
.yc8{bottom:446.080000pt;}
.y3c{bottom:446.426667pt;}
.ydb{bottom:448.226667pt;}
.y9e{bottom:450.333333pt;}
.ycf{bottom:451.040000pt;}
.yef{bottom:453.093333pt;}
.y76{bottom:455.133333pt;}
.ya6{bottom:457.280000pt;}
.y15{bottom:457.466667pt;}
.y49{bottom:457.693333pt;}
.yac{bottom:458.493333pt;}
.y7f{bottom:462.626667pt;}
.y62{bottom:463.040000pt;}
.y111{bottom:465.986667pt;}
.yb2{bottom:467.493333pt;}
.y6e{bottom:468.346667pt;}
.yb5{bottom:469.093333pt;}
.yf6{bottom:469.346667pt;}
.yea{bottom:471.333333pt;}
.yba{bottom:475.973333pt;}
.yda{bottom:477.026667pt;}
.y75{bottom:477.533333pt;}
.yee{bottom:481.893333pt;}
.ya5{bottom:482.880000pt;}
.y105{bottom:483.040000pt;}
.yb1{bottom:486.693333pt;}
.yb4{bottom:488.293333pt;}
.y9d{bottom:489.693333pt;}
.yd9{bottom:493.093333pt;}
.y61{bottom:495.040000pt;}
.yb9{bottom:495.173333pt;}
.y6d{bottom:497.146667pt;}
.yf5{bottom:498.146667pt;}
.y1{bottom:498.240000pt;}
.yb{bottom:499.653333pt;}
.y3b{bottom:506.653333pt;}
.yb3{bottom:507.520000pt;}
.y131{bottom:510.720000pt;}
.y14{bottom:511.173333pt;}
.yd4{bottom:512.226667pt;}
.yd8{bottom:512.293333pt;}
.y4a{bottom:512.640000pt;}
.yd6{bottom:513.053333pt;}
.yb8{bottom:514.373333pt;}
.y80{bottom:518.533333pt;}
.y136{bottom:522.106667pt;}
.y97{bottom:523.066667pt;}
.y10b{bottom:526.813333pt;}
.yf4{bottom:526.946667pt;}
.y60{bottom:527.040000pt;}
.y3a{bottom:529.093333pt;}
.yd3{bottom:531.426667pt;}
.yd7{bottom:531.493333pt;}
.yd5{bottom:532.253333pt;}
.ye0{bottom:548.613333pt;}
.ybb{bottom:561.093333pt;}
.ya{bottom:563.680000pt;}
.y104{bottom:565.760000pt;}
.y47{bottom:600.293333pt;}
.y33{bottom:600.346667pt;}
.y7e{bottom:601.026667pt;}
.y9{bottom:637.573333pt;}
.y7{bottom:649.306667pt;}
.hc{height:42.866250pt;}
.he{height:42.895000pt;}
.h6{height:43.429688pt;}
.h20{height:44.897813pt;}
.h14{height:46.593750pt;}
.h12{height:46.625000pt;}
.hf{height:47.371667pt;}
.h23{height:47.602500pt;}
.h34{height:47.621250pt;}
.h1e{height:49.766250pt;}
.h22{height:51.031250pt;}
.hb{height:51.117500pt;}
.hd{height:51.228625pt;}
.h28{height:53.273750pt;}
.h17{height:54.551250pt;}
.h18{height:54.644500pt;}
.h11{height:55.468750pt;}
.h29{height:55.562500pt;}
.h2b{height:55.579687pt;}
.h2a{height:55.673625pt;}
.h1d{height:57.906250pt;}
.h33{height:58.022062pt;}
.h16{height:62.654562pt;}
.h10{height:64.898438pt;}
.h1b{height:64.971562pt;}
.ha{height:65.008125pt;}
.h13{height:65.009375pt;}
.h26{height:73.773438pt;}
.h27{height:73.884375pt;}
.h2c{height:73.898125pt;}
.h1f{height:75.886000pt;}
.h24{height:77.015312pt;}
.h21{height:77.926250pt;}
.h19{height:83.203125pt;}
.h1a{height:83.314062pt;}
.h15{height:83.343750pt;}
.h8{height:92.632812pt;}
.h9{height:92.743750pt;}
.h25{height:92.789375pt;}
.h3{height:110.937500pt;}
.h4{height:111.048437pt;}
.h5{height:111.125000pt;}
.h7{height:129.460625pt;}
.h1{height:148.351875pt;}
.h2{height:148.463000pt;}
.h1c{height:170.350833pt;}
.h2d{height:179.360000pt;}
.h30{height:201.760000pt;}
.h31{height:272.960000pt;}
.h32{height:277.454687pt;}
.h35{height:332.923437pt;}
.h2e{height:358.560000pt;}
.h2f{height:380.960000pt;}
.h0{height:720.000000pt;}
.w3{width:49.760000pt;}
.w2{width:204.160000pt;}
.w4{width:707.680000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xa0{left:9.853333pt;}
.x4c{left:21.663981pt;}
.x1{left:29.663981pt;}
.x30{left:40.159981pt;}
.x2{left:49.407981pt;}
.x65{left:53.919981pt;}
.x4d{left:56.703981pt;}
.x3{left:59.007981pt;}
.x2f{left:63.295981pt;}
.x46{left:64.671981pt;}
.x59{left:65.695981pt;}
.x3c{left:85.855981pt;}
.x48{left:91.679981pt;}
.x4a{left:103.423981pt;}
.xa2{left:110.240000pt;}
.xa7{left:112.351981pt;}
.x4b{left:114.495981pt;}
.x3e{left:118.079981pt;}
.x7{left:119.999981pt;}
.x6{left:141.666648pt;}
.x6b{left:151.266648pt;}
.x8{left:155.999981pt;}
.xa3{left:159.840000pt;}
.x41{left:167.839981pt;}
.x70{left:170.879981pt;}
.xb{left:174.906648pt;}
.xc{left:177.186648pt;}
.x8d{left:178.239981pt;}
.x6f{left:183.839981pt;}
.x84{left:187.333314pt;}
.x5a{left:192.893314pt;}
.xd{left:193.826648pt;}
.x93{left:199.813314pt;}
.x99{left:202.079981pt;}
.x4e{left:204.666648pt;}
.x42{left:208.026648pt;}
.x6c{left:210.853314pt;}
.x83{left:215.333314pt;}
.x9{left:218.426648pt;}
.x9d{left:223.906648pt;}
.xa4{left:230.333314pt;}
.x40{left:252.986648pt;}
.x9b{left:267.039981pt;}
.x44{left:281.786648pt;}
.x43{left:291.226648pt;}
.x8c{left:308.133314pt;}
.x20{left:311.106648pt;}
.x89{left:312.773314pt;}
.x8e{left:313.893314pt;}
.x8b{left:314.853314pt;}
.x21{left:317.346648pt;}
.x22{left:319.906648pt;}
.x24{left:320.866648pt;}
.x23{left:326.626648pt;}
.x25{left:331.106648pt;}
.x8a{left:332.293314pt;}
.xe{left:334.213314pt;}
.x8f{left:335.333314pt;}
.x2c{left:340.386648pt;}
.x94{left:343.519981pt;}
.x95{left:345.119981pt;}
.x96{left:348.639981pt;}
.xf{left:350.693314pt;}
.x97{left:356.799981pt;}
.x98{left:358.746648pt;}
.x4f{left:364.933314pt;}
.x50{left:365.893314pt;}
.x66{left:370.719981pt;}
.x3f{left:371.706648pt;}
.x5b{left:373.119981pt;}
.x9a{left:375.613314pt;}
.x9c{left:377.986648pt;}
.x71{left:389.373314pt;}
.x72{left:395.613314pt;}
.xa{left:430.266648pt;}
.x9e{left:432.573314pt;}
.x80{left:443.546648pt;}
.x2e{left:450.239981pt;}
.x1a{left:452.026648pt;}
.x85{left:459.359981pt;}
.x18{left:464.346648pt;}
.x19{left:469.626648pt;}
.x77{left:476.386648pt;}
.x10{left:483.813314pt;}
.x11{left:494.693314pt;}
.x36{left:497.573314pt;}
.x5c{left:499.266648pt;}
.x12{left:500.959981pt;}
.xa6{left:503.173314pt;}
.x2a{left:509.253314pt;}
.x76{left:510.146648pt;}
.x2b{left:514.053314pt;}
.x5d{left:518.306648pt;}
.x3a{left:521.919981pt;}
.x49{left:527.813314pt;}
.x51{left:530.533314pt;}
.x13{left:534.559981pt;}
.x5{left:539.999981pt;}
.xa5{left:549.279981pt;}
.x37{left:557.946648pt;}
.x7f{left:569.306648pt;}
.x39{left:573.533314pt;}
.x74{left:580.453314pt;}
.x75{left:587.653314pt;}
.x73{left:605.893314pt;}
.x86{left:649.186648pt;}
.x91{left:652.186648pt;}
.x87{left:659.266648pt;}
.x90{left:660.986648pt;}
.x88{left:667.586648pt;}
.x52{left:672.546648pt;}
.x92{left:675.226648pt;}
.x53{left:678.466648pt;}
.x5e{left:680.066648pt;}
.x5f{left:691.746648pt;}
.x3d{left:698.373314pt;}
.x7c{left:721.026648pt;}
.x7d{left:723.039981pt;}
.x7e{left:724.773314pt;}
.x31{left:744.186648pt;}
.x45{left:768.026648pt;}
.x81{left:773.146648pt;}
.x4{left:790.719981pt;}
.x6e{left:792.866648pt;}
.x78{left:807.386648pt;}
.x60{left:819.546648pt;}
.x3b{left:821.439981pt;}
.x79{left:822.746648pt;}
.x54{left:840.186648pt;}
.x61{left:841.346648pt;}
.x7a{left:844.506648pt;}
.x67{left:847.706648pt;}
.x32{left:849.506648pt;}
.x55{left:851.866648pt;}
.x69{left:863.226648pt;}
.x9f{left:867.360000pt;}
.x47{left:892.226648pt;}
.xa1{left:929.373314pt;}
.x82{left:930.466648pt;}
.x1c{left:941.826648pt;}
.x1b{left:944.546648pt;}
.x33{left:951.933314pt;}
.x1e{left:957.986648pt;}
.x1f{left:960.066648pt;}
.x14{left:964.226648pt;}
.x1d{left:968.386648pt;}
.x62{left:974.333314pt;}
.x56{left:979.746648pt;}
.x15{left:980.706648pt;}
.x63{left:983.453314pt;}
.x2d{left:1019.386648pt;}
.x38{left:1039.039981pt;}
.x34{left:1058.746648pt;}
.x68{left:1092.186648pt;}
.x7b{left:1093.759981pt;}
.x6a{left:1100.253314pt;}
.x26{left:1101.893314pt;}
.x35{left:1104.186648pt;}
.x28{left:1108.133314pt;}
.x27{left:1115.653314pt;}
.x16{left:1119.493314pt;}
.x29{left:1120.453314pt;}
.x17{left:1135.973314pt;}
.x6d{left:1143.813314pt;}
.x58{left:1145.346648pt;}
.x64{left:1164.186648pt;}
.x57{left:1170.786648pt;}
}




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