
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_61923276d0342dc04522c4a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6ab3866210e09bbdf5ba599c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_d250bb645c7a2084afdbc8a6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8efdb60f8e6a376ea27bcda8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_63c8784c5d5ad52a21f41be2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f7defe575698064d314ce1ac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_50e26bba1dd00860b3f8a03b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_dcf93342864161c50094ed7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.884277;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_173edf5583c797b97ab32f31.woff')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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_d893939771c8948a8c33887b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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_f6b5e13f815fe1f2ad286526.woff')format("woff");}.ffc{font-family:ffc;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373775,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls43{letter-spacing:-3.192000px;}
.ls33{letter-spacing:-1.782000px;}
.ls45{letter-spacing:-1.686000px;}
.ls37{letter-spacing:-1.626000px;}
.ls35{letter-spacing:-1.620000px;}
.ls36{letter-spacing:-1.422000px;}
.ls4a{letter-spacing:-1.386000px;}
.ls32{letter-spacing:-1.266000px;}
.ls34{letter-spacing:-1.260000px;}
.ls5d{letter-spacing:-0.906000px;}
.ls39{letter-spacing:-0.894000px;}
.ls2a{letter-spacing:-0.726000px;}
.ls2e{letter-spacing:-0.696000px;}
.ls28{letter-spacing:-0.660000px;}
.ls50{letter-spacing:-0.546600px;}
.ls21{letter-spacing:-0.513600px;}
.ls25{letter-spacing:-0.485400px;}
.ls42{letter-spacing:-0.399000px;}
.ls19{letter-spacing:-0.368400px;}
.ls51{letter-spacing:-0.310800px;}
.ls2c{letter-spacing:-0.306600px;}
.ls2d{letter-spacing:-0.299400px;}
.ls59{letter-spacing:-0.290400px;}
.ls41{letter-spacing:-0.244200px;}
.ls20{letter-spacing:-0.243600px;}
.ls46{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.186600px;}
.ls1c{letter-spacing:-0.178800px;}
.ls38{letter-spacing:-0.171600px;}
.lsf{letter-spacing:-0.160800px;}
.ls61{letter-spacing:-0.158400px;}
.ls10{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls1d{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls54{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls58{letter-spacing:-0.084000px;}
.ls62{letter-spacing:-0.078000px;}
.ls5c{letter-spacing:-0.068400px;}
.ls3b{letter-spacing:-0.067200px;}
.ls1e{letter-spacing:-0.063600px;}
.ls1a{letter-spacing:-0.045720px;}
.ls2b{letter-spacing:-0.038880px;}
.ls5a{letter-spacing:-0.037800px;}
.ls27{letter-spacing:-0.014760px;}
.ls55{letter-spacing:-0.013320px;}
.ls1f{letter-spacing:-0.011160px;}
.ls60{letter-spacing:-0.009000px;}
.ls1b{letter-spacing:-0.008280px;}
.ls40{letter-spacing:-0.007560px;}
.ls4c{letter-spacing:-0.006120px;}
.ls3d{letter-spacing:-0.003240px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls23{letter-spacing:0.020160px;}
.ls52{letter-spacing:0.041760px;}
.ls15{letter-spacing:0.045360px;}
.ls64{letter-spacing:0.047520px;}
.ls14{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls5b{letter-spacing:0.051840px;}
.ls3a{letter-spacing:0.053280px;}
.ls47{letter-spacing:0.054720px;}
.ls13{letter-spacing:0.060480px;}
.ls26{letter-spacing:0.060600px;}
.ls16{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.099600px;}
.ls5f{letter-spacing:0.105600px;}
.ls4e{letter-spacing:0.114600px;}
.ls2f{letter-spacing:0.115800px;}
.ls11{letter-spacing:0.116400px;}
.ls31{letter-spacing:0.118200px;}
.ls22{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.158400px;}
.ls63{letter-spacing:0.160800px;}
.ls18{letter-spacing:0.173400px;}
.ls3c{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls24{letter-spacing:0.199200px;}
.ls4b{letter-spacing:0.201600px;}
.ls48{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.394800px;}
.ls30{letter-spacing:0.453600px;}
.ls4f{letter-spacing:0.813600px;}
.ls3e{letter-spacing:1.533600px;}
.ls3f{letter-spacing:1.893600px;}
.ls53{letter-spacing:3.333600px;}
.ls5e{letter-spacing:3.693600px;}
.ls49{letter-spacing:10.173600px;}
.ls29{letter-spacing:25.413600px;}
.ls57{letter-spacing:47.726640px;}
.ls17{letter-spacing:63.566640px;}
.ls56{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws29{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.612000px;}
.ws3{word-spacing:-18.553200px;}
.ws3e{word-spacing:-14.652000px;}
.ws7{word-spacing:-14.493600px;}
.ws14{word-spacing:-14.447880px;}
.ws13{word-spacing:-14.372400px;}
.ws3f{word-spacing:-13.428000px;}
.ws1d{word-spacing:-13.425600px;}
.wse{word-spacing:-13.407600px;}
.ws10{word-spacing:-13.399800px;}
.ws4f{word-spacing:-13.387200px;}
.wsb{word-spacing:-13.369800px;}
.ws1e{word-spacing:-13.353600px;}
.ws2c{word-spacing:-13.344600px;}
.wsd{word-spacing:-13.342800px;}
.ws2b{word-spacing:-13.342200px;}
.ws4b{word-spacing:-13.332000px;}
.ws51{word-spacing:-13.287000px;}
.ws3c{word-spacing:-13.281120px;}
.ws36{word-spacing:-13.279680px;}
.ws48{word-spacing:-13.278240px;}
.ws8{word-spacing:-13.275600px;}
.ws11{word-spacing:-13.275360px;}
.ws50{word-spacing:-13.273920px;}
.ws43{word-spacing:-13.268160px;}
.ws35{word-spacing:-13.246560px;}
.ws5{word-spacing:-13.226400px;}
.ws38{word-spacing:-13.218840px;}
.ws16{word-spacing:-13.218120px;}
.ws4c{word-spacing:-13.217400px;}
.ws1a{word-spacing:-13.215240px;}
.ws45{word-spacing:-13.213080px;}
.ws21{word-spacing:-13.211640px;}
.ws47{word-spacing:-13.188600px;}
.ws25{word-spacing:-13.187520px;}
.ws19{word-spacing:-13.162800px;}
.ws37{word-spacing:-13.159200px;}
.ws49{word-spacing:-13.158000px;}
.ws4e{word-spacing:-13.148400px;}
.ws44{word-spacing:-13.134000px;}
.ws18{word-spacing:-13.101000px;}
.wsa{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.ws33{word-spacing:-13.054800px;}
.ws17{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.ws1b{word-spacing:-12.982800px;}
.ws39{word-spacing:-12.982200px;}
.ws46{word-spacing:-12.936000px;}
.ws26{word-spacing:-12.919800px;}
.ws42{word-spacing:-12.915600px;}
.ws12{word-spacing:-12.858000px;}
.ws3a{word-spacing:-12.827400px;}
.ws1f{word-spacing:-12.741000px;}
.ws1c{word-spacing:-12.712800px;}
.ws41{word-spacing:-12.679800px;}
.ws34{word-spacing:-12.332400px;}
.ws4a{word-spacing:-12.320400px;}
.ws2f{word-spacing:-11.966400px;}
.ws2d{word-spacing:-11.960400px;}
.ws3d{word-spacing:-11.840400px;}
.ws31{word-spacing:-11.804400px;}
.ws30{word-spacing:-11.606400px;}
.ws32{word-spacing:-11.600400px;}
.ws3b{word-spacing:-11.540400px;}
.ws2e{word-spacing:-11.444400px;}
.ws40{word-spacing:-10.928400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws15{word-spacing:-9.266400px;}
.ws20{word-spacing:-8.614200px;}
.wsc{word-spacing:-8.553600px;}
.ws4d{word-spacing:-8.395200px;}
.ws27{word-spacing:-8.254200px;}
.ws2a{word-spacing:-8.185200px;}
.ws22{word-spacing:-7.893600px;}
.ws28{word-spacing:-7.857600px;}
.ws24{word-spacing:-7.827600px;}
.ws23{word-spacing:-0.060120px;}
.wsf{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._11{margin-left:-6.530040px;}
._d{margin-left:-5.337960px;}
._a{margin-left:-4.022040px;}
._9{margin-left:-2.849280px;}
._0{margin-left:-1.839480px;}
._1{width:1.189560px;}
._8{width:2.519880px;}
._7{width:3.555842px;}
._2{width:4.677612px;}
._3{width:5.735449px;}
._4{width:6.793800px;}
._c{width:8.113555px;}
._e{width:9.198360px;}
._6{width:10.364999px;}
._5{width:11.663400px;}
._b{width:14.442720px;}
._14{width:15.667080px;}
._12{width:16.713360px;}
._13{width:17.831400px;}
._21{width:19.021680px;}
._17{width:21.042000px;}
._18{width:23.123736px;}
._15{width:24.502068px;}
._f{width:25.635484px;}
._10{width:27.085552px;}
._1f{width:28.463655px;}
._22{width:31.322520px;}
._23{width:32.825520px;}
._16{width:44.250515px;}
._1c{width:54.633240px;}
._1a{width:75.739440px;}
._1e{width:83.231280px;}
._1d{width:107.587440px;}
._1b{width:128.310120px;}
._19{width:144.419160px;}
._20{width:199.237800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y137{bottom:3.330000px;}
.y134{bottom:4.500000px;}
.yd4{bottom:7.830000px;}
.yd8{bottom:7.860000px;}
.yd5{bottom:7.920000px;}
.y152{bottom:7.950000px;}
.y11f{bottom:8.550000px;}
.y114{bottom:8.580000px;}
.y11e{bottom:8.640000px;}
.y113{bottom:8.670000px;}
.y136{bottom:20.970000px;}
.y16a{bottom:21.600000px;}
.y142{bottom:22.950000px;}
.y125{bottom:25.470000px;}
.yd2{bottom:35.190000px;}
.y141{bottom:40.500000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y57{bottom:112.170000px;}
.y111{bottom:116.490000px;}
.y1ba{bottom:119.100000px;}
.yfa{bottom:121.530000px;}
.y129{bottom:123.060000px;}
.y82{bottom:126.480000px;}
.y56{bottom:129.720000px;}
.y172{bottom:131.250000px;}
.yad{bottom:134.400000px;}
.y1b9{bottom:136.740000px;}
.yf9{bottom:139.080000px;}
.y161{bottom:139.260000px;}
.y27{bottom:140.250000px;}
.y81{bottom:144.030000px;}
.y171{bottom:146.280000px;}
.y18d{bottom:146.550000px;}
.y55{bottom:147.270000px;}
.yac{bottom:151.950000px;}
.y110{bottom:152.130000px;}
.y160{bottom:156.810000px;}
.y26{bottom:157.800000px;}
.y80{bottom:161.670000px;}
.y1b8{bottom:163.290000px;}
.y18c{bottom:164.190000px;}
.y54{bottom:164.910000px;}
.yf8{bottom:165.720000px;}
.y128{bottom:167.970000px;}
.yab{bottom:170.400000px;}
.y170{bottom:173.640000px;}
.y15f{bottom:174.450000px;}
.y25{bottom:175.440000px;}
.y7f{bottom:179.220000px;}
.y1b7{bottom:180.840000px;}
.y18b{bottom:181.740000px;}
.y13e{bottom:183.270000px;}
.y10f{bottom:184.350000px;}
.yaa{bottom:187.950000px;}
.yd0{bottom:190.830000px;}
.y15e{bottom:192.000000px;}
.y53{bottom:193.980000px;}
.y127{bottom:195.330000px;}
.y7e{bottom:196.860000px;}
.y1b6{bottom:198.480000px;}
.y13d{bottom:200.910000px;}
.y16f{bottom:201.000000px;}
.yf7{bottom:201.270000px;}
.y24{bottom:201.990000px;}
.ya9{bottom:206.310000px;}
.y15d{bottom:209.550000px;}
.y7d{bottom:214.410000px;}
.y18a{bottom:217.380000px;}
.y13c{bottom:218.460000px;}
.yf6{bottom:218.820000px;}
.y126{bottom:222.690000px;}
.ya8{bottom:224.760000px;}
.y1b5{bottom:225.030000px;}
.ycf{bottom:226.470000px;}
.y15c{bottom:227.190000px;}
.y16e{bottom:228.270000px;}
.y52{bottom:229.710000px;}
.y189{bottom:234.930000px;}
.y13b{bottom:236.100000px;}
.yf5{bottom:236.460000px;}
.y23{bottom:237.540000px;}
.ya7{bottom:242.310000px;}
.y1b4{bottom:242.580000px;}
.y7c{bottom:243.570000px;}
.yce{bottom:244.020000px;}
.y15b{bottom:244.740000px;}
.y124{bottom:249.960000px;}
.y13a{bottom:253.650000px;}
.yf4{bottom:254.010000px;}
.y22{bottom:255.180000px;}
.y16d{bottom:255.630000px;}
.ya6{bottom:260.760000px;}
.ycd{bottom:261.570000px;}
.y15a{bottom:262.380000px;}
.y51{bottom:265.260000px;}
.y188{bottom:267.150000px;}
.y1b3{bottom:269.220000px;}
.y139{bottom:271.200000px;}
.yf3{bottom:271.650000px;}
.y21{bottom:272.730000px;}
.ya5{bottom:279.120000px;}
.y7b{bottom:279.210000px;}
.y159{bottom:279.930000px;}
.y50{bottom:282.900000px;}
.y16c{bottom:282.990000px;}
.y20{bottom:290.370000px;}
.y1b2{bottom:295.770000px;}
.y7a{bottom:296.760000px;}
.y138{bottom:297.840000px;}
.yf2{bottom:298.200000px;}
.y4f{bottom:300.450000px;}
.y1f{bottom:307.920000px;}
.y169{bottom:310.260000px;}
.y79{bottom:314.400000px;}
.y158{bottom:314.760000px;}
.ya4{bottom:315.570000px;}
.y123{bottom:316.290000px;}
.y1b1{bottom:322.410000px;}
.y1e{bottom:325.470000px;}
.y157{bottom:327.000000px;}
.y4e{bottom:329.610000px;}
.y140{bottom:330.780000px;}
.y78{bottom:331.950000px;}
.yf1{bottom:333.750000px;}
.y122{bottom:333.840000px;}
.y16b{bottom:337.620000px;}
.y1b0{bottom:339.960000px;}
.ycc{bottom:349.500000px;}
.y77{bottom:349.590000px;}
.ya3{bottom:351.210000px;}
.yf0{bottom:351.390000px;}
.y1d{bottom:352.110000px;}
.y156{bottom:354.270000px;}
.y1af{bottom:357.510000px;}
.y121{bottom:357.870000px;}
.y4d{bottom:365.250000px;}
.y76{bottom:367.140000px;}
.ya2{bottom:368.760000px;}
.yef{bottom:368.940000px;}
.y155{bottom:381.630000px;}
.y4c{bottom:382.800000px;}
.y1ae{bottom:384.150000px;}
.y120{bottom:385.140000px;}
.y168{bottom:386.310000px;}
.yee{bottom:386.580000px;}
.y1c{bottom:388.020000px;}
.y13f{bottom:395.310000px;}
.ycb{bottom:396.210000px;}
.y75{bottom:396.300000px;}
.y4b{bottom:400.440000px;}
.y1ad{bottom:401.700000px;}
.y167{bottom:403.950000px;}
.yed{bottom:404.130000px;}
.ya1{bottom:404.400000px;}
.y154{bottom:408.990000px;}
.y11d{bottom:412.500000px;}
.y4a{bottom:417.990000px;}
.yec{bottom:421.680000px;}
.ya0{bottom:421.950000px;}
.y1ac{bottom:428.340000px;}
.y74{bottom:431.940000px;}
.y166{bottom:433.020000px;}
.y49{bottom:435.630000px;}
.y153{bottom:436.350000px;}
.y1b{bottom:436.620000px;}
.y9f{bottom:439.500000px;}
.y11c{bottom:440.580000px;}
.y1ab{bottom:445.890000px;}
.yca{bottom:449.490000px;}
.y73{bottom:449.580000px;}
.y48{bottom:453.180000px;}
.y9e{bottom:457.140000px;}
.yeb{bottom:457.320000px;}
.y151{bottom:463.620000px;}
.y72{bottom:467.130000px;}
.y11b{bottom:467.940000px;}
.y165{bottom:468.750000px;}
.y47{bottom:470.760000px;}
.y1aa{bottom:472.470000px;}
.y1a{bottom:473.640000px;}
.y71{bottom:484.710000px;}
.y1a9{bottom:490.110000px;}
.y150{bottom:491.010000px;}
.y19{bottom:491.190000px;}
.y9d{bottom:492.720000px;}
.yea{bottom:492.900000px;}
.y11a{bottom:495.330000px;}
.y164{bottom:501.000000px;}
.yc9{bottom:502.260000px;}
.y70{bottom:502.350000px;}
.y46{bottom:506.400000px;}
.y18{bottom:508.830000px;}
.y9c{bottom:510.270000px;}
.y1a8{bottom:516.660000px;}
.y14f{bottom:518.370000px;}
.y6f{bottom:519.900000px;}
.y10e{bottom:523.230000px;}
.y45{bottom:523.950000px;}
.y17{bottom:526.380000px;}
.y9b{bottom:527.910000px;}
.ye9{bottom:528.450000px;}
.y1a7{bottom:534.300000px;}
.yc8{bottom:537.450000px;}
.y6e{bottom:537.540000px;}
.y44{bottom:541.590000px;}
.y16{bottom:544.020000px;}
.y9a{bottom:545.460000px;}
.y14e{bottom:545.730000px;}
.yc7{bottom:555.090000px;}
.y10d{bottom:558.960000px;}
.y43{bottom:559.140000px;}
.y1a6{bottom:560.850000px;}
.y15{bottom:561.570000px;}
.ye8{bottom:564.090000px;}
.y6d{bottom:566.610000px;}
.y99{bottom:572.100000px;}
.yc6{bottom:572.640000px;}
.y14d{bottom:573.000000px;}
.y10c{bottom:576.510000px;}
.y1a5{bottom:578.400000px;}
.y14{bottom:579.120000px;}
.y119{bottom:579.570000px;}
.y187{bottom:582.540000px;}
.y42{bottom:585.690000px;}
.yc5{bottom:590.190000px;}
.ye7{bottom:591.000000px;}
.y10b{bottom:594.150000px;}
.y13{bottom:596.760000px;}
.y14c{bottom:600.360000px;}
.y186{bottom:600.450000px;}
.y6c{bottom:602.340000px;}
.y1a4{bottom:605.040000px;}
.y98{bottom:607.650000px;}
.yc4{bottom:607.830000px;}
.y10a{bottom:611.700000px;}
.y118{bottom:611.790000px;}
.y12{bottom:614.310000px;}
.y135{bottom:619.710000px;}
.y6b{bottom:619.890000px;}
.y41{bottom:621.240000px;}
.y1a3{bottom:622.590000px;}
.yc3{bottom:625.380000px;}
.y97{bottom:626.010000px;}
.y14b{bottom:627.720000px;}
.y185{bottom:627.810000px;}
.ye6{bottom:627.990000px;}
.y11{bottom:631.950000px;}
.y6a{bottom:637.440000px;}
.y40{bottom:639.690000px;}
.y96{bottom:644.460000px;}
.y1cb{bottom:645.360000px;}
.ye5{bottom:645.630000px;}
.y109{bottom:647.250000px;}
.y1a2{bottom:649.230000px;}
.y10{bottom:649.500000px;}
.yc2{bottom:654.540000px;}
.y14a{bottom:654.990000px;}
.y184{bottom:655.080000px;}
.y3f{bottom:658.140000px;}
.ye4{bottom:663.180000px;}
.y133{bottom:664.620000px;}
.y108{bottom:664.890000px;}
.y69{bottom:666.600000px;}
.yf{bottom:667.050000px;}
.y1ca{bottom:672.000000px;}
.y1a1{bottom:676.140000px;}
.ye3{bottom:680.730000px;}
.y95{bottom:680.910000px;}
.y149{bottom:682.350000px;}
.y183{bottom:682.440000px;}
.ye{bottom:684.690000px;}
.y3e{bottom:685.590000px;}
.y1c9{bottom:689.550000px;}
.yc1{bottom:690.180000px;}
.y107{bottom:693.960000px;}
.y94{bottom:698.460000px;}
.yd{bottom:702.240000px;}
.y68{bottom:702.330000px;}
.ye2{bottom:707.370000px;}
.yc0{bottom:707.820000px;}
.y148{bottom:709.710000px;}
.y182{bottom:709.800000px;}
.y93{bottom:716.100000px;}
.y1c8{bottom:716.190000px;}
.yc{bottom:719.880000px;}
.y3d{bottom:721.500000px;}
.y1a0{bottom:724.380000px;}
.ybf{bottom:725.370000px;}
.y106{bottom:729.690000px;}
.y92{bottom:733.650000px;}
.y1c7{bottom:733.740000px;}
.y147{bottom:737.070000px;}
.y181{bottom:737.160000px;}
.yb{bottom:737.430000px;}
.ye1{bottom:742.920000px;}
.y105{bottom:747.240000px;}
.y91{bottom:751.200000px;}
.y19f{bottom:751.290000px;}
.ybe{bottom:754.530000px;}
.y67{bottom:755.070000px;}
.ye0{bottom:760.560000px;}
.ya{bottom:764.340000px;}
.y17f{bottom:764.430000px;}
.y90{bottom:768.840000px;}
.y3c{bottom:769.740000px;}
.y104{bottom:773.880000px;}
.y1c6{bottom:777.930000px;}
.ydf{bottom:778.110000px;}
.y66{bottom:784.140000px;}
.y8f{bottom:786.390000px;}
.y3b{bottom:787.290000px;}
.y19e{bottom:788.640000px;}
.ybd{bottom:790.170000px;}
.y180{bottom:791.790000px;}
.y163{bottom:796.830000px;}
.y8e{bottom:804.030000px;}
.y1c5{bottom:804.480000px;}
.yde{bottom:804.660000px;}
.y3a{bottom:804.930000px;}
.ybc{bottom:807.810000px;}
.y103{bottom:809.430000px;}
.y9{bottom:811.140000px;}
.y146{bottom:813.030000px;}
.y65{bottom:819.870000px;}
.y1c4{bottom:822.030000px;}
.y39{bottom:822.480000px;}
.ybb{bottom:825.360000px;}
.y102{bottom:826.980000px;}
.y162{bottom:829.050000px;}
.y8d{bottom:833.190000px;}
.y19d{bottom:836.880000px;}
.y64{bottom:837.420000px;}
.y1c3{bottom:839.670000px;}
.y38{bottom:840.030000px;}
.y17e{bottom:840.480000px;}
.yba{bottom:842.910000px;}
.y101{bottom:844.620000px;}
.y8{bottom:846.690000px;}
.y145{bottom:848.670000px;}
.y19c{bottom:854.520000px;}
.y63{bottom:855.060000px;}
.y37{bottom:857.670000px;}
.y17d{bottom:858.030000px;}
.yb9{bottom:860.550000px;}
.y8c{bottom:865.770000px;}
.y144{bottom:866.220000px;}
.y19b{bottom:872.070000px;}
.y62{bottom:872.610000px;}
.ydd{bottom:872.880000px;}
.y100{bottom:873.780000px;}
.y36{bottom:875.220000px;}
.yb8{bottom:878.100000px;}
.y7{bottom:882.510000px;}
.y1c2{bottom:883.860000px;}
.y8b{bottom:884.220000px;}
.y19a{bottom:889.620000px;}
.y61{bottom:890.160000px;}
.y143{bottom:893.130000px;}
.y17c{bottom:893.670000px;}
.ydc{bottom:900.240000px;}
.y35{bottom:901.860000px;}
.y8a{bottom:902.580000px;}
.yff{bottom:906.450000px;}
.y199{bottom:907.260000px;}
.yb7{bottom:907.350000px;}
.y1c1{bottom:910.410000px;}
.y17b{bottom:911.220000px;}
.y60{bottom:916.800000px;}
.y6{bottom:918.510000px;}
.y89{bottom:921.030000px;}
.y117{bottom:921.210000px;}
.y198{bottom:924.810000px;}
.ydb{bottom:927.600000px;}
.y1c0{bottom:927.960000px;}
.y17a{bottom:928.860000px;}
.y132{bottom:934.350000px;}
.y34{bottom:937.410000px;}
.y88{bottom:939.390000px;}
.yb6{bottom:939.930000px;}
.yfe{bottom:942.000000px;}
.y197{bottom:942.450000px;}
.y1bf{bottom:945.600000px;}
.y179{bottom:946.410000px;}
.y131{bottom:951.990000px;}
.y5f{bottom:952.350000px;}
.y116{bottom:954.150000px;}
.y5{bottom:954.600000px;}
.yda{bottom:954.870000px;}
.y33{bottom:954.960000px;}
.yb5{bottom:958.290000px;}
.yfd{bottom:959.550000px;}
.y196{bottom:960.000000px;}
.y178{bottom:963.960000px;}
.y87{bottom:969.450000px;}
.y5e{bottom:969.990000px;}
.y1be{bottom:972.150000px;}
.y32{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.yfc{bottom:977.190000px;}
.y195{bottom:977.550000px;}
.y130{bottom:978.540000px;}
.y115{bottom:981.510000px;}
.y177{bottom:981.600000px;}
.yd9{bottom:982.230000px;}
.y5d{bottom:987.540000px;}
.y1bd{bottom:989.790000px;}
.y31{bottom:990.150000px;}
.yb4{bottom:994.740000px;}
.y194{bottom:995.190000px;}
.y176{bottom:999.150000px;}
.y5c{bottom:1005.090000px;}
.y30{bottom:1007.790000px;}
.y112{bottom:1008.780000px;}
.yd7{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.yb3{bottom:1012.320000px;}
.y193{bottom:1012.770000px;}
.y12f{bottom:1014.120000px;}
.y1bc{bottom:1016.370000px;}
.y175{bottom:1016.820000px;}
.y86{bottom:1022.670000px;}
.y5b{bottom:1022.760000px;}
.y2f{bottom:1025.370000px;}
.yb2{bottom:1029.960000px;}
.y192{bottom:1030.320000px;}
.y12e{bottom:1031.760000px;}
.yd6{bottom:1036.890000px;}
.y85{bottom:1040.310000px;}
.y2e{bottom:1042.920000px;}
.yb1{bottom:1047.510000px;}
.y191{bottom:1047.960000px;}
.y12d{bottom:1049.310000px;}
.y5a{bottom:1051.830000px;}
.y174{bottom:1052.370000px;}
.y84{bottom:1057.860000px;}
.y2d{bottom:1060.560000px;}
.yd1{bottom:1064.250000px;}
.yb0{bottom:1065.150000px;}
.y190{bottom:1065.510000px;}
.y12c{bottom:1066.950000px;}
.y173{bottom:1069.920000px;}
.yfb{bottom:1074.420000px;}
.y18f{bottom:1083.150000px;}
.y12b{bottom:1084.500000px;}
.y83{bottom:1087.020000px;}
.y2c{bottom:1087.110000px;}
.y59{bottom:1087.560000px;}
.yd3{bottom:1091.610000px;}
.yaf{bottom:1091.700000px;}
.y18e{bottom:1100.700000px;}
.y58{bottom:1105.110000px;}
.y12a{bottom:1111.050000px;}
.y1bb{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yae{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h15{height:26.670000px;}
.h10{height:27.360000px;}
.hf{height:27.390000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h16{height:40.539023px;}
.h11{height:44.190000px;}
.h6{height:50.902383px;}
.hb{height:53.910000px;}
.h17{height:54.000000px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h18{height:60.960938px;}
.h9{height:61.793886px;}
.h7{height:62.585859px;}
.h14{height:63.720000px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h13{height:222.780000px;}
.h12{height:230.040000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w21{width:39.180000px;}
.w3{width:43.290000px;}
.w1e{width:43.470000px;}
.w26{width:44.490000px;}
.w30{width:49.230000px;}
.wb{width:53.730000px;}
.wa{width:55.260000px;}
.w2c{width:56.430000px;}
.w2a{width:56.520000px;}
.w7{width:65.160000px;}
.w9{width:65.190000px;}
.w8{width:65.250000px;}
.w24{width:78.930000px;}
.w25{width:78.960000px;}
.w23{width:87.120000px;}
.w22{width:89.640000px;}
.w2b{width:90.000000px;}
.w31{width:92.700000px;}
.w1f{width:99.360000px;}
.w13{width:104.430000px;}
.w14{width:104.670000px;}
.w11{width:104.760000px;}
.w15{width:110.790000px;}
.w12{width:114.660000px;}
.w27{width:133.830000px;}
.w20{width:133.950000px;}
.we{width:136.350000px;}
.w2d{width:141.120000px;}
.wf{width:141.780000px;}
.w2f{width:142.650000px;}
.wc{width:144.810000px;}
.w29{width:147.330000px;}
.wd{width:150.510000px;}
.w4{width:158.940000px;}
.w6{width:165.600000px;}
.w5{width:197.040000px;}
.w1d{width:198.540000px;}
.w10{width:212.250000px;}
.w2e{width:216.030000px;}
.w18{width:219.540000px;}
.w1b{width:219.990000px;}
.w17{width:221.610000px;}
.w19{width:233.100000px;}
.w28{width:247.980000px;}
.w1c{width:257.160000px;}
.w16{width:675.780000px;}
.w1a{width:677.220000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.870000px;}
.x25{left:7.650000px;}
.x41{left:9.450000px;}
.x3e{left:11.610000px;}
.x36{left:20.070000px;}
.x42{left:22.320000px;}
.x39{left:26.820000px;}
.x37{left:30.510000px;}
.x3c{left:33.120000px;}
.x3a{left:39.600000px;}
.x34{left:44.370000px;}
.x1{left:68.040000px;}
.x2a{left:69.120000px;}
.x3f{left:78.840000px;}
.x4e{left:84.869987px;}
.x5{left:95.039987px;}
.x32{left:108.720000px;}
.x5a{left:111.239987px;}
.x18{left:122.039987px;}
.x4{left:123.749987px;}
.x28{left:126.719987px;}
.x6{left:135.539987px;}
.x7{left:145.349987px;}
.x8{left:155.879987px;}
.x50{left:158.670000px;}
.x19{left:163.110000px;}
.x9{left:165.809987px;}
.x54{left:167.340000px;}
.x45{left:174.630000px;}
.x2{left:192.719987px;}
.x51{left:203.970000px;}
.x1b{left:207.120000px;}
.xa{left:218.099987px;}
.x55{left:224.580000px;}
.xb{left:227.909987px;}
.xc{left:248.609987px;}
.xd{left:258.509987px;}
.x46{left:264.990000px;}
.x2b{left:282.090000px;}
.xe{left:290.459987px;}
.x4b{left:295.229987px;}
.x24{left:298.650000px;}
.xf{left:300.359987px;}
.x23{left:301.619987px;}
.x29{left:307.200000px;}
.x3d{left:328.710000px;}
.x35{left:331.140000px;}
.x52{left:338.610000px;}
.x43{left:351.660000px;}
.x47{left:352.830000px;}
.x1c{left:366.780000px;}
.x10{left:372.899987px;}
.x11{left:382.709987px;}
.x2c{left:387.660000px;}
.x59{left:398.189987px;}
.x12{left:412.949987px;}
.x13{left:422.939987px;}
.x4c{left:425.279987px;}
.x1e{left:432.660000px;}
.x26{left:444.180000px;}
.x44{left:451.830000px;}
.x14{left:472.439987px;}
.x15{left:482.249987px;}
.x1f{left:498.630000px;}
.x16{left:500.969987px;}
.x2d{left:503.040000px;}
.x30{left:507.179987px;}
.x17{left:510.989987px;}
.x48{left:512.160000px;}
.x31{left:518.459987px;}
.x38{left:551.400000px;}
.x1d{left:564.540000px;}
.x56{left:583.260000px;}
.x40{left:586.680000px;}
.x49{left:600.000000px;}
.x2e{left:608.280000px;}
.x20{left:620.520000px;}
.x57{left:633.210000px;}
.x53{left:644.640000px;}
.x3b{left:660.300000px;}
.x33{left:667.050000px;}
.x4d{left:671.639987px;}
.x4f{left:672.809987px;}
.x21{left:674.970000px;}
.x4a{left:679.650000px;}
.x27{left:686.309987px;}
.x58{left:691.889987px;}
.x2f{left:713.670000px;}
.x22{left:762.809987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls43{letter-spacing:-2.837333pt;}
.ls33{letter-spacing:-1.584000pt;}
.ls45{letter-spacing:-1.498667pt;}
.ls37{letter-spacing:-1.445333pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls36{letter-spacing:-1.264000pt;}
.ls4a{letter-spacing:-1.232000pt;}
.ls32{letter-spacing:-1.125333pt;}
.ls34{letter-spacing:-1.120000pt;}
.ls5d{letter-spacing:-0.805333pt;}
.ls39{letter-spacing:-0.794667pt;}
.ls2a{letter-spacing:-0.645333pt;}
.ls2e{letter-spacing:-0.618667pt;}
.ls28{letter-spacing:-0.586667pt;}
.ls50{letter-spacing:-0.485867pt;}
.ls21{letter-spacing:-0.456533pt;}
.ls25{letter-spacing:-0.431467pt;}
.ls42{letter-spacing:-0.354667pt;}
.ls19{letter-spacing:-0.327467pt;}
.ls51{letter-spacing:-0.276267pt;}
.ls2c{letter-spacing:-0.272533pt;}
.ls2d{letter-spacing:-0.266133pt;}
.ls59{letter-spacing:-0.258133pt;}
.ls41{letter-spacing:-0.217067pt;}
.ls20{letter-spacing:-0.216533pt;}
.ls46{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1c{letter-spacing:-0.158933pt;}
.ls38{letter-spacing:-0.152533pt;}
.lsf{letter-spacing:-0.142933pt;}
.ls61{letter-spacing:-0.140800pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls1d{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls54{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls58{letter-spacing:-0.074667pt;}
.ls62{letter-spacing:-0.069333pt;}
.ls5c{letter-spacing:-0.060800pt;}
.ls3b{letter-spacing:-0.059733pt;}
.ls1e{letter-spacing:-0.056533pt;}
.ls1a{letter-spacing:-0.040640pt;}
.ls2b{letter-spacing:-0.034560pt;}
.ls5a{letter-spacing:-0.033600pt;}
.ls27{letter-spacing:-0.013120pt;}
.ls55{letter-spacing:-0.011840pt;}
.ls1f{letter-spacing:-0.009920pt;}
.ls60{letter-spacing:-0.008000pt;}
.ls1b{letter-spacing:-0.007360pt;}
.ls40{letter-spacing:-0.006720pt;}
.ls4c{letter-spacing:-0.005440pt;}
.ls3d{letter-spacing:-0.002880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls23{letter-spacing:0.017920pt;}
.ls52{letter-spacing:0.037120pt;}
.ls15{letter-spacing:0.040320pt;}
.ls64{letter-spacing:0.042240pt;}
.ls14{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls5b{letter-spacing:0.046080pt;}
.ls3a{letter-spacing:0.047360pt;}
.ls47{letter-spacing:0.048640pt;}
.ls13{letter-spacing:0.053760pt;}
.ls26{letter-spacing:0.053867pt;}
.ls16{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.088533pt;}
.ls5f{letter-spacing:0.093867pt;}
.ls4e{letter-spacing:0.101867pt;}
.ls2f{letter-spacing:0.102933pt;}
.ls11{letter-spacing:0.103467pt;}
.ls31{letter-spacing:0.105067pt;}
.ls22{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.140800pt;}
.ls63{letter-spacing:0.142933pt;}
.ls18{letter-spacing:0.154133pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls24{letter-spacing:0.177067pt;}
.ls4b{letter-spacing:0.179200pt;}
.ls48{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.350933pt;}
.ls30{letter-spacing:0.403200pt;}
.ls4f{letter-spacing:0.723200pt;}
.ls3e{letter-spacing:1.363200pt;}
.ls3f{letter-spacing:1.683200pt;}
.ls53{letter-spacing:2.963200pt;}
.ls5e{letter-spacing:3.283200pt;}
.ls49{letter-spacing:9.043200pt;}
.ls29{letter-spacing:22.589867pt;}
.ls57{letter-spacing:42.423680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls56{letter-spacing:71.863680pt;}
.ws29{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.544000pt;}
.ws3{word-spacing:-16.491733pt;}
.ws3e{word-spacing:-13.024000pt;}
.ws7{word-spacing:-12.883200pt;}
.ws14{word-spacing:-12.842560pt;}
.ws13{word-spacing:-12.775467pt;}
.ws3f{word-spacing:-11.936000pt;}
.ws1d{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.917867pt;}
.ws10{word-spacing:-11.910933pt;}
.ws4f{word-spacing:-11.899733pt;}
.wsb{word-spacing:-11.884267pt;}
.ws1e{word-spacing:-11.869867pt;}
.ws2c{word-spacing:-11.861867pt;}
.wsd{word-spacing:-11.860267pt;}
.ws2b{word-spacing:-11.859733pt;}
.ws4b{word-spacing:-11.850667pt;}
.ws51{word-spacing:-11.810667pt;}
.ws3c{word-spacing:-11.805440pt;}
.ws36{word-spacing:-11.804160pt;}
.ws48{word-spacing:-11.802880pt;}
.ws8{word-spacing:-11.800533pt;}
.ws11{word-spacing:-11.800320pt;}
.ws50{word-spacing:-11.799040pt;}
.ws43{word-spacing:-11.793920pt;}
.ws35{word-spacing:-11.774720pt;}
.ws5{word-spacing:-11.756800pt;}
.ws38{word-spacing:-11.750080pt;}
.ws16{word-spacing:-11.749440pt;}
.ws4c{word-spacing:-11.748800pt;}
.ws1a{word-spacing:-11.746880pt;}
.ws45{word-spacing:-11.744960pt;}
.ws21{word-spacing:-11.743680pt;}
.ws47{word-spacing:-11.723200pt;}
.ws25{word-spacing:-11.722240pt;}
.ws19{word-spacing:-11.700267pt;}
.ws37{word-spacing:-11.697067pt;}
.ws49{word-spacing:-11.696000pt;}
.ws4e{word-spacing:-11.687467pt;}
.ws44{word-spacing:-11.674667pt;}
.ws18{word-spacing:-11.645333pt;}
.wsa{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws33{word-spacing:-11.604267pt;}
.ws17{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws1b{word-spacing:-11.540267pt;}
.ws39{word-spacing:-11.539733pt;}
.ws46{word-spacing:-11.498667pt;}
.ws26{word-spacing:-11.484267pt;}
.ws42{word-spacing:-11.480533pt;}
.ws12{word-spacing:-11.429333pt;}
.ws3a{word-spacing:-11.402133pt;}
.ws1f{word-spacing:-11.325333pt;}
.ws1c{word-spacing:-11.300267pt;}
.ws41{word-spacing:-11.270933pt;}
.ws34{word-spacing:-10.962133pt;}
.ws4a{word-spacing:-10.951467pt;}
.ws2f{word-spacing:-10.636800pt;}
.ws2d{word-spacing:-10.631467pt;}
.ws3d{word-spacing:-10.524800pt;}
.ws31{word-spacing:-10.492800pt;}
.ws30{word-spacing:-10.316800pt;}
.ws32{word-spacing:-10.311467pt;}
.ws3b{word-spacing:-10.258133pt;}
.ws2e{word-spacing:-10.172800pt;}
.ws40{word-spacing:-9.714133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws15{word-spacing:-8.236800pt;}
.ws20{word-spacing:-7.657067pt;}
.wsc{word-spacing:-7.603200pt;}
.ws4d{word-spacing:-7.462400pt;}
.ws27{word-spacing:-7.337067pt;}
.ws2a{word-spacing:-7.275733pt;}
.ws22{word-spacing:-7.016533pt;}
.ws28{word-spacing:-6.984533pt;}
.ws24{word-spacing:-6.957867pt;}
.ws23{word-spacing:-0.053440pt;}
.wsf{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._11{margin-left:-5.804480pt;}
._d{margin-left:-4.744853pt;}
._a{margin-left:-3.575147pt;}
._9{margin-left:-2.532693pt;}
._0{margin-left:-1.635093pt;}
._1{width:1.057387pt;}
._8{width:2.239893pt;}
._7{width:3.160749pt;}
._2{width:4.157877pt;}
._3{width:5.098177pt;}
._4{width:6.038934pt;}
._c{width:7.212049pt;}
._e{width:8.176320pt;}
._6{width:9.213332pt;}
._5{width:10.367467pt;}
._b{width:12.837973pt;}
._14{width:13.926293pt;}
._12{width:14.856320pt;}
._13{width:15.850133pt;}
._21{width:16.908160pt;}
._17{width:18.704000pt;}
._18{width:20.554432pt;}
._15{width:21.779616pt;}
._f{width:22.787097pt;}
._10{width:24.076047pt;}
._1f{width:25.301027pt;}
._22{width:27.842240pt;}
._23{width:29.178240pt;}
._16{width:39.333791pt;}
._1c{width:48.562880pt;}
._1a{width:67.323947pt;}
._1e{width:73.983360pt;}
._1d{width:95.633280pt;}
._1b{width:114.053440pt;}
._19{width:128.372587pt;}
._20{width:177.100267pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:2.960000pt;}
.y134{bottom:4.000000pt;}
.yd4{bottom:6.960000pt;}
.yd8{bottom:6.986667pt;}
.yd5{bottom:7.040000pt;}
.y152{bottom:7.066667pt;}
.y11f{bottom:7.600000pt;}
.y114{bottom:7.626667pt;}
.y11e{bottom:7.680000pt;}
.y113{bottom:7.706667pt;}
.y136{bottom:18.640000pt;}
.y16a{bottom:19.200000pt;}
.y142{bottom:20.400000pt;}
.y125{bottom:22.640000pt;}
.yd2{bottom:31.280000pt;}
.y141{bottom:36.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y57{bottom:99.706667pt;}
.y111{bottom:103.546667pt;}
.y1ba{bottom:105.866667pt;}
.yfa{bottom:108.026667pt;}
.y129{bottom:109.386667pt;}
.y82{bottom:112.426667pt;}
.y56{bottom:115.306667pt;}
.y172{bottom:116.666667pt;}
.yad{bottom:119.466667pt;}
.y1b9{bottom:121.546667pt;}
.yf9{bottom:123.626667pt;}
.y161{bottom:123.786667pt;}
.y27{bottom:124.666667pt;}
.y81{bottom:128.026667pt;}
.y171{bottom:130.026667pt;}
.y18d{bottom:130.266667pt;}
.y55{bottom:130.906667pt;}
.yac{bottom:135.066667pt;}
.y110{bottom:135.226667pt;}
.y160{bottom:139.386667pt;}
.y26{bottom:140.266667pt;}
.y80{bottom:143.706667pt;}
.y1b8{bottom:145.146667pt;}
.y18c{bottom:145.946667pt;}
.y54{bottom:146.586667pt;}
.yf8{bottom:147.306667pt;}
.y128{bottom:149.306667pt;}
.yab{bottom:151.466667pt;}
.y170{bottom:154.346667pt;}
.y15f{bottom:155.066667pt;}
.y25{bottom:155.946667pt;}
.y7f{bottom:159.306667pt;}
.y1b7{bottom:160.746667pt;}
.y18b{bottom:161.546667pt;}
.y13e{bottom:162.906667pt;}
.y10f{bottom:163.866667pt;}
.yaa{bottom:167.066667pt;}
.yd0{bottom:169.626667pt;}
.y15e{bottom:170.666667pt;}
.y53{bottom:172.426667pt;}
.y127{bottom:173.626667pt;}
.y7e{bottom:174.986667pt;}
.y1b6{bottom:176.426667pt;}
.y13d{bottom:178.586667pt;}
.y16f{bottom:178.666667pt;}
.yf7{bottom:178.906667pt;}
.y24{bottom:179.546667pt;}
.ya9{bottom:183.386667pt;}
.y15d{bottom:186.266667pt;}
.y7d{bottom:190.586667pt;}
.y18a{bottom:193.226667pt;}
.y13c{bottom:194.186667pt;}
.yf6{bottom:194.506667pt;}
.y126{bottom:197.946667pt;}
.ya8{bottom:199.786667pt;}
.y1b5{bottom:200.026667pt;}
.ycf{bottom:201.306667pt;}
.y15c{bottom:201.946667pt;}
.y16e{bottom:202.906667pt;}
.y52{bottom:204.186667pt;}
.y189{bottom:208.826667pt;}
.y13b{bottom:209.866667pt;}
.yf5{bottom:210.186667pt;}
.y23{bottom:211.146667pt;}
.ya7{bottom:215.386667pt;}
.y1b4{bottom:215.626667pt;}
.y7c{bottom:216.506667pt;}
.yce{bottom:216.906667pt;}
.y15b{bottom:217.546667pt;}
.y124{bottom:222.186667pt;}
.y13a{bottom:225.466667pt;}
.yf4{bottom:225.786667pt;}
.y22{bottom:226.826667pt;}
.y16d{bottom:227.226667pt;}
.ya6{bottom:231.786667pt;}
.ycd{bottom:232.506667pt;}
.y15a{bottom:233.226667pt;}
.y51{bottom:235.786667pt;}
.y188{bottom:237.466667pt;}
.y1b3{bottom:239.306667pt;}
.y139{bottom:241.066667pt;}
.yf3{bottom:241.466667pt;}
.y21{bottom:242.426667pt;}
.ya5{bottom:248.106667pt;}
.y7b{bottom:248.186667pt;}
.y159{bottom:248.826667pt;}
.y50{bottom:251.466667pt;}
.y16c{bottom:251.546667pt;}
.y20{bottom:258.106667pt;}
.y1b2{bottom:262.906667pt;}
.y7a{bottom:263.786667pt;}
.y138{bottom:264.746667pt;}
.yf2{bottom:265.066667pt;}
.y4f{bottom:267.066667pt;}
.y1f{bottom:273.706667pt;}
.y169{bottom:275.786667pt;}
.y79{bottom:279.466667pt;}
.y158{bottom:279.786667pt;}
.ya4{bottom:280.506667pt;}
.y123{bottom:281.146667pt;}
.y1b1{bottom:286.586667pt;}
.y1e{bottom:289.306667pt;}
.y157{bottom:290.666667pt;}
.y4e{bottom:292.986667pt;}
.y140{bottom:294.026667pt;}
.y78{bottom:295.066667pt;}
.yf1{bottom:296.666667pt;}
.y122{bottom:296.746667pt;}
.y16b{bottom:300.106667pt;}
.y1b0{bottom:302.186667pt;}
.ycc{bottom:310.666667pt;}
.y77{bottom:310.746667pt;}
.ya3{bottom:312.186667pt;}
.yf0{bottom:312.346667pt;}
.y1d{bottom:312.986667pt;}
.y156{bottom:314.906667pt;}
.y1af{bottom:317.786667pt;}
.y121{bottom:318.106667pt;}
.y4d{bottom:324.666667pt;}
.y76{bottom:326.346667pt;}
.ya2{bottom:327.786667pt;}
.yef{bottom:327.946667pt;}
.y155{bottom:339.226667pt;}
.y4c{bottom:340.266667pt;}
.y1ae{bottom:341.466667pt;}
.y120{bottom:342.346667pt;}
.y168{bottom:343.386667pt;}
.yee{bottom:343.626667pt;}
.y1c{bottom:344.906667pt;}
.y13f{bottom:351.386667pt;}
.ycb{bottom:352.186667pt;}
.y75{bottom:352.266667pt;}
.y4b{bottom:355.946667pt;}
.y1ad{bottom:357.066667pt;}
.y167{bottom:359.066667pt;}
.yed{bottom:359.226667pt;}
.ya1{bottom:359.466667pt;}
.y154{bottom:363.546667pt;}
.y11d{bottom:366.666667pt;}
.y4a{bottom:371.546667pt;}
.yec{bottom:374.826667pt;}
.ya0{bottom:375.066667pt;}
.y1ac{bottom:380.746667pt;}
.y74{bottom:383.946667pt;}
.y166{bottom:384.906667pt;}
.y49{bottom:387.226667pt;}
.y153{bottom:387.866667pt;}
.y1b{bottom:388.106667pt;}
.y9f{bottom:390.666667pt;}
.y11c{bottom:391.626667pt;}
.y1ab{bottom:396.346667pt;}
.yca{bottom:399.546667pt;}
.y73{bottom:399.626667pt;}
.y48{bottom:402.826667pt;}
.y9e{bottom:406.346667pt;}
.yeb{bottom:406.506667pt;}
.y151{bottom:412.106667pt;}
.y72{bottom:415.226667pt;}
.y11b{bottom:415.946667pt;}
.y165{bottom:416.666667pt;}
.y47{bottom:418.453333pt;}
.y1aa{bottom:419.973333pt;}
.y1a{bottom:421.013333pt;}
.y71{bottom:430.853333pt;}
.y1a9{bottom:435.653333pt;}
.y150{bottom:436.453333pt;}
.y19{bottom:436.613333pt;}
.y9d{bottom:437.973333pt;}
.yea{bottom:438.133333pt;}
.y11a{bottom:440.293333pt;}
.y164{bottom:445.333333pt;}
.yc9{bottom:446.453333pt;}
.y70{bottom:446.533333pt;}
.y46{bottom:450.133333pt;}
.y18{bottom:452.293333pt;}
.y9c{bottom:453.573333pt;}
.y1a8{bottom:459.253333pt;}
.y14f{bottom:460.773333pt;}
.y6f{bottom:462.133333pt;}
.y10e{bottom:465.093333pt;}
.y45{bottom:465.733333pt;}
.y17{bottom:467.893333pt;}
.y9b{bottom:469.253333pt;}
.ye9{bottom:469.733333pt;}
.y1a7{bottom:474.933333pt;}
.yc8{bottom:477.733333pt;}
.y6e{bottom:477.813333pt;}
.y44{bottom:481.413333pt;}
.y16{bottom:483.573333pt;}
.y9a{bottom:484.853333pt;}
.y14e{bottom:485.093333pt;}
.yc7{bottom:493.413333pt;}
.y10d{bottom:496.853333pt;}
.y43{bottom:497.013333pt;}
.y1a6{bottom:498.533333pt;}
.y15{bottom:499.173333pt;}
.ye8{bottom:501.413333pt;}
.y6d{bottom:503.653333pt;}
.y99{bottom:508.533333pt;}
.yc6{bottom:509.013333pt;}
.y14d{bottom:509.333333pt;}
.y10c{bottom:512.453333pt;}
.y1a5{bottom:514.133333pt;}
.y14{bottom:514.773333pt;}
.y119{bottom:515.173333pt;}
.y187{bottom:517.813333pt;}
.y42{bottom:520.613333pt;}
.yc5{bottom:524.613333pt;}
.ye7{bottom:525.333333pt;}
.y10b{bottom:528.133333pt;}
.y13{bottom:530.453333pt;}
.y14c{bottom:533.653333pt;}
.y186{bottom:533.733333pt;}
.y6c{bottom:535.413333pt;}
.y1a4{bottom:537.813333pt;}
.y98{bottom:540.133333pt;}
.yc4{bottom:540.293333pt;}
.y10a{bottom:543.733333pt;}
.y118{bottom:543.813333pt;}
.y12{bottom:546.053333pt;}
.y135{bottom:550.853333pt;}
.y6b{bottom:551.013333pt;}
.y41{bottom:552.213333pt;}
.y1a3{bottom:553.413333pt;}
.yc3{bottom:555.893333pt;}
.y97{bottom:556.453333pt;}
.y14b{bottom:557.973333pt;}
.y185{bottom:558.053333pt;}
.ye6{bottom:558.213333pt;}
.y11{bottom:561.733333pt;}
.y6a{bottom:566.613333pt;}
.y40{bottom:568.613333pt;}
.y96{bottom:572.853333pt;}
.y1cb{bottom:573.653333pt;}
.ye5{bottom:573.893333pt;}
.y109{bottom:575.333333pt;}
.y1a2{bottom:577.093333pt;}
.y10{bottom:577.333333pt;}
.yc2{bottom:581.813333pt;}
.y14a{bottom:582.213333pt;}
.y184{bottom:582.293333pt;}
.y3f{bottom:585.013333pt;}
.ye4{bottom:589.493333pt;}
.y133{bottom:590.773333pt;}
.y108{bottom:591.013333pt;}
.y69{bottom:592.533333pt;}
.yf{bottom:592.933333pt;}
.y1ca{bottom:597.333333pt;}
.y1a1{bottom:601.013333pt;}
.ye3{bottom:605.093333pt;}
.y95{bottom:605.253333pt;}
.y149{bottom:606.533333pt;}
.y183{bottom:606.613333pt;}
.ye{bottom:608.613333pt;}
.y3e{bottom:609.413333pt;}
.y1c9{bottom:612.933333pt;}
.yc1{bottom:613.493333pt;}
.y107{bottom:616.853333pt;}
.y94{bottom:620.853333pt;}
.yd{bottom:624.213333pt;}
.y68{bottom:624.293333pt;}
.ye2{bottom:628.773333pt;}
.yc0{bottom:629.173333pt;}
.y148{bottom:630.853333pt;}
.y182{bottom:630.933333pt;}
.y93{bottom:636.533333pt;}
.y1c8{bottom:636.613333pt;}
.yc{bottom:639.893333pt;}
.y3d{bottom:641.333333pt;}
.y1a0{bottom:643.893333pt;}
.ybf{bottom:644.773333pt;}
.y106{bottom:648.613333pt;}
.y92{bottom:652.133333pt;}
.y1c7{bottom:652.213333pt;}
.y147{bottom:655.173333pt;}
.y181{bottom:655.253333pt;}
.yb{bottom:655.493333pt;}
.ye1{bottom:660.373333pt;}
.y105{bottom:664.213333pt;}
.y91{bottom:667.733333pt;}
.y19f{bottom:667.813333pt;}
.ybe{bottom:670.693333pt;}
.y67{bottom:671.173333pt;}
.ye0{bottom:676.053333pt;}
.ya{bottom:679.413333pt;}
.y17f{bottom:679.493333pt;}
.y90{bottom:683.413333pt;}
.y3c{bottom:684.213333pt;}
.y104{bottom:687.893333pt;}
.y1c6{bottom:691.493333pt;}
.ydf{bottom:691.653333pt;}
.y66{bottom:697.013333pt;}
.y8f{bottom:699.013333pt;}
.y3b{bottom:699.813333pt;}
.y19e{bottom:701.013333pt;}
.ybd{bottom:702.373333pt;}
.y180{bottom:703.813333pt;}
.y163{bottom:708.293333pt;}
.y8e{bottom:714.693333pt;}
.y1c5{bottom:715.093333pt;}
.yde{bottom:715.253333pt;}
.y3a{bottom:715.493333pt;}
.ybc{bottom:718.053333pt;}
.y103{bottom:719.493333pt;}
.y9{bottom:721.013333pt;}
.y146{bottom:722.693333pt;}
.y65{bottom:728.773333pt;}
.y1c4{bottom:730.693333pt;}
.y39{bottom:731.093333pt;}
.ybb{bottom:733.653333pt;}
.y102{bottom:735.093333pt;}
.y162{bottom:736.933333pt;}
.y8d{bottom:740.613333pt;}
.y19d{bottom:743.893333pt;}
.y64{bottom:744.373333pt;}
.y1c3{bottom:746.373333pt;}
.y38{bottom:746.693333pt;}
.y17e{bottom:747.093333pt;}
.yba{bottom:749.253333pt;}
.y101{bottom:750.773333pt;}
.y8{bottom:752.613333pt;}
.y145{bottom:754.373333pt;}
.y19c{bottom:759.573333pt;}
.y63{bottom:760.053333pt;}
.y37{bottom:762.373333pt;}
.y17d{bottom:762.693333pt;}
.yb9{bottom:764.933333pt;}
.y8c{bottom:769.573333pt;}
.y144{bottom:769.973333pt;}
.y19b{bottom:775.173333pt;}
.y62{bottom:775.653333pt;}
.ydd{bottom:775.893333pt;}
.y100{bottom:776.693333pt;}
.y36{bottom:777.973333pt;}
.yb8{bottom:780.533333pt;}
.y7{bottom:784.453333pt;}
.y1c2{bottom:785.653333pt;}
.y8b{bottom:785.973333pt;}
.y19a{bottom:790.773333pt;}
.y61{bottom:791.253333pt;}
.y143{bottom:793.893333pt;}
.y17c{bottom:794.373333pt;}
.ydc{bottom:800.213333pt;}
.y35{bottom:801.653333pt;}
.y8a{bottom:802.293333pt;}
.yff{bottom:805.733333pt;}
.y199{bottom:806.453333pt;}
.yb7{bottom:806.533333pt;}
.y1c1{bottom:809.253333pt;}
.y17b{bottom:809.973333pt;}
.y60{bottom:814.933333pt;}
.y6{bottom:816.453333pt;}
.y89{bottom:818.693333pt;}
.y117{bottom:818.853333pt;}
.y198{bottom:822.053333pt;}
.ydb{bottom:824.533333pt;}
.y1c0{bottom:824.853333pt;}
.y17a{bottom:825.653333pt;}
.y132{bottom:830.533333pt;}
.y34{bottom:833.253333pt;}
.y88{bottom:835.013333pt;}
.yb6{bottom:835.493333pt;}
.yfe{bottom:837.333333pt;}
.y197{bottom:837.733333pt;}
.y1bf{bottom:840.533333pt;}
.y179{bottom:841.253333pt;}
.y131{bottom:846.213333pt;}
.y5f{bottom:846.533333pt;}
.y116{bottom:848.133333pt;}
.y5{bottom:848.533333pt;}
.yda{bottom:848.773333pt;}
.y33{bottom:848.853333pt;}
.yb5{bottom:851.813333pt;}
.yfd{bottom:852.933333pt;}
.y196{bottom:853.333333pt;}
.y178{bottom:856.853333pt;}
.y87{bottom:861.733333pt;}
.y5e{bottom:862.213333pt;}
.y1be{bottom:864.133333pt;}
.y32{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.yfc{bottom:868.613333pt;}
.y195{bottom:868.933333pt;}
.y130{bottom:869.813333pt;}
.y115{bottom:872.453333pt;}
.y177{bottom:872.533333pt;}
.yd9{bottom:873.093333pt;}
.y5d{bottom:877.813333pt;}
.y1bd{bottom:879.813333pt;}
.y31{bottom:880.133333pt;}
.yb4{bottom:884.213333pt;}
.y194{bottom:884.613333pt;}
.y176{bottom:888.133333pt;}
.y5c{bottom:893.413333pt;}
.y30{bottom:895.813333pt;}
.y112{bottom:896.693333pt;}
.yd7{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.yb3{bottom:899.840000pt;}
.y193{bottom:900.240000pt;}
.y12f{bottom:901.440000pt;}
.y1bc{bottom:903.440000pt;}
.y175{bottom:903.840000pt;}
.y86{bottom:909.040000pt;}
.y5b{bottom:909.120000pt;}
.y2f{bottom:911.440000pt;}
.yb2{bottom:915.520000pt;}
.y192{bottom:915.840000pt;}
.y12e{bottom:917.120000pt;}
.yd6{bottom:921.680000pt;}
.y85{bottom:924.720000pt;}
.y2e{bottom:927.040000pt;}
.yb1{bottom:931.120000pt;}
.y191{bottom:931.520000pt;}
.y12d{bottom:932.720000pt;}
.y5a{bottom:934.960000pt;}
.y174{bottom:935.440000pt;}
.y84{bottom:940.320000pt;}
.y2d{bottom:942.720000pt;}
.yd1{bottom:946.000000pt;}
.yb0{bottom:946.800000pt;}
.y190{bottom:947.120000pt;}
.y12c{bottom:948.400000pt;}
.y173{bottom:951.040000pt;}
.yfb{bottom:955.040000pt;}
.y18f{bottom:962.800000pt;}
.y12b{bottom:964.000000pt;}
.y83{bottom:966.240000pt;}
.y2c{bottom:966.320000pt;}
.y59{bottom:966.720000pt;}
.yd3{bottom:970.320000pt;}
.yaf{bottom:970.400000pt;}
.y18e{bottom:978.400000pt;}
.y58{bottom:982.320000pt;}
.y12a{bottom:987.600000pt;}
.y1bb{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yae{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h15{height:23.706667pt;}
.h10{height:24.320000pt;}
.hf{height:24.346667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h16{height:36.034687pt;}
.h11{height:39.280000pt;}
.h6{height:45.246562pt;}
.hb{height:47.920000pt;}
.h17{height:48.000000pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h18{height:54.187500pt;}
.h9{height:54.927899pt;}
.h7{height:55.631875pt;}
.h14{height:56.640000pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h13{height:198.026667pt;}
.h12{height:204.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w21{width:34.826667pt;}
.w3{width:38.480000pt;}
.w1e{width:38.640000pt;}
.w26{width:39.546667pt;}
.w30{width:43.760000pt;}
.wb{width:47.760000pt;}
.wa{width:49.120000pt;}
.w2c{width:50.160000pt;}
.w2a{width:50.240000pt;}
.w7{width:57.920000pt;}
.w9{width:57.946667pt;}
.w8{width:58.000000pt;}
.w24{width:70.160000pt;}
.w25{width:70.186667pt;}
.w23{width:77.440000pt;}
.w22{width:79.680000pt;}
.w2b{width:80.000000pt;}
.w31{width:82.400000pt;}
.w1f{width:88.320000pt;}
.w13{width:92.826667pt;}
.w14{width:93.040000pt;}
.w11{width:93.120000pt;}
.w15{width:98.480000pt;}
.w12{width:101.920000pt;}
.w27{width:118.960000pt;}
.w20{width:119.066667pt;}
.we{width:121.200000pt;}
.w2d{width:125.440000pt;}
.wf{width:126.026667pt;}
.w2f{width:126.800000pt;}
.wc{width:128.720000pt;}
.w29{width:130.960000pt;}
.wd{width:133.786667pt;}
.w4{width:141.280000pt;}
.w6{width:147.200000pt;}
.w5{width:175.146667pt;}
.w1d{width:176.480000pt;}
.w10{width:188.666667pt;}
.w2e{width:192.026667pt;}
.w18{width:195.146667pt;}
.w1b{width:195.546667pt;}
.w17{width:196.986667pt;}
.w19{width:207.200000pt;}
.w28{width:220.426667pt;}
.w1c{width:228.586667pt;}
.w16{width:600.693333pt;}
.w1a{width:601.973333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.440000pt;}
.x25{left:6.800000pt;}
.x41{left:8.400000pt;}
.x3e{left:10.320000pt;}
.x36{left:17.840000pt;}
.x42{left:19.840000pt;}
.x39{left:23.840000pt;}
.x37{left:27.120000pt;}
.x3c{left:29.440000pt;}
.x3a{left:35.200000pt;}
.x34{left:39.440000pt;}
.x1{left:60.480000pt;}
.x2a{left:61.440000pt;}
.x3f{left:70.080000pt;}
.x4e{left:75.439988pt;}
.x5{left:84.479988pt;}
.x32{left:96.640000pt;}
.x5a{left:98.879988pt;}
.x18{left:108.479988pt;}
.x4{left:109.999988pt;}
.x28{left:112.639988pt;}
.x6{left:120.479988pt;}
.x7{left:129.199988pt;}
.x8{left:138.559988pt;}
.x50{left:141.040000pt;}
.x19{left:144.986667pt;}
.x9{left:147.386655pt;}
.x54{left:148.746667pt;}
.x45{left:155.226667pt;}
.x2{left:171.306655pt;}
.x51{left:181.306667pt;}
.x1b{left:184.106667pt;}
.xa{left:193.866655pt;}
.x55{left:199.626667pt;}
.xb{left:202.586655pt;}
.xc{left:220.986655pt;}
.xd{left:229.786655pt;}
.x46{left:235.546667pt;}
.x2b{left:250.746667pt;}
.xe{left:258.186655pt;}
.x4b{left:262.426655pt;}
.x24{left:265.466667pt;}
.xf{left:266.986655pt;}
.x23{left:268.106655pt;}
.x29{left:273.066667pt;}
.x3d{left:292.186667pt;}
.x35{left:294.346667pt;}
.x52{left:300.986667pt;}
.x43{left:312.586667pt;}
.x47{left:313.626667pt;}
.x1c{left:326.026667pt;}
.x10{left:331.466655pt;}
.x11{left:340.186655pt;}
.x2c{left:344.586667pt;}
.x59{left:353.946655pt;}
.x12{left:367.066655pt;}
.x13{left:375.946655pt;}
.x4c{left:378.026655pt;}
.x1e{left:384.586667pt;}
.x26{left:394.826667pt;}
.x44{left:401.626667pt;}
.x14{left:419.946655pt;}
.x15{left:428.666655pt;}
.x1f{left:443.226667pt;}
.x16{left:445.306655pt;}
.x2d{left:447.146667pt;}
.x30{left:450.826655pt;}
.x17{left:454.213322pt;}
.x48{left:455.253333pt;}
.x31{left:460.853322pt;}
.x38{left:490.133333pt;}
.x1d{left:501.813333pt;}
.x56{left:518.453333pt;}
.x40{left:521.493333pt;}
.x49{left:533.333333pt;}
.x2e{left:540.693333pt;}
.x20{left:551.573333pt;}
.x57{left:562.853333pt;}
.x53{left:573.013333pt;}
.x3b{left:586.933333pt;}
.x33{left:592.933333pt;}
.x4d{left:597.013322pt;}
.x4f{left:598.053322pt;}
.x21{left:599.973333pt;}
.x4a{left:604.133333pt;}
.x27{left:610.053322pt;}
.x58{left:615.013322pt;}
.x2f{left:634.373333pt;}
.x22{left:678.053322pt;}
.x3{left:711.413322pt;}
}




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