
    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_8bf2e0090ba41b0ee162e032.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e4db64c47b65cedb09935a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_81d373c7c30d08c5a72a1923.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_a57869f9a3c281435b9c4009.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_84a0ea1a85ceba18e600b2d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_ed52f2819a3c13dfdf607bcb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_8d8f5107232a2af81c6cec5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_bebe81640fc19985b2dfd723.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.066406;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_38255cf9d87329fb049ec597.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f0083d859f8088bcf4d45693.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.183527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183527,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205431,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249879,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v11{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:5.760000px;}
.v5{vertical-align:14.400000px;}
.v8{vertical-align:21.600000px;}
.v1{vertical-align:27.360000px;}
.ve{vertical-align:36.000000px;}
.vc{vertical-align:40.320000px;}
.v13{vertical-align:42.480000px;}
.v12{vertical-align:46.080000px;}
.v9{vertical-align:48.240000px;}
.v6{vertical-align:54.720000px;}
.v7{vertical-align:62.640000px;}
.v10{vertical-align:68.400000px;}
.vd{vertical-align:74.880000px;}
.vf{vertical-align:78.480000px;}
.vb{vertical-align:88.560000px;}
.va{vertical-align:102.960000px;}
.ls38{letter-spacing:-7.644000px;}
.ls3b{letter-spacing:-6.210000px;}
.ls12{letter-spacing:-5.472000px;}
.ls3a{letter-spacing:-5.100000px;}
.ls3d{letter-spacing:-4.536000px;}
.ls37{letter-spacing:-4.476000px;}
.ls3c{letter-spacing:-4.164000px;}
.ls4f{letter-spacing:-1.654976px;}
.ls44{letter-spacing:-1.631461px;}
.lsd{letter-spacing:-1.512000px;}
.ls4e{letter-spacing:-1.103317px;}
.ls31{letter-spacing:-0.792000px;}
.ls40{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.576000px;}
.ls4d{letter-spacing:-0.564793px;}
.ls43{letter-spacing:-0.556768px;}
.ls4b{letter-spacing:-0.538524px;}
.ls42{letter-spacing:-0.530872px;}
.ls2f{letter-spacing:-0.504000px;}
.ls2e{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.189600px;}
.lsc{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.060186px;}
.ls4a{letter-spacing:-0.013135px;}
.ls46{letter-spacing:-0.012948px;}
.ls8{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.117600px;}
.ls9{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.450720px;}
.ls3{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.504000px;}
.ls50{letter-spacing:0.538524px;}
.ls2{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.543820px;}
.ls4c{letter-spacing:0.551659px;}
.ls47{letter-spacing:0.556768px;}
.ls11{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.025280px;}
.ls14{letter-spacing:1.296000px;}
.ls28{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.745280px;}
.ls6{letter-spacing:3.185280px;}
.ls17{letter-spacing:3.543120px;}
.ls18{letter-spacing:4.429440px;}
.ls1b{letter-spacing:6.989040px;}
.ls7{letter-spacing:8.225280px;}
.ls24{letter-spacing:8.635680px;}
.ls30{letter-spacing:8.945280px;}
.ls27{letter-spacing:10.075680px;}
.ls1a{letter-spacing:10.589040px;}
.ls16{letter-spacing:11.520000px;}
.ls26{letter-spacing:14.575680px;}
.ls1f{letter-spacing:16.056000px;}
.ls32{letter-spacing:16.145280px;}
.ls21{letter-spacing:19.656000px;}
.ls49{letter-spacing:19.905686px;}
.ls1d{letter-spacing:20.376000px;}
.ls1c{letter-spacing:22.829040px;}
.ls48{letter-spacing:23.156532px;}
.ls25{letter-spacing:28.296000px;}
.ls10{letter-spacing:31.265280px;}
.ls23{letter-spacing:42.192000px;}
.ls20{letter-spacing:45.072000px;}
.ls1e{letter-spacing:54.432000px;}
.ls22{letter-spacing:63.792000px;}
.ls41{letter-spacing:118.747037px;}
.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;}
}
.wse{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.296000px;}
.ws7{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.576000px;}
.ws66{word-spacing:-18.414720px;}
.ws1c{word-spacing:-18.288000px;}
.ws65{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.568000px;}
.ws1d{word-spacing:-17.496000px;}
.ws6a{word-spacing:-17.280000px;}
.ws1f{word-spacing:-17.208000px;}
.ws6{word-spacing:-16.488000px;}
.ws12{word-spacing:-16.056000px;}
.ws14{word-spacing:-15.984000px;}
.ws15{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.480000px;}
.ws20{word-spacing:-13.836000px;}
.ws21{word-spacing:-13.464000px;}
.ws9{word-spacing:-12.528000px;}
.wsd{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.364000px;}
.ws11{word-spacing:-11.246400px;}
.ws1a{word-spacing:-11.056800px;}
.ws18{word-spacing:-10.976400px;}
.ws94{word-spacing:-9.851049px;}
.ws92{word-spacing:-9.837914px;}
.ws6b{word-spacing:-9.711076px;}
.ws8f{word-spacing:-9.312525px;}
.ws95{word-spacing:-9.286255px;}
.ws90{word-spacing:-6.567366px;}
.ws60{word-spacing:-3.090000px;}
.ws30{word-spacing:-2.928000px;}
.ws5a{word-spacing:-2.886000px;}
.ws5f{word-spacing:-2.880000px;}
.ws5c{word-spacing:-2.850000px;}
.ws5b{word-spacing:-2.772000px;}
.ws34{word-spacing:-2.688000px;}
.ws59{word-spacing:-2.430000px;}
.ws38{word-spacing:-2.352000px;}
.ws39{word-spacing:-2.346000px;}
.ws5d{word-spacing:-2.328000px;}
.ws37{word-spacing:-2.304000px;}
.ws33{word-spacing:-2.220000px;}
.ws31{word-spacing:-2.172000px;}
.ws2e{word-spacing:-2.160000px;}
.ws5e{word-spacing:-2.088000px;}
.ws35{word-spacing:-2.058000px;}
.ws32{word-spacing:-2.034000px;}
.ws36{word-spacing:-2.016000px;}
.ws2f{word-spacing:-1.824000px;}
.ws48{word-spacing:-1.656000px;}
.ws47{word-spacing:-1.536000px;}
.ws46{word-spacing:-1.506000px;}
.ws43{word-spacing:-1.500000px;}
.ws4a{word-spacing:-1.458000px;}
.ws44{word-spacing:-1.398000px;}
.ws4b{word-spacing:-1.380000px;}
.ws42{word-spacing:-1.320000px;}
.ws49{word-spacing:-1.068000px;}
.ws4c{word-spacing:-0.936000px;}
.ws45{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.312000px;}
.ws62{word-spacing:-0.306000px;}
.ws61{word-spacing:-0.300000px;}
.ws4{word-spacing:0.000000px;}
.ws63{word-spacing:0.432000px;}
.ws2d{word-spacing:0.654000px;}
.ws64{word-spacing:1.128000px;}
.ws10{word-spacing:3.600000px;}
.ws3b{word-spacing:10.512000px;}
.ws3a{word-spacing:10.668000px;}
.ws3e{word-spacing:10.716000px;}
.ws41{word-spacing:10.728000px;}
.ws40{word-spacing:10.758000px;}
.ws3c{word-spacing:10.788000px;}
.ws19{word-spacing:10.859760px;}
.ws16{word-spacing:11.016000px;}
.ws3d{word-spacing:11.106000px;}
.ws3f{word-spacing:11.304000px;}
.ws91{word-spacing:11.650507px;}
.ws53{word-spacing:11.928000px;}
.ws52{word-spacing:11.952000px;}
.ws4f{word-spacing:11.994000px;}
.ws57{word-spacing:12.000000px;}
.ws54{word-spacing:12.066000px;}
.ws58{word-spacing:12.138000px;}
.ws55{word-spacing:12.168000px;}
.ws4e{word-spacing:12.252000px;}
.ws56{word-spacing:12.300000px;}
.ws50{word-spacing:12.312000px;}
.ws51{word-spacing:12.744000px;}
.ws93{word-spacing:13.239810px;}
.ws1b{word-spacing:14.472000px;}
.ws4d{word-spacing:19.998000px;}
.ws24{word-spacing:22.968000px;}
.ws28{word-spacing:23.892000px;}
.ws29{word-spacing:24.108000px;}
.ws2a{word-spacing:24.378000px;}
.ws26{word-spacing:24.600000px;}
.ws22{word-spacing:24.624000px;}
.ws25{word-spacing:24.756000px;}
.ws27{word-spacing:24.840000px;}
.ws2b{word-spacing:25.188000px;}
.ws23{word-spacing:25.692000px;}
.ws8e{word-spacing:42.247865px;}
.ws97{word-spacing:44.395393px;}
.ws7e{word-spacing:44.963471px;}
.ws83{word-spacing:47.212793px;}
.ws82{word-spacing:48.125657px;}
.ws84{word-spacing:48.782394px;}
.ws81{word-spacing:52.066077px;}
.ws7f{word-spacing:52.647289px;}
.ws80{word-spacing:55.921121px;}
.ws8a{word-spacing:55.927688px;}
.ws8b{word-spacing:56.433375px;}
.ws87{word-spacing:56.899658px;}
.ws85{word-spacing:57.530125px;}
.ws8c{word-spacing:60.209610px;}
.ws86{word-spacing:60.308121px;}
.ws88{word-spacing:61.411438px;}
.ws89{word-spacing:63.046712px;}
.ws8d{word-spacing:65.791871px;}
.ws7a{word-spacing:69.596045px;}
.ws79{word-spacing:69.660785px;}
.ws7c{word-spacing:69.693155px;}
.ws96{word-spacing:80.515906px;}
.ws67{word-spacing:85.252750px;}
.ws75{word-spacing:87.904660px;}
.ws7b{word-spacing:93.938475px;}
.ws7d{word-spacing:98.826383px;}
.ws78{word-spacing:100.386630px;}
.ws70{word-spacing:101.500166px;}
.ws73{word-spacing:102.037512px;}
.ws74{word-spacing:102.115201px;}
.ws71{word-spacing:102.568385px;}
.ws6e{word-spacing:106.265068px;}
.ws76{word-spacing:106.944843px;}
.ws72{word-spacing:107.469241px;}
.ws77{word-spacing:110.680370px;}
.ws6f{word-spacing:112.331253px;}
.ws6c{word-spacing:113.350916px;}
.ws6d{word-spacing:118.274432px;}
.ws68{word-spacing:132.709948px;}
.ws69{word-spacing:147.154568px;}
._1a{margin-left:-9.672000px;}
._5{margin-left:-8.640000px;}
._6{margin-left:-7.476000px;}
._7{margin-left:-5.988000px;}
._3{margin-left:-4.908000px;}
._2{margin-left:-3.564000px;}
._0{margin-left:-1.872000px;}
._1{width:1.092000px;}
._4{width:2.280000px;}
._8{width:3.432000px;}
._9{width:4.512000px;}
._e{width:5.676000px;}
._d{width:6.912000px;}
._11{width:8.556000px;}
._17{width:10.152000px;}
._14{width:11.520000px;}
._15{width:12.672000px;}
._12{width:14.328000px;}
._b{width:16.044000px;}
._f{width:19.296000px;}
._10{width:21.012000px;}
._a{width:22.104000px;}
._c{width:23.256000px;}
._16{width:24.324000px;}
._1d{width:25.553976px;}
._1e{width:26.910000px;}
._13{width:28.056000px;}
._61{width:29.114714px;}
._18{width:30.456000px;}
._19{width:31.932000px;}
._3b{width:33.654016px;}
._62{width:35.048450px;}
._60{width:36.971287px;}
._65{width:38.094327px;}
._33{width:39.600000px;}
._68{width:41.381325px;}
._3e{width:42.417224px;}
._32{width:45.144000px;}
._31{width:46.296000px;}
._34{width:47.376000px;}
._64{width:48.509531px;}
._43{width:50.069882px;}
._69{width:51.664558px;}
._1b{width:53.334000px;}
._67{width:55.186484px;}
._1c{width:57.623976px;}
._2c{width:58.650000px;}
._2b{width:59.706000px;}
._52{width:60.750254px;}
._44{width:62.102329px;}
._63{width:63.878317px;}
._6b{width:64.896185px;}
._55{width:68.675304px;}
._4d{width:70.646266px;}
._21{width:73.656000px;}
._22{width:75.228000px;}
._23{width:76.524000px;}
._59{width:78.505461px;}
._5a{width:80.332249px;}
._54{width:83.980263px;}
._53{width:85.829727px;}
._5e{width:86.845830px;}
._66{width:87.886142px;}
._4e{width:89.115307px;}
._6a{width:90.711636px;}
._51{width:93.873735px;}
._48{width:95.582884px;}
._5b{width:97.761402px;}
._56{width:99.048502px;}
._49{width:100.444896px;}
._4f{width:103.552440px;}
._4b{width:104.893568px;}
._50{width:108.505089px;}
._47{width:110.686844px;}
._46{width:112.195298px;}
._4a{width:113.826759px;}
._4c{width:115.529434px;}
._5f{width:117.709667px;}
._35{width:118.961228px;}
._28{width:121.800000px;}
._27{width:122.808000px;}
._57{width:123.874007px;}
._2e{width:128.232000px;}
._2d{width:133.056000px;}
._30{width:134.388000px;}
._2f{width:135.768000px;}
._5d{width:137.354610px;}
._58{width:138.543420px;}
._5c{width:143.584733px;}
._3c{width:148.769640px;}
._3f{width:150.229983px;}
._38{width:154.475476px;}
._45{width:169.489476px;}
._40{width:184.455989px;}
._26{width:187.836000px;}
._25{width:192.924000px;}
._24{width:194.544000px;}
._1f{width:200.232000px;}
._20{width:201.312000px;}
._29{width:218.640000px;}
._2a{width:219.816000px;}
._42{width:257.248737px;}
._3d{width:263.999744px;}
._41{width:290.420809px;}
._39{width:321.584693px;}
._36{width:340.869916px;}
._3a{width:353.473110px;}
._37{width:372.732604px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(63,63,63);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:26.269464px;}
.fs9{font-size:32.836829px;}
.fs6{font-size:38.844304px;}
.fs7{font-size:39.404195px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs5{font-size:57.898853px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y172{bottom:2.023179px;}
.y1a9{bottom:2.427810px;}
.y1e5{bottom:2.462803px;}
.y1e7{bottom:2.462819px;}
.y1a7{bottom:2.832480px;}
.y1ae{bottom:3.283694px;}
.y156{bottom:3.611236px;}
.y154{bottom:4.199132px;}
.y1e3{bottom:14.770866px;}
.y1a6{bottom:15.375792px;}
.y153{bottom:22.886378px;}
.y1e2{bottom:27.495138px;}
.y1a5{bottom:27.919265px;}
.y1e1{bottom:40.239933px;}
.y1a4{bottom:40.482970px;}
.y152{bottom:41.544012px;}
.y10e{bottom:44.790000px;}
.y1e0{bottom:52.964205px;}
.y1a3{bottom:53.026443px;}
.y151{bottom:60.231740px;}
.y1a2{bottom:65.569916px;}
.y1df{bottom:65.708999px;}
.y10d{bottom:75.870000px;}
.y1a1{bottom:78.133621px;}
.y1de{bottom:78.433270px;}
.y150{bottom:78.919467px;}
.y1a0{bottom:90.678712px;}
.y1dd{bottom:91.155079px;}
.yf3{bottom:91.476000px;}
.y14f{bottom:97.607195px;}
.ycb{bottom:99.576000px;}
.y120{bottom:100.656000px;}
.ye8{bottom:101.916000px;}
.y19f{bottom:103.222185px;}
.y79{bottom:103.536000px;}
.y1dc{bottom:103.903978px;}
.y10c{bottom:106.950000px;}
.y20{bottom:107.676000px;}
.y84{bottom:110.556000px;}
.y3f{bottom:111.096000px;}
.y19e{bottom:115.781844px;}
.y14e{bottom:116.294922px;}
.y1db{bottom:116.628249px;}
.y5c{bottom:117.576000px;}
.y16d{bottom:121.356000px;}
.yf2{bottom:122.616000px;}
.y19d{bottom:128.325317px;}
.y1da{bottom:129.352521px;}
.y11f{bottom:131.796000px;}
.ye7{bottom:132.876000px;}
.y78{bottom:134.496000px;}
.y14d{bottom:134.948945px;}
.y10b{bottom:138.030000px;}
.y12c{bottom:138.816000px;}
.y19c{bottom:140.868790px;}
.y83{bottom:141.696000px;}
.y1f{bottom:142.056000px;}
.y1d9{bottom:142.093211px;}
.yca{bottom:142.596000px;}
.y118{bottom:143.676000px;}
.y5b{bottom:148.716000px;}
.y19b{bottom:153.436541px;}
.yf1{bottom:153.570000px;}
.y14c{bottom:153.642691px;}
.y1d8{bottom:154.817482px;}
.y16c{bottom:155.730000px;}
.y97{bottom:160.590000px;}
.yb2{bottom:162.750000px;}
.y161{bottom:163.470000px;}
.ye6{bottom:164.010000px;}
.y77{bottom:165.630000px;}
.y19a{bottom:165.980014px;}
.y1d7{bottom:167.541753px;}
.y12b{bottom:169.770000px;}
.y14b{bottom:172.324400px;}
.y82{bottom:172.650000px;}
.y117{bottom:174.810000px;}
.y1e{bottom:176.430000px;}
.y199{bottom:178.539672px;}
.y5a{bottom:179.670000px;}
.y1d6{bottom:180.290652px;}
.y10a{bottom:181.050000px;}
.yf0{bottom:184.710000px;}
.y3e{bottom:185.070000px;}
.yc9{bottom:185.610000px;}
.y16b{bottom:189.930000px;}
.y14a{bottom:191.018146px;}
.y198{bottom:191.083145px;}
.y1d5{bottom:193.014924px;}
.yb1{bottom:193.710000px;}
.ye5{bottom:194.970000px;}
.y76{bottom:196.590000px;}
.y159{bottom:196.770000px;}
.y160{bottom:197.670000px;}
.y12a{bottom:200.910000px;}
.y197{bottom:203.626619px;}
.y81{bottom:203.790000px;}
.y1d4{bottom:205.755614px;}
.y149{bottom:209.699855px;}
.y1d{bottom:210.810000px;}
.y109{bottom:212.112000px;}
.yef{bottom:215.670000px;}
.y196{bottom:216.194369px;}
.y3d{bottom:216.210000px;}
.y116{bottom:217.830000px;}
.y1d3{bottom:218.479885px;}
.y16a{bottom:224.310000px;}
.yb0{bottom:224.850000px;}
.ye4{bottom:226.110000px;}
.yc8{bottom:227.550000px;}
.y75{bottom:227.730000px;}
.y148{bottom:228.357489px;}
.y195{bottom:228.737843px;}
.y158{bottom:231.150000px;}
.y1d2{bottom:231.204156px;}
.y15f{bottom:232.050000px;}
.y96{bottom:234.750000px;}
.y11e{bottom:236.910000px;}
.y194{bottom:241.281315px;}
.y59{bottom:241.770000px;}
.y108{bottom:243.174000px;}
.y129{bottom:243.930000px;}
.y1d1{bottom:243.953055px;}
.y1c{bottom:244.650000px;}
.y80{bottom:246.810000px;}
.y147{bottom:247.051235px;}
.y3c{bottom:247.170000px;}
.y115{bottom:248.790000px;}
.ydb{bottom:253.830000px;}
.y193{bottom:253.840974px;}
.y1d0{bottom:256.677326px;}
.ye3{bottom:257.070000px;}
.y74{bottom:258.690000px;}
.y157{bottom:261.210000px;}
.y95{bottom:265.710000px;}
.y146{bottom:265.732944px;}
.y192{bottom:266.384447px;}
.y15e{bottom:266.430000px;}
.yaf{bottom:267.870000px;}
.y1cf{bottom:269.401598px;}
.yc7{bottom:272.370000px;}
.y58{bottom:272.910000px;}
.y107{bottom:274.236000px;}
.y7f{bottom:277.770000px;}
.y191{bottom:278.927920px;}
.y1b{bottom:279.030000px;}
.y114{bottom:279.930000px;}
.y1ce{bottom:282.142288px;}
.y145{bottom:284.426690px;}
.yda{bottom:284.790000px;}
.y128{bottom:286.950000px;}
.ye2{bottom:288.210000px;}
.y73{bottom:289.830000px;}
.y3b{bottom:290.190000px;}
.y190{bottom:291.495671px;}
.y169{bottom:293.070000px;}
.y1cd{bottom:294.866560px;}
.y94{bottom:296.850000px;}
.y11d{bottom:299.010000px;}
.y15d{bottom:300.810000px;}
.y144{bottom:303.108399px;}
.y57{bottom:303.870000px;}
.y18f{bottom:304.039144px;}
.y106{bottom:305.298000px;}
.y1cc{bottom:307.590831px;}
.y7e{bottom:308.910000px;}
.yae{bottom:310.890000px;}
.yc5{bottom:311.430000px;}
.yd9{bottom:315.930000px;}
.y18e{bottom:316.582618px;}
.y127{bottom:317.910000px;}
.ye1{bottom:319.170000px;}
.y1cb{bottom:320.339730px;}
.y72{bottom:320.790000px;}
.y3a{bottom:321.330000px;}
.y143{bottom:321.802145px;}
.y1a{bottom:322.230000px;}
.yc4{bottom:323.490000px;}
.y168{bottom:327.270000px;}
.y93{bottom:327.810000px;}
.y18d{bottom:329.142276px;}
.y1ca{bottom:333.064001px;}
.yc6{bottom:333.570000px;}
.y56{bottom:335.010000px;}
.y105{bottom:336.360000px;}
.y7d{bottom:339.915000px;}
.y142{bottom:340.459779px;}
.y18c{bottom:341.685749px;}
.yad{bottom:342.075000px;}
.y1c9{bottom:345.804691px;}
.yd8{bottom:346.935000px;}
.ye0{bottom:350.355000px;}
.y71{bottom:351.975000px;}
.y39{bottom:352.335000px;}
.y19{bottom:353.415000px;}
.y113{bottom:353.955000px;}
.y18b{bottom:354.229222px;}
.y1c8{bottom:358.528963px;}
.y92{bottom:358.995000px;}
.y141{bottom:359.141488px;}
.y126{bottom:361.155000px;}
.y167{bottom:361.695000px;}
.y18a{bottom:366.796973px;}
.y15c{bottom:369.435000px;}
.y7c{bottom:371.055000px;}
.y1c7{bottom:371.253234px;}
.y11c{bottom:373.035000px;}
.yc3{bottom:375.195000px;}
.y55{bottom:377.715000px;}
.y140{bottom:377.835234px;}
.yd7{bottom:378.075000px;}
.y189{bottom:379.340446px;}
.y104{bottom:379.380000px;}
.ydf{bottom:381.315000px;}
.y70{bottom:382.935000px;}
.y38{bottom:383.475000px;}
.y1c6{bottom:384.002133px;}
.y18{bottom:384.375000px;}
.yac{bottom:385.095000px;}
.y91{bottom:389.955000px;}
.y188{bottom:391.900104px;}
.y125{bottom:392.115000px;}
.y166{bottom:396.075000px;}
.y13f{bottom:396.516943px;}
.y1c5{bottom:396.726404px;}
.yc2{bottom:400.935000px;}
.y7b{bottom:402.015000px;}
.y15b{bottom:403.815000px;}
.y11b{bottom:404.175000px;}
.y187{bottom:404.443577px;}
.yd6{bottom:409.035000px;}
.y1c4{bottom:409.450675px;}
.y103{bottom:410.430000px;}
.y6f{bottom:414.075000px;}
.y37{bottom:414.435000px;}
.y13e{bottom:415.210689px;}
.y17{bottom:415.515000px;}
.yab{bottom:416.055000px;}
.y186{bottom:416.987051px;}
.y54{bottom:421.095000px;}
.y1c3{bottom:422.191365px;}
.yde{bottom:422.895000px;}
.y185{bottom:429.554802px;}
.yc1{bottom:430.095000px;}
.y165{bottom:430.455000px;}
.y16e{bottom:431.535000px;}
.y16f{bottom:432.030830px;}
.y7a{bottom:433.155000px;}
.y13d{bottom:433.868323px;}
.y15a{bottom:433.875000px;}
.y1c2{bottom:434.915637px;}
.y11a{bottom:435.135000px;}
.yd5{bottom:440.175000px;}
.y1aa{bottom:441.075000px;}
.y102{bottom:441.480000px;}
.y1ab{bottom:442.079959px;}
.y184{bottom:442.098275px;}
.y1e6{bottom:442.484657px;}
.y6e{bottom:445.035000px;}
.y36{bottom:445.575000px;}
.y16{bottom:446.475000px;}
.yaa{bottom:447.195000px;}
.y1c1{bottom:447.639908px;}
.y90{bottom:452.055000px;}
.y183{bottom:454.641748px;}
.y1c0{bottom:460.388807px;}
.y53{bottom:464.115000px;}
.ydd{bottom:464.295000px;}
.y164{bottom:464.655000px;}
.y124{bottom:466.275000px;}
.y182{bottom:467.201406px;}
.yd4{bottom:471.135000px;}
.y1bf{bottom:473.113079px;}
.yc0{bottom:473.115000px;}
.y6d{bottom:476.175000px;}
.y35{bottom:476.535000px;}
.y15{bottom:477.615000px;}
.ya9{bottom:478.155000px;}
.y181{bottom:479.744879px;}
.y8f{bottom:483.195000px;}
.y101{bottom:484.140000px;}
.y1be{bottom:485.837350px;}
.y112{bottom:490.215000px;}
.y180{bottom:492.288352px;}
.y52{bottom:495.255000px;}
.y1bd{bottom:498.578040px;}
.y163{bottom:499.035000px;}
.yd3{bottom:502.275000px;}
.ybf{bottom:504.075000px;}
.y17f{bottom:504.856103px;}
.y6c{bottom:507.135000px;}
.y34{bottom:507.675000px;}
.y14{bottom:508.575000px;}
.ya8{bottom:509.295000px;}
.y1bc{bottom:511.302311px;}
.y8e{bottom:514.155000px;}
.y17e{bottom:517.399576px;}
.yee{bottom:518.835000px;}
.y111{bottom:521.355000px;}
.y1bb{bottom:524.051210px;}
.y51{bottom:526.215000px;}
.y162{bottom:528.915000px;}
.y17d{bottom:529.943049px;}
.yd2{bottom:533.235000px;}
.y1ba{bottom:536.775481px;}
.y6b{bottom:538.275000px;}
.y33{bottom:538.635000px;}
.y13{bottom:539.715000px;}
.ya7{bottom:540.255000px;}
.y17c{bottom:542.502708px;}
.y138{bottom:542.595000px;}
.y8d{bottom:545.295000px;}
.ybe{bottom:547.095000px;}
.y1b9{bottom:549.499753px;}
.yed{bottom:550.155000px;}
.y110{bottom:552.315000px;}
.y17b{bottom:555.046181px;}
.y50{bottom:557.355000px;}
.y1b8{bottom:562.240443px;}
.yd1{bottom:564.375000px;}
.y17a{bottom:567.613932px;}
.y100{bottom:569.130000px;}
.y6a{bottom:569.235000px;}
.y32{bottom:569.775000px;}
.y12{bottom:570.675000px;}
.y119{bottom:571.395000px;}
.y1b7{bottom:574.964714px;}
.y8c{bottom:576.255000px;}
.ybd{bottom:578.235000px;}
.y179{bottom:580.157405px;}
.yec{bottom:581.295000px;}
.ya6{bottom:583.275000px;}
.y137{bottom:585.075000px;}
.y1b6{bottom:587.688986px;}
.y4f{bottom:588.315000px;}
.y13b{bottom:590.115000px;}
.y178{bottom:592.700878px;}
.yd0{bottom:595.335000px;}
.y69{bottom:600.375000px;}
.y1b5{bottom:600.437885px;}
.y11{bottom:601.815000px;}
.y123{bottom:602.355000px;}
.y177{bottom:605.260537px;}
.y8b{bottom:607.425000px;}
.yff{bottom:610.530000px;}
.yeb{bottom:612.285000px;}
.y31{bottom:612.825000px;}
.y1b4{bottom:613.162156px;}
.ya5{bottom:614.445000px;}
.y176{bottom:617.804010px;}
.y4e{bottom:619.305000px;}
.ybc{bottom:621.105000px;}
.y13a{bottom:624.525000px;}
.y1b3{bottom:625.886428px;}
.ycf{bottom:626.505000px;}
.y136{bottom:628.485000px;}
.y175{bottom:630.347483px;}
.y68{bottom:631.365000px;}
.y10{bottom:632.805000px;}
.ybb{bottom:633.165000px;}
.y1b2{bottom:638.627118px;}
.y174{bottom:642.915234px;}
.yea{bottom:643.425000px;}
.y30{bottom:643.785000px;}
.ya4{bottom:645.405000px;}
.y8a{bottom:650.085000px;}
.y4d{bottom:650.445000px;}
.y1b1{bottom:651.351389px;}
.yfe{bottom:651.930000px;}
.y173{bottom:655.458707px;}
.yce{bottom:657.465000px;}
.y139{bottom:658.905000px;}
.y135{bottom:659.625000px;}
.y67{bottom:662.505000px;}
.yf{bottom:663.945000px;}
.y1b0{bottom:664.100288px;}
.y170{bottom:667.597552px;}
.ye9{bottom:674.385000px;}
.y2f{bottom:674.925000px;}
.ya3{bottom:676.545000px;}
.y1af{bottom:676.824559px;}
.y4c{bottom:681.405000px;}
.yba{bottom:688.605000px;}
.y13c{bottom:689.039919px;}
.y1ac{bottom:690.369751px;}
.y89{bottom:693.105000px;}
.yfd{bottom:693.330000px;}
.y66{bottom:693.465000px;}
.ye{bottom:694.905000px;}
.y10f{bottom:700.485000px;}
.y134{bottom:702.645000px;}
.ydc{bottom:705.525000px;}
.y2e{bottom:705.885000px;}
.y122{bottom:707.505000px;}
.y4b{bottom:712.545000px;}
.ya2{bottom:719.565000px;}
.y65{bottom:724.605000px;}
.yd{bottom:729.105000px;}
.ycd{bottom:731.625000px;}
.y133{bottom:733.605000px;}
.yfc{bottom:734.730000px;}
.y88{bottom:736.485000px;}
.y2d{bottom:737.025000px;}
.yb9{bottom:750.705000px;}
.y4a{bottom:755.565000px;}
.ya1{bottom:762.585000px;}
.yc{bottom:763.485000px;}
.y87{bottom:767.625000px;}
.yfb{bottom:776.130000px;}
.y132{bottom:776.805000px;}
.y2c{bottom:780.045000px;}
.yb8{bottom:781.665000px;}
.y49{bottom:786.705000px;}
.ycc{bottom:793.725000px;}
.yb{bottom:798.045000px;}
.y86{bottom:798.585000px;}
.ya0{bottom:805.605000px;}
.y2b{bottom:811.185000px;}
.y121{bottom:812.805000px;}
.yfa{bottom:817.530000px;}
.y48{bottom:817.665000px;}
.y131{bottom:819.825000px;}
.yb7{bottom:824.685000px;}
.y85{bottom:829.725000px;}
.ya{bottom:832.065000px;}
.y9f{bottom:836.745000px;}
.y2a{bottom:842.145000px;}
.y47{bottom:848.805000px;}
.yb6{bottom:855.825000px;}
.y64{bottom:860.685000px;}
.yf9{bottom:860.730000px;}
.y130{bottom:862.845000px;}
.y9e{bottom:867.705000px;}
.y29{bottom:873.150000px;}
.y9{bottom:873.690000px;}
.y46{bottom:879.810000px;}
.yb5{bottom:886.830000px;}
.y63{bottom:891.870000px;}
.y9d{bottom:898.890000px;}
.yf8{bottom:901.770000px;}
.y28{bottom:904.290000px;}
.y12f{bottom:905.550000px;}
.y8{bottom:908.070000px;}
.y45{bottom:910.950000px;}
.yb4{bottom:917.970000px;}
.y62{bottom:922.830000px;}
.y9c{bottom:929.850000px;}
.y27{bottom:935.250000px;}
.y44{bottom:941.910000px;}
.y7{bottom:942.270000px;}
.yf7{bottom:942.810000px;}
.y12e{bottom:948.570000px;}
.yb3{bottom:948.930000px;}
.y61{bottom:953.970000px;}
.y9b{bottom:960.990000px;}
.y26{bottom:966.390000px;}
.y6{bottom:969.810000px;}
.y43{bottom:972.870000px;}
.yf6{bottom:983.850000px;}
.y60{bottom:984.930000px;}
.y12d{bottom:991.590000px;}
.y9a{bottom:991.950000px;}
.y25{bottom:997.350000px;}
.y5{bottom:998.790000px;}
.y42{bottom:1004.010000px;}
.y5f{bottom:1016.070000px;}
.y99{bottom:1023.090000px;}
.yf5{bottom:1024.890000px;}
.y24{bottom:1028.490000px;}
.y4{bottom:1034.970000px;}
.y5e{bottom:1047.030000px;}
.y98{bottom:1054.050000px;}
.yf4{bottom:1065.930000px;}
.y3{bottom:1066.110000px;}
.y23{bottom:1071.150000px;}
.y5d{bottom:1078.170000px;}
.y2{bottom:1097.070000px;}
.y171{bottom:1097.605200px;}
.y22{bottom:1106.070000px;}
.y41{bottom:1109.130000px;}
.y1a8{bottom:1109.760231px;}
.y1ad{bottom:1129.165987px;}
.y155{bottom:1137.978714px;}
.y1{bottom:1139.940000px;}
.y40{bottom:1140.300000px;}
.y21{bottom:1140.480000px;}
.y1e4{bottom:1143.958979px;}
.h24{height:11.492931px;}
.h1a{height:11.754489px;}
.h1d{height:12.138886px;}
.h23{height:12.313852px;}
.h20{height:14.386677px;}
.h17{height:18.085950px;}
.h25{height:32.227552px;}
.h1c{height:38.104593px;}
.h1b{height:38.123560px;}
.h22{height:38.653822px;}
.h21{height:38.673063px;}
.h19{height:39.147775px;}
.h1f{height:39.712041px;}
.h10{height:43.082578px;}
.h5{height:43.246406px;}
.h6{height:43.304062px;}
.h16{height:56.824558px;}
.h15{height:58.351187px;}
.h13{height:59.343750px;}
.hc{height:60.679688px;}
.h8{height:64.546875px;}
.h7{height:69.086250px;}
.h3{height:70.606406px;}
.h9{height:70.628906px;}
.h4{height:70.664062px;}
.h2{height:72.562500px;}
.h12{height:106.664062px;}
.ha{height:115.399687px;}
.he{height:115.579688px;}
.hb{height:118.904062px;}
.h11{height:121.562578px;}
.hd{height:163.639687px;}
.hf{height:163.819688px;}
.h14{height:467.028842px;}
.h18{height:689.874879px;}
.h1e{height:714.195319px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:720.084018px;}
.w2{width:720.578586px;}
.w9{width:722.061959px;}
.w6{width:722.107199px;}
.w5{width:722.404240px;}
.w4{width:722.404245px;}
.w8{width:722.472222px;}
.w7{width:722.472227px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.483690px;}
.x14{left:2.967380px;}
.x13{left:5.440196px;}
.x1b{left:6.534908px;}
.x1e{left:9.025776px;}
.x1c{left:13.366856px;}
.x1f{left:18.482326px;}
.x1a{left:41.303581px;}
.x1{left:84.960000px;}
.xc{left:86.220000px;}
.x17{left:138.096000px;}
.xd{left:143.136000px;}
.xe{left:196.770000px;}
.xf{left:256.710000px;}
.x6{left:270.570000px;}
.x10{left:300.495000px;}
.x7{left:335.955000px;}
.x11{left:361.695000px;}
.x9{left:385.275000px;}
.x2{left:392.295000px;}
.x8{left:394.275000px;}
.x4{left:399.495000px;}
.x3{left:448.455000px;}
.x5{left:463.575000px;}
.x1d{left:526.268295px;}
.xa{left:547.845000px;}
.xb{left:601.665000px;}
.x16{left:758.310000px;}
.x12{left:806.010000px;}
.x18{left:807.810000px;}
.x19{left:860.940000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v11{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:5.120000pt;}
.v5{vertical-align:12.800000pt;}
.v8{vertical-align:19.200000pt;}
.v1{vertical-align:24.320000pt;}
.ve{vertical-align:32.000000pt;}
.vc{vertical-align:35.840000pt;}
.v13{vertical-align:37.760000pt;}
.v12{vertical-align:40.960000pt;}
.v9{vertical-align:42.880000pt;}
.v6{vertical-align:48.640000pt;}
.v7{vertical-align:55.680000pt;}
.v10{vertical-align:60.800000pt;}
.vd{vertical-align:66.560000pt;}
.vf{vertical-align:69.760000pt;}
.vb{vertical-align:78.720000pt;}
.va{vertical-align:91.520000pt;}
.ls38{letter-spacing:-6.794667pt;}
.ls3b{letter-spacing:-5.520000pt;}
.ls12{letter-spacing:-4.864000pt;}
.ls3a{letter-spacing:-4.533333pt;}
.ls3d{letter-spacing:-4.032000pt;}
.ls37{letter-spacing:-3.978667pt;}
.ls3c{letter-spacing:-3.701333pt;}
.ls4f{letter-spacing:-1.471090pt;}
.ls44{letter-spacing:-1.450187pt;}
.lsd{letter-spacing:-1.344000pt;}
.ls4e{letter-spacing:-0.980727pt;}
.ls31{letter-spacing:-0.704000pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.512000pt;}
.ls4d{letter-spacing:-0.502039pt;}
.ls43{letter-spacing:-0.494905pt;}
.ls4b{letter-spacing:-0.478688pt;}
.ls42{letter-spacing:-0.471886pt;}
.ls2f{letter-spacing:-0.448000pt;}
.ls2e{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.168533pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.053499pt;}
.ls4a{letter-spacing:-0.011675pt;}
.ls46{letter-spacing:-0.011509pt;}
.ls8{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.104533pt;}
.ls9{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.400640pt;}
.ls3{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.448000pt;}
.ls50{letter-spacing:0.478688pt;}
.ls2{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.483396pt;}
.ls4c{letter-spacing:0.490363pt;}
.ls47{letter-spacing:0.494905pt;}
.ls11{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.911360pt;}
.ls14{letter-spacing:1.152000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.551360pt;}
.ls6{letter-spacing:2.831360pt;}
.ls17{letter-spacing:3.149440pt;}
.ls18{letter-spacing:3.937280pt;}
.ls1b{letter-spacing:6.212480pt;}
.ls7{letter-spacing:7.311360pt;}
.ls24{letter-spacing:7.676160pt;}
.ls30{letter-spacing:7.951360pt;}
.ls27{letter-spacing:8.956160pt;}
.ls1a{letter-spacing:9.412480pt;}
.ls16{letter-spacing:10.240000pt;}
.ls26{letter-spacing:12.956160pt;}
.ls1f{letter-spacing:14.272000pt;}
.ls32{letter-spacing:14.351360pt;}
.ls21{letter-spacing:17.472000pt;}
.ls49{letter-spacing:17.693943pt;}
.ls1d{letter-spacing:18.112000pt;}
.ls1c{letter-spacing:20.292480pt;}
.ls48{letter-spacing:20.583584pt;}
.ls25{letter-spacing:25.152000pt;}
.ls10{letter-spacing:27.791360pt;}
.ls23{letter-spacing:37.504000pt;}
.ls20{letter-spacing:40.064000pt;}
.ls1e{letter-spacing:48.384000pt;}
.ls22{letter-spacing:56.704000pt;}
.ls41{letter-spacing:105.552922pt;}
.wse{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.152000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws66{word-spacing:-16.368640pt;}
.ws1c{word-spacing:-16.256000pt;}
.ws65{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.616000pt;}
.ws1d{word-spacing:-15.552000pt;}
.ws6a{word-spacing:-15.360000pt;}
.ws1f{word-spacing:-15.296000pt;}
.ws6{word-spacing:-14.656000pt;}
.ws12{word-spacing:-14.272000pt;}
.ws14{word-spacing:-14.208000pt;}
.ws15{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.760000pt;}
.ws20{word-spacing:-12.298667pt;}
.ws21{word-spacing:-11.968000pt;}
.ws9{word-spacing:-11.136000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.101333pt;}
.ws11{word-spacing:-9.996800pt;}
.ws1a{word-spacing:-9.828267pt;}
.ws18{word-spacing:-9.756800pt;}
.ws94{word-spacing:-8.756488pt;}
.ws92{word-spacing:-8.744813pt;}
.ws6b{word-spacing:-8.632068pt;}
.ws8f{word-spacing:-8.277800pt;}
.ws95{word-spacing:-8.254449pt;}
.ws90{word-spacing:-5.837659pt;}
.ws60{word-spacing:-2.746667pt;}
.ws30{word-spacing:-2.602667pt;}
.ws5a{word-spacing:-2.565333pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws5c{word-spacing:-2.533333pt;}
.ws5b{word-spacing:-2.464000pt;}
.ws34{word-spacing:-2.389333pt;}
.ws59{word-spacing:-2.160000pt;}
.ws38{word-spacing:-2.090667pt;}
.ws39{word-spacing:-2.085333pt;}
.ws5d{word-spacing:-2.069333pt;}
.ws37{word-spacing:-2.048000pt;}
.ws33{word-spacing:-1.973333pt;}
.ws31{word-spacing:-1.930667pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws5e{word-spacing:-1.856000pt;}
.ws35{word-spacing:-1.829333pt;}
.ws32{word-spacing:-1.808000pt;}
.ws36{word-spacing:-1.792000pt;}
.ws2f{word-spacing:-1.621333pt;}
.ws48{word-spacing:-1.472000pt;}
.ws47{word-spacing:-1.365333pt;}
.ws46{word-spacing:-1.338667pt;}
.ws43{word-spacing:-1.333333pt;}
.ws4a{word-spacing:-1.296000pt;}
.ws44{word-spacing:-1.242667pt;}
.ws4b{word-spacing:-1.226667pt;}
.ws42{word-spacing:-1.173333pt;}
.ws49{word-spacing:-0.949333pt;}
.ws4c{word-spacing:-0.832000pt;}
.ws45{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.277333pt;}
.ws62{word-spacing:-0.272000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws4{word-spacing:0.000000pt;}
.ws63{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.581333pt;}
.ws64{word-spacing:1.002667pt;}
.ws10{word-spacing:3.200000pt;}
.ws3b{word-spacing:9.344000pt;}
.ws3a{word-spacing:9.482667pt;}
.ws3e{word-spacing:9.525333pt;}
.ws41{word-spacing:9.536000pt;}
.ws40{word-spacing:9.562667pt;}
.ws3c{word-spacing:9.589333pt;}
.ws19{word-spacing:9.653120pt;}
.ws16{word-spacing:9.792000pt;}
.ws3d{word-spacing:9.872000pt;}
.ws3f{word-spacing:10.048000pt;}
.ws91{word-spacing:10.356006pt;}
.ws53{word-spacing:10.602667pt;}
.ws52{word-spacing:10.624000pt;}
.ws4f{word-spacing:10.661333pt;}
.ws57{word-spacing:10.666667pt;}
.ws54{word-spacing:10.725333pt;}
.ws58{word-spacing:10.789333pt;}
.ws55{word-spacing:10.816000pt;}
.ws4e{word-spacing:10.890667pt;}
.ws56{word-spacing:10.933333pt;}
.ws50{word-spacing:10.944000pt;}
.ws51{word-spacing:11.328000pt;}
.ws93{word-spacing:11.768720pt;}
.ws1b{word-spacing:12.864000pt;}
.ws4d{word-spacing:17.776000pt;}
.ws24{word-spacing:20.416000pt;}
.ws28{word-spacing:21.237333pt;}
.ws29{word-spacing:21.429333pt;}
.ws2a{word-spacing:21.669333pt;}
.ws26{word-spacing:21.866667pt;}
.ws22{word-spacing:21.888000pt;}
.ws25{word-spacing:22.005333pt;}
.ws27{word-spacing:22.080000pt;}
.ws2b{word-spacing:22.389333pt;}
.ws23{word-spacing:22.837333pt;}
.ws8e{word-spacing:37.553658pt;}
.ws97{word-spacing:39.462572pt;}
.ws7e{word-spacing:39.967529pt;}
.ws83{word-spacing:41.966927pt;}
.ws82{word-spacing:42.778362pt;}
.ws84{word-spacing:43.362128pt;}
.ws81{word-spacing:46.280957pt;}
.ws7f{word-spacing:46.797590pt;}
.ws80{word-spacing:49.707663pt;}
.ws8a{word-spacing:49.713500pt;}
.ws8b{word-spacing:50.163000pt;}
.ws87{word-spacing:50.577474pt;}
.ws85{word-spacing:51.137889pt;}
.ws8c{word-spacing:53.519654pt;}
.ws86{word-spacing:53.607219pt;}
.ws88{word-spacing:54.587945pt;}
.ws89{word-spacing:56.041522pt;}
.ws8d{word-spacing:58.481663pt;}
.ws7a{word-spacing:61.863151pt;}
.ws79{word-spacing:61.920698pt;}
.ws7c{word-spacing:61.949471pt;}
.ws96{word-spacing:71.569694pt;}
.ws67{word-spacing:75.780222pt;}
.ws75{word-spacing:78.137475pt;}
.ws7b{word-spacing:83.500867pt;}
.ws7d{word-spacing:87.845674pt;}
.ws78{word-spacing:89.232560pt;}
.ws70{word-spacing:90.222370pt;}
.ws73{word-spacing:90.700011pt;}
.ws74{word-spacing:90.769068pt;}
.ws71{word-spacing:91.171897pt;}
.ws6e{word-spacing:94.457838pt;}
.ws76{word-spacing:95.062083pt;}
.ws72{word-spacing:95.528214pt;}
.ws77{word-spacing:98.382551pt;}
.ws6f{word-spacing:99.850003pt;}
.ws6c{word-spacing:100.756370pt;}
.ws6d{word-spacing:105.132828pt;}
.ws68{word-spacing:117.964398pt;}
.ws69{word-spacing:130.804061pt;}
._1a{margin-left:-8.597333pt;}
._5{margin-left:-7.680000pt;}
._6{margin-left:-6.645333pt;}
._7{margin-left:-5.322667pt;}
._3{margin-left:-4.362667pt;}
._2{margin-left:-3.168000pt;}
._0{margin-left:-1.664000pt;}
._1{width:0.970667pt;}
._4{width:2.026667pt;}
._8{width:3.050667pt;}
._9{width:4.010667pt;}
._e{width:5.045333pt;}
._d{width:6.144000pt;}
._11{width:7.605333pt;}
._17{width:9.024000pt;}
._14{width:10.240000pt;}
._15{width:11.264000pt;}
._12{width:12.736000pt;}
._b{width:14.261333pt;}
._f{width:17.152000pt;}
._10{width:18.677333pt;}
._a{width:19.648000pt;}
._c{width:20.672000pt;}
._16{width:21.621333pt;}
._1d{width:22.714645pt;}
._1e{width:23.920000pt;}
._13{width:24.938667pt;}
._61{width:25.879746pt;}
._18{width:27.072000pt;}
._19{width:28.384000pt;}
._3b{width:29.914681pt;}
._62{width:31.154178pt;}
._60{width:32.863366pt;}
._65{width:33.861624pt;}
._33{width:35.200000pt;}
._68{width:36.783400pt;}
._3e{width:37.704199pt;}
._32{width:40.128000pt;}
._31{width:41.152000pt;}
._34{width:42.112000pt;}
._64{width:43.119583pt;}
._43{width:44.506562pt;}
._69{width:45.924052pt;}
._1b{width:47.408000pt;}
._67{width:49.054653pt;}
._1c{width:51.221312pt;}
._2c{width:52.133333pt;}
._2b{width:53.072000pt;}
._52{width:54.000226pt;}
._44{width:55.202070pt;}
._63{width:56.780726pt;}
._6b{width:57.685498pt;}
._55{width:61.044715pt;}
._4d{width:62.796681pt;}
._21{width:65.472000pt;}
._22{width:66.869333pt;}
._23{width:68.021333pt;}
._59{width:69.782632pt;}
._5a{width:71.406444pt;}
._54{width:74.649122pt;}
._53{width:76.293090pt;}
._5e{width:77.196293pt;}
._66{width:78.121015pt;}
._4e{width:79.213607pt;}
._6a{width:80.632566pt;}
._51{width:83.443320pt;}
._48{width:84.962564pt;}
._5b{width:86.899024pt;}
._56{width:88.043113pt;}
._49{width:89.284352pt;}
._4f{width:92.046614pt;}
._4b{width:93.238727pt;}
._50{width:96.448968pt;}
._47{width:98.388306pt;}
._46{width:99.729154pt;}
._4a{width:101.179341pt;}
._4c{width:102.692830pt;}
._5f{width:104.630815pt;}
._35{width:105.743314pt;}
._28{width:108.266667pt;}
._27{width:109.162667pt;}
._57{width:110.110228pt;}
._2e{width:113.984000pt;}
._2d{width:118.272000pt;}
._30{width:119.456000pt;}
._2f{width:120.682667pt;}
._5d{width:122.092986pt;}
._58{width:123.149706pt;}
._5c{width:127.630873pt;}
._3c{width:132.239680pt;}
._3f{width:133.537762pt;}
._38{width:137.311534pt;}
._45{width:150.657312pt;}
._40{width:163.960879pt;}
._26{width:166.965333pt;}
._25{width:171.488000pt;}
._24{width:172.928000pt;}
._1f{width:177.984000pt;}
._20{width:178.944000pt;}
._29{width:194.346667pt;}
._2a{width:195.392000pt;}
._42{width:228.665544pt;}
._3d{width:234.666439pt;}
._41{width:258.151830pt;}
._39{width:285.853061pt;}
._36{width:302.995481pt;}
._3a{width:314.198320pt;}
._37{width:331.317870pt;}
.fs8{font-size:23.350634pt;}
.fs9{font-size:29.188293pt;}
.fs6{font-size:34.528270pt;}
.fs7{font-size:35.025951pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs5{font-size:51.465647pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:1.798382pt;}
.y1a9{bottom:2.158053pt;}
.y1e5{bottom:2.189158pt;}
.y1e7{bottom:2.189173pt;}
.y1a7{bottom:2.517760pt;}
.y1ae{bottom:2.918839pt;}
.y156{bottom:3.209988pt;}
.y154{bottom:3.732562pt;}
.y1e3{bottom:13.129659pt;}
.y1a6{bottom:13.667370pt;}
.y153{bottom:20.343447pt;}
.y1e2{bottom:24.440123pt;}
.y1a5{bottom:24.817125pt;}
.y1e1{bottom:35.768829pt;}
.y1a4{bottom:35.984862pt;}
.y152{bottom:36.928011pt;}
.y10e{bottom:39.813333pt;}
.y1e0{bottom:47.079293pt;}
.y1a3{bottom:47.134616pt;}
.y151{bottom:53.539324pt;}
.y1a2{bottom:58.284370pt;}
.y1df{bottom:58.407999pt;}
.y10d{bottom:67.440000pt;}
.y1a1{bottom:69.452107pt;}
.y1de{bottom:69.718463pt;}
.y150{bottom:70.150638pt;}
.y1a0{bottom:80.603300pt;}
.y1dd{bottom:81.026737pt;}
.yf3{bottom:81.312000pt;}
.y14f{bottom:86.761951pt;}
.ycb{bottom:88.512000pt;}
.y120{bottom:89.472000pt;}
.ye8{bottom:90.592000pt;}
.y19f{bottom:91.753054pt;}
.y79{bottom:92.032000pt;}
.y1dc{bottom:92.359092pt;}
.y10c{bottom:95.066667pt;}
.y20{bottom:95.712000pt;}
.y84{bottom:98.272000pt;}
.y3f{bottom:98.752000pt;}
.y19e{bottom:102.917194pt;}
.y14e{bottom:103.373264pt;}
.y1db{bottom:103.669555pt;}
.y5c{bottom:104.512000pt;}
.y16d{bottom:107.872000pt;}
.yf2{bottom:108.992000pt;}
.y19d{bottom:114.066948pt;}
.y1da{bottom:114.980018pt;}
.y11f{bottom:117.152000pt;}
.ye7{bottom:118.112000pt;}
.y78{bottom:119.552000pt;}
.y14d{bottom:119.954618pt;}
.y10b{bottom:122.693333pt;}
.y12c{bottom:123.392000pt;}
.y19c{bottom:125.216702pt;}
.y83{bottom:125.952000pt;}
.y1f{bottom:126.272000pt;}
.y1d9{bottom:126.305076pt;}
.yca{bottom:126.752000pt;}
.y118{bottom:127.712000pt;}
.y5b{bottom:132.192000pt;}
.y19b{bottom:136.388036pt;}
.yf1{bottom:136.506667pt;}
.y14c{bottom:136.571281pt;}
.y1d8{bottom:137.615540pt;}
.y16c{bottom:138.426667pt;}
.y97{bottom:142.746667pt;}
.yb2{bottom:144.666667pt;}
.y161{bottom:145.306667pt;}
.ye6{bottom:145.786667pt;}
.y77{bottom:147.226667pt;}
.y19a{bottom:147.537790pt;}
.y1d7{bottom:148.926003pt;}
.y12b{bottom:150.906667pt;}
.y14b{bottom:153.177244pt;}
.y82{bottom:153.466667pt;}
.y117{bottom:155.386667pt;}
.y1e{bottom:156.826667pt;}
.y199{bottom:158.701931pt;}
.y5a{bottom:159.706667pt;}
.y1d6{bottom:160.258358pt;}
.y10a{bottom:160.933333pt;}
.yf0{bottom:164.186667pt;}
.y3e{bottom:164.506667pt;}
.yc9{bottom:164.986667pt;}
.y16b{bottom:168.826667pt;}
.y14a{bottom:169.793908pt;}
.y198{bottom:169.851685pt;}
.y1d5{bottom:171.568821pt;}
.yb1{bottom:172.186667pt;}
.ye5{bottom:173.306667pt;}
.y76{bottom:174.746667pt;}
.y159{bottom:174.906667pt;}
.y160{bottom:175.706667pt;}
.y12a{bottom:178.586667pt;}
.y197{bottom:181.001439pt;}
.y81{bottom:181.146667pt;}
.y1d4{bottom:182.893879pt;}
.y149{bottom:186.399871pt;}
.y1d{bottom:187.386667pt;}
.y109{bottom:188.544000pt;}
.yef{bottom:191.706667pt;}
.y196{bottom:192.172773pt;}
.y3d{bottom:192.186667pt;}
.y116{bottom:193.626667pt;}
.y1d3{bottom:194.204342pt;}
.y16a{bottom:199.386667pt;}
.yb0{bottom:199.866667pt;}
.ye4{bottom:200.986667pt;}
.yc8{bottom:202.266667pt;}
.y75{bottom:202.426667pt;}
.y148{bottom:202.984435pt;}
.y195{bottom:203.322527pt;}
.y158{bottom:205.466667pt;}
.y1d2{bottom:205.514806pt;}
.y15f{bottom:206.266667pt;}
.y96{bottom:208.666667pt;}
.y11e{bottom:210.586667pt;}
.y194{bottom:214.472280pt;}
.y59{bottom:214.906667pt;}
.y108{bottom:216.154667pt;}
.y129{bottom:216.826667pt;}
.y1d1{bottom:216.847160pt;}
.y1c{bottom:217.466667pt;}
.y80{bottom:219.386667pt;}
.y147{bottom:219.601098pt;}
.y3c{bottom:219.706667pt;}
.y115{bottom:221.146667pt;}
.ydb{bottom:225.626667pt;}
.y193{bottom:225.636421pt;}
.y1d0{bottom:228.157623pt;}
.ye3{bottom:228.506667pt;}
.y74{bottom:229.946667pt;}
.y157{bottom:232.186667pt;}
.y95{bottom:236.186667pt;}
.y146{bottom:236.207061pt;}
.y192{bottom:236.786175pt;}
.y15e{bottom:236.826667pt;}
.yaf{bottom:238.106667pt;}
.y1cf{bottom:239.468087pt;}
.yc7{bottom:242.106667pt;}
.y58{bottom:242.586667pt;}
.y107{bottom:243.765333pt;}
.y7f{bottom:246.906667pt;}
.y191{bottom:247.935929pt;}
.y1b{bottom:248.026667pt;}
.y114{bottom:248.826667pt;}
.y1ce{bottom:250.793145pt;}
.y145{bottom:252.823724pt;}
.yda{bottom:253.146667pt;}
.y128{bottom:255.066667pt;}
.ye2{bottom:256.186667pt;}
.y73{bottom:257.626667pt;}
.y3b{bottom:257.946667pt;}
.y190{bottom:259.107263pt;}
.y169{bottom:260.506667pt;}
.y1cd{bottom:262.103608pt;}
.y94{bottom:263.866667pt;}
.y11d{bottom:265.786667pt;}
.y15d{bottom:267.386667pt;}
.y144{bottom:269.429688pt;}
.y57{bottom:270.106667pt;}
.y18f{bottom:270.257017pt;}
.y106{bottom:271.376000pt;}
.y1cc{bottom:273.414072pt;}
.y7e{bottom:274.586667pt;}
.yae{bottom:276.346667pt;}
.yc5{bottom:276.826667pt;}
.yd9{bottom:280.826667pt;}
.y18e{bottom:281.406771pt;}
.y127{bottom:282.586667pt;}
.ye1{bottom:283.706667pt;}
.y1cb{bottom:284.746427pt;}
.y72{bottom:285.146667pt;}
.y3a{bottom:285.626667pt;}
.y143{bottom:286.046351pt;}
.y1a{bottom:286.426667pt;}
.yc4{bottom:287.546667pt;}
.y168{bottom:290.906667pt;}
.y93{bottom:291.386667pt;}
.y18d{bottom:292.570912pt;}
.y1ca{bottom:296.056890pt;}
.yc6{bottom:296.506667pt;}
.y56{bottom:297.786667pt;}
.y105{bottom:298.986667pt;}
.y7d{bottom:302.146667pt;}
.y142{bottom:302.630915pt;}
.y18c{bottom:303.720666pt;}
.yad{bottom:304.066667pt;}
.y1c9{bottom:307.381948pt;}
.yd8{bottom:308.386667pt;}
.ye0{bottom:311.426667pt;}
.y71{bottom:312.866667pt;}
.y39{bottom:313.186667pt;}
.y19{bottom:314.146667pt;}
.y113{bottom:314.626667pt;}
.y18b{bottom:314.870420pt;}
.y1c8{bottom:318.692411pt;}
.y92{bottom:319.106667pt;}
.y141{bottom:319.236878pt;}
.y126{bottom:321.026667pt;}
.y167{bottom:321.506667pt;}
.y18a{bottom:326.041754pt;}
.y15c{bottom:328.386667pt;}
.y7c{bottom:329.826667pt;}
.y1c7{bottom:330.002875pt;}
.y11c{bottom:331.586667pt;}
.yc3{bottom:333.506667pt;}
.y55{bottom:335.746667pt;}
.y140{bottom:335.853541pt;}
.yd7{bottom:336.066667pt;}
.y189{bottom:337.191508pt;}
.y104{bottom:337.226667pt;}
.ydf{bottom:338.946667pt;}
.y70{bottom:340.386667pt;}
.y38{bottom:340.866667pt;}
.y1c6{bottom:341.335229pt;}
.y18{bottom:341.666667pt;}
.yac{bottom:342.306667pt;}
.y91{bottom:346.626667pt;}
.y188{bottom:348.355648pt;}
.y125{bottom:348.546667pt;}
.y166{bottom:352.066667pt;}
.y13f{bottom:352.459505pt;}
.y1c5{bottom:352.645693pt;}
.yc2{bottom:356.386667pt;}
.y7b{bottom:357.346667pt;}
.y15b{bottom:358.946667pt;}
.y11b{bottom:359.266667pt;}
.y187{bottom:359.505402pt;}
.yd6{bottom:363.586667pt;}
.y1c4{bottom:363.956156pt;}
.y103{bottom:364.826667pt;}
.y6f{bottom:368.066667pt;}
.y37{bottom:368.386667pt;}
.y13e{bottom:369.076168pt;}
.y17{bottom:369.346667pt;}
.yab{bottom:369.826667pt;}
.y186{bottom:370.655156pt;}
.y54{bottom:374.306667pt;}
.y1c3{bottom:375.281214pt;}
.yde{bottom:375.906667pt;}
.y185{bottom:381.826490pt;}
.yc1{bottom:382.306667pt;}
.y165{bottom:382.626667pt;}
.y16e{bottom:383.586667pt;}
.y16f{bottom:384.027404pt;}
.y7a{bottom:385.026667pt;}
.y13d{bottom:385.660731pt;}
.y15a{bottom:385.666667pt;}
.y1c2{bottom:386.591677pt;}
.y11a{bottom:386.786667pt;}
.yd5{bottom:391.266667pt;}
.y1aa{bottom:392.066667pt;}
.y102{bottom:392.426667pt;}
.y1ab{bottom:392.959964pt;}
.y184{bottom:392.976244pt;}
.y1e6{bottom:393.319695pt;}
.y6e{bottom:395.586667pt;}
.y36{bottom:396.066667pt;}
.y16{bottom:396.866667pt;}
.yaa{bottom:397.506667pt;}
.y1c1{bottom:397.902141pt;}
.y90{bottom:401.826667pt;}
.y183{bottom:404.125998pt;}
.y1c0{bottom:409.234495pt;}
.y53{bottom:412.546667pt;}
.ydd{bottom:412.706667pt;}
.y164{bottom:413.026667pt;}
.y124{bottom:414.466667pt;}
.y182{bottom:415.290139pt;}
.yd4{bottom:418.786667pt;}
.y1bf{bottom:420.544959pt;}
.yc0{bottom:420.546667pt;}
.y6d{bottom:423.266667pt;}
.y35{bottom:423.586667pt;}
.y15{bottom:424.546667pt;}
.ya9{bottom:425.026667pt;}
.y181{bottom:426.439893pt;}
.y8f{bottom:429.506667pt;}
.y101{bottom:430.346667pt;}
.y1be{bottom:431.855422pt;}
.y112{bottom:435.746667pt;}
.y180{bottom:437.589647pt;}
.y52{bottom:440.226667pt;}
.y1bd{bottom:443.180480pt;}
.y163{bottom:443.586667pt;}
.yd3{bottom:446.466667pt;}
.ybf{bottom:448.066667pt;}
.y17f{bottom:448.760981pt;}
.y6c{bottom:450.786667pt;}
.y34{bottom:451.266667pt;}
.y14{bottom:452.066667pt;}
.ya8{bottom:452.706667pt;}
.y1bc{bottom:454.490944pt;}
.y8e{bottom:457.026667pt;}
.y17e{bottom:459.910734pt;}
.yee{bottom:461.186667pt;}
.y111{bottom:463.426667pt;}
.y1bb{bottom:465.823298pt;}
.y51{bottom:467.746667pt;}
.y162{bottom:470.146667pt;}
.y17d{bottom:471.060488pt;}
.yd2{bottom:473.986667pt;}
.y1ba{bottom:477.133761pt;}
.y6b{bottom:478.466667pt;}
.y33{bottom:478.786667pt;}
.y13{bottom:479.746667pt;}
.ya7{bottom:480.226667pt;}
.y17c{bottom:482.224629pt;}
.y138{bottom:482.306667pt;}
.y8d{bottom:484.706667pt;}
.ybe{bottom:486.306667pt;}
.y1b9{bottom:488.444225pt;}
.yed{bottom:489.026667pt;}
.y110{bottom:490.946667pt;}
.y17b{bottom:493.374383pt;}
.y50{bottom:495.426667pt;}
.y1b8{bottom:499.769283pt;}
.yd1{bottom:501.666667pt;}
.y17a{bottom:504.545717pt;}
.y100{bottom:505.893333pt;}
.y6a{bottom:505.986667pt;}
.y32{bottom:506.466667pt;}
.y12{bottom:507.266667pt;}
.y119{bottom:507.906667pt;}
.y1b7{bottom:511.079746pt;}
.y8c{bottom:512.226667pt;}
.ybd{bottom:513.986667pt;}
.y179{bottom:515.695471pt;}
.yec{bottom:516.706667pt;}
.ya6{bottom:518.466667pt;}
.y137{bottom:520.066667pt;}
.y1b6{bottom:522.390210pt;}
.y4f{bottom:522.946667pt;}
.y13b{bottom:524.546667pt;}
.y178{bottom:526.845225pt;}
.yd0{bottom:529.186667pt;}
.y69{bottom:533.666667pt;}
.y1b5{bottom:533.722564pt;}
.y11{bottom:534.946667pt;}
.y123{bottom:535.426667pt;}
.y177{bottom:538.009366pt;}
.y8b{bottom:539.933333pt;}
.yff{bottom:542.693333pt;}
.yeb{bottom:544.253333pt;}
.y31{bottom:544.733333pt;}
.y1b4{bottom:545.033028pt;}
.ya5{bottom:546.173333pt;}
.y176{bottom:549.159120pt;}
.y4e{bottom:550.493333pt;}
.ybc{bottom:552.093333pt;}
.y13a{bottom:555.133333pt;}
.y1b3{bottom:556.343491pt;}
.ycf{bottom:556.893333pt;}
.y136{bottom:558.653333pt;}
.y175{bottom:560.308874pt;}
.y68{bottom:561.213333pt;}
.y10{bottom:562.493333pt;}
.ybb{bottom:562.813333pt;}
.y1b2{bottom:567.668549pt;}
.y174{bottom:571.480208pt;}
.yea{bottom:571.933333pt;}
.y30{bottom:572.253333pt;}
.ya4{bottom:573.693333pt;}
.y8a{bottom:577.853333pt;}
.y4d{bottom:578.173333pt;}
.y1b1{bottom:578.979012pt;}
.yfe{bottom:579.493333pt;}
.y173{bottom:582.629962pt;}
.yce{bottom:584.413333pt;}
.y139{bottom:585.693333pt;}
.y135{bottom:586.333333pt;}
.y67{bottom:588.893333pt;}
.yf{bottom:590.173333pt;}
.y1b0{bottom:590.311367pt;}
.y170{bottom:593.420046pt;}
.ye9{bottom:599.453333pt;}
.y2f{bottom:599.933333pt;}
.ya3{bottom:601.373333pt;}
.y1af{bottom:601.621831pt;}
.y4c{bottom:605.693333pt;}
.yba{bottom:612.093333pt;}
.y13c{bottom:612.479928pt;}
.y1ac{bottom:613.662001pt;}
.y89{bottom:616.093333pt;}
.yfd{bottom:616.293333pt;}
.y66{bottom:616.413333pt;}
.ye{bottom:617.693333pt;}
.y10f{bottom:622.653333pt;}
.y134{bottom:624.573333pt;}
.ydc{bottom:627.133333pt;}
.y2e{bottom:627.453333pt;}
.y122{bottom:628.893333pt;}
.y4b{bottom:633.373333pt;}
.ya2{bottom:639.613333pt;}
.y65{bottom:644.093333pt;}
.yd{bottom:648.093333pt;}
.ycd{bottom:650.333333pt;}
.y133{bottom:652.093333pt;}
.yfc{bottom:653.093333pt;}
.y88{bottom:654.653333pt;}
.y2d{bottom:655.133333pt;}
.yb9{bottom:667.293333pt;}
.y4a{bottom:671.613333pt;}
.ya1{bottom:677.853333pt;}
.yc{bottom:678.653333pt;}
.y87{bottom:682.333333pt;}
.yfb{bottom:689.893333pt;}
.y132{bottom:690.493333pt;}
.y2c{bottom:693.373333pt;}
.yb8{bottom:694.813333pt;}
.y49{bottom:699.293333pt;}
.ycc{bottom:705.533333pt;}
.yb{bottom:709.373333pt;}
.y86{bottom:709.853333pt;}
.ya0{bottom:716.093333pt;}
.y2b{bottom:721.053333pt;}
.y121{bottom:722.493333pt;}
.yfa{bottom:726.693333pt;}
.y48{bottom:726.813333pt;}
.y131{bottom:728.733333pt;}
.yb7{bottom:733.053333pt;}
.y85{bottom:737.533333pt;}
.ya{bottom:739.613333pt;}
.y9f{bottom:743.773333pt;}
.y2a{bottom:748.573333pt;}
.y47{bottom:754.493333pt;}
.yb6{bottom:760.733333pt;}
.y64{bottom:765.053333pt;}
.yf9{bottom:765.093333pt;}
.y130{bottom:766.973333pt;}
.y9e{bottom:771.293333pt;}
.y29{bottom:776.133333pt;}
.y9{bottom:776.613333pt;}
.y46{bottom:782.053333pt;}
.yb5{bottom:788.293333pt;}
.y63{bottom:792.773333pt;}
.y9d{bottom:799.013333pt;}
.yf8{bottom:801.573333pt;}
.y28{bottom:803.813333pt;}
.y12f{bottom:804.933333pt;}
.y8{bottom:807.173333pt;}
.y45{bottom:809.733333pt;}
.yb4{bottom:815.973333pt;}
.y62{bottom:820.293333pt;}
.y9c{bottom:826.533333pt;}
.y27{bottom:831.333333pt;}
.y44{bottom:837.253333pt;}
.y7{bottom:837.573333pt;}
.yf7{bottom:838.053333pt;}
.y12e{bottom:843.173333pt;}
.yb3{bottom:843.493333pt;}
.y61{bottom:847.973333pt;}
.y9b{bottom:854.213333pt;}
.y26{bottom:859.013333pt;}
.y6{bottom:862.053333pt;}
.y43{bottom:864.773333pt;}
.yf6{bottom:874.533333pt;}
.y60{bottom:875.493333pt;}
.y12d{bottom:881.413333pt;}
.y9a{bottom:881.733333pt;}
.y25{bottom:886.533333pt;}
.y5{bottom:887.813333pt;}
.y42{bottom:892.453333pt;}
.y5f{bottom:903.173333pt;}
.y99{bottom:909.413333pt;}
.yf5{bottom:911.013333pt;}
.y24{bottom:914.213333pt;}
.y4{bottom:919.973333pt;}
.y5e{bottom:930.693333pt;}
.y98{bottom:936.933333pt;}
.yf4{bottom:947.493333pt;}
.y3{bottom:947.653333pt;}
.y23{bottom:952.133333pt;}
.y5d{bottom:958.373333pt;}
.y2{bottom:975.173333pt;}
.y171{bottom:975.649067pt;}
.y22{bottom:983.173333pt;}
.y41{bottom:985.893333pt;}
.y1a8{bottom:986.453538pt;}
.y1ad{bottom:1003.703100pt;}
.y155{bottom:1011.536635pt;}
.y1{bottom:1013.280000pt;}
.y40{bottom:1013.600000pt;}
.y21{bottom:1013.760000pt;}
.y1e4{bottom:1016.852426pt;}
.h24{height:10.215939pt;}
.h1a{height:10.448435pt;}
.h1d{height:10.790121pt;}
.h23{height:10.945646pt;}
.h20{height:12.788157pt;}
.h17{height:16.076400pt;}
.h25{height:28.646713pt;}
.h1c{height:33.870749pt;}
.h1b{height:33.887609pt;}
.h22{height:34.358953pt;}
.h21{height:34.376056pt;}
.h19{height:34.798022pt;}
.h1f{height:35.299592pt;}
.h10{height:38.295625pt;}
.h5{height:38.441250pt;}
.h6{height:38.492500pt;}
.h16{height:50.510718pt;}
.h15{height:51.867722pt;}
.h13{height:52.750000pt;}
.hc{height:53.937500pt;}
.h8{height:57.375000pt;}
.h7{height:61.410000pt;}
.h3{height:62.761250pt;}
.h9{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2{height:64.500000pt;}
.h12{height:94.812500pt;}
.ha{height:102.577500pt;}
.he{height:102.737500pt;}
.hb{height:105.692500pt;}
.h11{height:108.055625pt;}
.hd{height:145.457500pt;}
.hf{height:145.617500pt;}
.h14{height:415.136748pt;}
.h18{height:613.222115pt;}
.h1e{height:634.840283pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:640.074683pt;}
.w2{width:640.514299pt;}
.w9{width:641.832853pt;}
.w6{width:641.873066pt;}
.w5{width:642.137102pt;}
.w4{width:642.137107pt;}
.w8{width:642.197531pt;}
.w7{width:642.197535pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.318835pt;}
.x14{left:2.637671pt;}
.x13{left:4.835729pt;}
.x1b{left:5.808807pt;}
.x1e{left:8.022912pt;}
.x1c{left:11.881650pt;}
.x1f{left:16.428734pt;}
.x1a{left:36.714295pt;}
.x1{left:75.520000pt;}
.xc{left:76.640000pt;}
.x17{left:122.752000pt;}
.xd{left:127.232000pt;}
.xe{left:174.906667pt;}
.xf{left:228.186667pt;}
.x6{left:240.506667pt;}
.x10{left:267.106667pt;}
.x7{left:298.626667pt;}
.x11{left:321.506667pt;}
.x9{left:342.466667pt;}
.x2{left:348.706667pt;}
.x8{left:350.466667pt;}
.x4{left:355.106667pt;}
.x3{left:398.626667pt;}
.x5{left:412.066667pt;}
.x1d{left:467.794040pt;}
.xa{left:486.973333pt;}
.xb{left:534.813333pt;}
.x16{left:674.053333pt;}
.x12{left:716.453333pt;}
.x18{left:718.053333pt;}
.x19{left:765.280000pt;}
}




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