
    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_2ba8327bd646719dddfd0f8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_90e7e5c2bd341eafeae76d55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_fd49426b0b6de7219550bf87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab48f11f2d877ddb108e5c8d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_44a909ae9b2878d444a269ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8e1ec90e91ef9e4d4a5fcb03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_feb6d43aab04531a99cb93ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_3a7134590d6ae5aa89f31310.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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);}
.v2{vertical-align:-33.120000px;}
.v6{vertical-align:-3.601188px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.601188px;}
.v9{vertical-align:30.961800px;}
.v1{vertical-align:33.120000px;}
.v3{vertical-align:34.562988px;}
.v8{vertical-align:35.999856px;}
.v7{vertical-align:41.043924px;}
.v4{vertical-align:68.765256px;}
.ls20{letter-spacing:-0.273600px;}
.ls32{letter-spacing:-0.198396px;}
.ls34{letter-spacing:-0.192384px;}
.ls4d{letter-spacing:-0.186372px;}
.ls36{letter-spacing:-0.180360px;}
.ls4e{letter-spacing:-0.174348px;}
.ls52{letter-spacing:-0.162324px;}
.ls37{letter-spacing:-0.156312px;}
.ls3f{letter-spacing:-0.150300px;}
.ls2e{letter-spacing:-0.138276px;}
.ls3c{letter-spacing:-0.132264px;}
.ls27{letter-spacing:-0.129600px;}
.ls30{letter-spacing:-0.126252px;}
.ls2f{letter-spacing:-0.114228px;}
.ls38{letter-spacing:-0.108216px;}
.ls17{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.105336px;}
.ls39{letter-spacing:-0.102204px;}
.lsa{letter-spacing:-0.092268px;}
.ls1e{letter-spacing:-0.079200px;}
.ls15{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.066132px;}
.ls16{letter-spacing:-0.057600px;}
.ls51{letter-spacing:-0.048096px;}
.ls21{letter-spacing:-0.043200px;}
.ls31{letter-spacing:-0.036072px;}
.ls22{letter-spacing:-0.036000px;}
.ls4a{letter-spacing:-0.030060px;}
.ls19{letter-spacing:-0.028800px;}
.ls18{letter-spacing:-0.021600px;}
.ls50{letter-spacing:-0.018036px;}
.ls14{letter-spacing:-0.014400px;}
.ls3d{letter-spacing:-0.012024px;}
.lsb{letter-spacing:-0.007200px;}
.ls4c{letter-spacing:-0.006012px;}
.ls7{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.006012px;}
.ls4{letter-spacing:0.007200px;}
.ls29{letter-spacing:0.012024px;}
.ls6{letter-spacing:0.014400px;}
.ls2a{letter-spacing:0.018036px;}
.ls5{letter-spacing:0.021600px;}
.lsd{letter-spacing:0.028800px;}
.ls8{letter-spacing:0.033552px;}
.ls10{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.036072px;}
.ls45{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls11{letter-spacing:0.050400px;}
.ls49{letter-spacing:0.054108px;}
.lsf{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.058716px;}
.ls41{letter-spacing:0.060120px;}
.ls1b{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.075492px;}
.ls47{letter-spacing:0.078156px;}
.ls0{letter-spacing:0.079056px;}
.ls1c{letter-spacing:0.079200px;}
.ls13{letter-spacing:0.086400px;}
.ls3e{letter-spacing:0.090180px;}
.ls26{letter-spacing:0.092232px;}
.ls3{letter-spacing:0.092268px;}
.ls12{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.100800px;}
.ls2c{letter-spacing:0.102204px;}
.ls48{letter-spacing:0.108216px;}
.ls43{letter-spacing:0.114228px;}
.ls4f{letter-spacing:0.115200px;}
.ls44{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.125820px;}
.ls46{letter-spacing:0.126252px;}
.ls3b{letter-spacing:0.138276px;}
.ls1d{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.150300px;}
.lsc{letter-spacing:0.158400px;}
.ls2d{letter-spacing:0.162324px;}
.ls2b{letter-spacing:0.168336px;}
.ls28{letter-spacing:0.178200px;}
.ls4b{letter-spacing:0.180360px;}
.ls23{letter-spacing:0.252000px;}
.ls24{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.492984px;}
.ls53{letter-spacing:198.898200px;}
.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;}
}
.ws39{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.062268px;}
.ws74{word-spacing:-18.360000px;}
.ws37{word-spacing:-18.086400px;}
.ws8b{word-spacing:-18.064800px;}
.wsc{word-spacing:-18.043200px;}
.ws23{word-spacing:-18.036000px;}
.ws31{word-spacing:-18.021600px;}
.wsb{word-spacing:-18.014400px;}
.ws24{word-spacing:-18.000000px;}
.ws72{word-spacing:-17.985600px;}
.wsd{word-spacing:-17.971200px;}
.ws73{word-spacing:-17.956800px;}
.ws38{word-spacing:-17.726400px;}
.ws36{word-spacing:-11.864664px;}
.wsb0{word-spacing:-0.438876px;}
.wsb1{word-spacing:-0.432864px;}
.wsac{word-spacing:-0.420840px;}
.wsb6{word-spacing:-0.408816px;}
.ws93{word-spacing:-0.403200px;}
.ws9a{word-spacing:-0.396000px;}
.wsc4{word-spacing:-0.378756px;}
.ws95{word-spacing:-0.360000px;}
.ws98{word-spacing:-0.356400px;}
.ws8e{word-spacing:-0.345600px;}
.ws94{word-spacing:-0.331200px;}
.wsbc{word-spacing:-0.330660px;}
.ws2b{word-spacing:-0.280800px;}
.ws90{word-spacing:-0.273600px;}
.ws21{word-spacing:-0.266400px;}
.ws85{word-spacing:-0.259200px;}
.ws32{word-spacing:-0.252000px;}
.ws87{word-spacing:-0.244800px;}
.ws97{word-spacing:-0.237600px;}
.ws1b{word-spacing:-0.230400px;}
.ws8c{word-spacing:-0.223200px;}
.ws2f{word-spacing:-0.216000px;}
.ws8d{word-spacing:-0.208800px;}
.ws2d{word-spacing:-0.201600px;}
.ws8{word-spacing:-0.194400px;}
.ws28{word-spacing:-0.187200px;}
.ws26{word-spacing:-0.180000px;}
.ws10{word-spacing:-0.172800px;}
.ws3{word-spacing:-0.167760px;}
.ws86{word-spacing:-0.165600px;}
.ws2e{word-spacing:-0.158400px;}
.ws91{word-spacing:-0.158112px;}
.ws19{word-spacing:-0.151200px;}
.ws25{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.136800px;}
.ws29{word-spacing:-0.129600px;}
.ws4{word-spacing:-0.125820px;}
.ws33{word-spacing:-0.122400px;}
.ws11{word-spacing:-0.115200px;}
.ws20{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.100800px;}
.ws6{word-spacing:-0.093600px;}
.wsf{word-spacing:-0.086400px;}
.ws7{word-spacing:-0.079200px;}
.wsa8{word-spacing:-0.078156px;}
.ws2{word-spacing:-0.075492px;}
.ws30{word-spacing:-0.072000px;}
.wse{word-spacing:-0.064800px;}
.ws14{word-spacing:-0.057600px;}
.ws1a{word-spacing:-0.050400px;}
.wsad{word-spacing:-0.048096px;}
.ws1e{word-spacing:-0.043200px;}
.wsc1{word-spacing:-0.036072px;}
.ws1d{word-spacing:-0.036000px;}
.wsc6{word-spacing:-0.030060px;}
.ws1f{word-spacing:-0.028800px;}
.ws15{word-spacing:-0.021600px;}
.wsbb{word-spacing:-0.018036px;}
.ws9{word-spacing:-0.014400px;}
.wsb3{word-spacing:-0.012024px;}
.ws5{word-spacing:-0.007200px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.007200px;}
.wsc3{word-spacing:0.012024px;}
.ws18{word-spacing:0.014400px;}
.ws22{word-spacing:0.021600px;}
.ws2c{word-spacing:0.028800px;}
.ws88{word-spacing:0.036000px;}
.ws2a{word-spacing:0.043200px;}
.ws8a{word-spacing:0.050400px;}
.ws1c{word-spacing:0.057600px;}
.ws8f{word-spacing:0.072000px;}
.wsaf{word-spacing:0.072144px;}
.wsa5{word-spacing:0.078156px;}
.ws27{word-spacing:0.079200px;}
.ws34{word-spacing:0.086400px;}
.wsb5{word-spacing:0.090180px;}
.ws13{word-spacing:0.093600px;}
.wsba{word-spacing:0.096192px;}
.ws35{word-spacing:0.100800px;}
.wsb2{word-spacing:0.102204px;}
.ws89{word-spacing:0.108000px;}
.wsc9{word-spacing:0.108216px;}
.ws96{word-spacing:0.115200px;}
.wsb9{word-spacing:0.120240px;}
.ws17{word-spacing:0.122400px;}
.wsa7{word-spacing:0.126252px;}
.ws92{word-spacing:0.129600px;}
.ws99{word-spacing:0.136800px;}
.wsb8{word-spacing:0.156312px;}
.ws9b{word-spacing:0.158400px;}
.wsab{word-spacing:0.192384px;}
.wsaa{word-spacing:0.198396px;}
.ws84{word-spacing:0.208800px;}
.ws66{word-spacing:0.216000px;}
.wsae{word-spacing:0.222444px;}
.wsb4{word-spacing:0.240480px;}
.wsa9{word-spacing:0.246492px;}
.ws65{word-spacing:0.288000px;}
.ws83{word-spacing:0.309600px;}
.ws50{word-spacing:0.388800px;}
.ws46{word-spacing:0.475200px;}
.ws48{word-spacing:0.662400px;}
.ws56{word-spacing:0.676800px;}
.ws76{word-spacing:0.684000px;}
.ws75{word-spacing:0.698400px;}
.ws47{word-spacing:0.734400px;}
.ws82{word-spacing:0.900000px;}
.ws58{word-spacing:0.928800px;}
.ws81{word-spacing:0.936000px;}
.ws3e{word-spacing:0.950400px;}
.ws3f{word-spacing:0.993600px;}
.ws57{word-spacing:1.051200px;}
.ws49{word-spacing:2.109600px;}
.ws43{word-spacing:3.211200px;}
.ws68{word-spacing:3.448800px;}
.ws69{word-spacing:3.484800px;}
.ws6a{word-spacing:3.607200px;}
.ws42{word-spacing:5.248800px;}
.ws40{word-spacing:5.299200px;}
.ws41{word-spacing:5.479200px;}
.ws6c{word-spacing:5.616000px;}
.ws62{word-spacing:5.630400px;}
.ws63{word-spacing:5.652000px;}
.ws6b{word-spacing:5.774400px;}
.ws64{word-spacing:5.796000px;}
.ws44{word-spacing:5.997600px;}
.ws45{word-spacing:6.091200px;}
.ws4c{word-spacing:6.199200px;}
.ws4b{word-spacing:6.372000px;}
.ws4a{word-spacing:6.480000px;}
.ws67{word-spacing:6.796800px;}
.ws3d{word-spacing:7.092000px;}
.ws3c{word-spacing:7.164000px;}
.ws7b{word-spacing:7.178400px;}
.ws7a{word-spacing:7.200000px;}
.ws7c{word-spacing:7.236000px;}
.ws71{word-spacing:8.913600px;}
.ws54{word-spacing:9.734400px;}
.ws55{word-spacing:9.741600px;}
.ws3b{word-spacing:13.564800px;}
.ws3a{word-spacing:13.615200px;}
.ws4f{word-spacing:14.724000px;}
.ws5a{word-spacing:16.891200px;}
.ws59{word-spacing:16.898400px;}
.ws5b{word-spacing:17.467200px;}
.ws4d{word-spacing:17.611200px;}
.ws4e{word-spacing:17.625600px;}
.ws5e{word-spacing:17.632800px;}
.ws5d{word-spacing:17.661600px;}
.ws5c{word-spacing:17.683200px;}
.ws6e{word-spacing:19.008000px;}
.ws6d{word-spacing:19.022400px;}
.ws70{word-spacing:19.029600px;}
.ws6f{word-spacing:19.065600px;}
.ws79{word-spacing:20.268000px;}
.ws78{word-spacing:20.332800px;}
.ws52{word-spacing:20.354400px;}
.ws77{word-spacing:20.397600px;}
.ws51{word-spacing:20.455200px;}
.ws53{word-spacing:20.534400px;}
.ws80{word-spacing:24.048000px;}
.ws7d{word-spacing:24.336000px;}
.ws7e{word-spacing:24.364800px;}
.ws7f{word-spacing:24.501600px;}
.ws60{word-spacing:28.000800px;}
.ws5f{word-spacing:28.224000px;}
.ws61{word-spacing:28.418400px;}
.wsbe{word-spacing:49.592988px;}
.wsc2{word-spacing:65.061864px;}
.wsc0{word-spacing:65.428596px;}
.wsbf{word-spacing:79.478640px;}
.wscb{word-spacing:96.011640px;}
.wsc5{word-spacing:107.903376px;}
.wsa0{word-spacing:110.872800px;}
.ws9d{word-spacing:110.880000px;}
.wsc7{word-spacing:130.225932px;}
.wsbd{word-spacing:166.045428px;}
.ws9e{word-spacing:174.232800px;}
.wsa6{word-spacing:175.887072px;}
.wsca{word-spacing:185.121504px;}
.wsc8{word-spacing:200.073348px;}
.wsa3{word-spacing:202.334400px;}
.wsa4{word-spacing:202.514400px;}
.wsa2{word-spacing:204.120000px;}
.ws9f{word-spacing:206.280000px;}
.wscc{word-spacing:218.800728px;}
.wsa1{word-spacing:238.327200px;}
.wsb7{word-spacing:286.519896px;}
.ws9c{word-spacing:432.360000px;}
._2f{margin-left:-127.440000px;}
._8a{margin-left:-108.708984px;}
._1d{margin-left:-95.400000px;}
._37{margin-left:-93.240000px;}
._3a{margin-left:-91.440000px;}
._80{margin-left:-84.600864px;}
._81{margin-left:-68.257656px;}
._79{margin-left:-64.556856px;}
._14{margin-left:-63.360000px;}
._75{margin-left:-57.612996px;}
._83{margin-left:-52.124040px;}
._78{margin-left:-50.991192px;}
._8b{margin-left:-45.726912px;}
._74{margin-left:-43.518276px;}
._73{margin-left:-42.234300px;}
._82{margin-left:-37.520892px;}
._7a{margin-left:-34.310484px;}
._88{margin-left:-31.364424px;}
._76{margin-left:-27.108108px;}
._87{margin-left:-25.624908px;}
._7d{margin-left:-22.334580px;}
._7b{margin-left:-20.272464px;}
._30{margin-left:-17.640000px;}
._6c{margin-left:-15.800364px;}
._69{margin-left:-13.585932px;}
._63{margin-left:-11.518992px;}
._84{margin-left:-9.365904px;}
._7e{margin-left:-6.589152px;}
._7c{margin-left:-5.366124px;}
._1e{margin-left:-3.600000px;}
._4{margin-left:-2.304000px;}
._0{margin-left:-1.022400px;}
._1{width:1.296000px;}
._62{width:3.955896px;}
._72{width:9.053460px;}
._6f{width:14.536944px;}
._6a{width:15.730884px;}
._3{width:16.992000px;}
._32{width:18.360000px;}
._6d{width:27.423324px;}
._15{width:28.440000px;}
._66{width:30.665736px;}
._61{width:33.480828px;}
._20{width:42.480000px;}
._39{width:44.640000px;}
._3c{width:46.440000px;}
._64{width:48.955716px;}
._27{width:50.400000px;}
._6{width:51.840000px;}
._a{width:55.216800px;}
._55{width:57.828312px;}
._b{width:59.119200px;}
._22{width:62.280000px;}
._12{width:64.800000px;}
._24{width:68.760000px;}
._17{width:74.520000px;}
._2b{width:76.824000px;}
._10{width:79.560000px;}
._35{width:86.040000px;}
._9{width:88.560000px;}
._11{width:91.080000px;}
._41{width:93.188196px;}
._23{width:95.032800px;}
._33{width:96.480000px;}
._36{width:99.360000px;}
._c{width:101.880000px;}
._28{width:102.960000px;}
._21{width:104.083200px;}
._8{width:106.920000px;}
._f{width:109.800000px;}
._19{width:110.880000px;}
._2a{width:115.192800px;}
._42{width:116.717328px;}
._67{width:117.991512px;}
._d{width:122.760000px;}
._4c{width:124.779060px;}
._3d{width:126.864000px;}
._4b{width:129.817836px;}
._5c{width:132.567732px;}
._13{width:137.880000px;}
._3f{width:141.414264px;}
._51{width:144.769320px;}
._25{width:145.800000px;}
._3e{width:148.388184px;}
._5e{width:155.148156px;}
._4e{width:160.899516px;}
._4d{width:162.510732px;}
._53{width:163.912572px;}
._18{width:167.400000px;}
._34{width:174.902400px;}
._56{width:175.947192px;}
._54{width:177.630912px;}
._40{width:179.032752px;}
._2{width:180.720000px;}
._47{width:185.349960px;}
._44{width:191.115468px;}
._48{width:192.390372px;}
._5{width:194.457600px;}
._26{width:197.208000px;}
._4a{width:200.109420px;}
._1a{width:202.680000px;}
._43{width:208.912392px;}
._77{width:213.722352px;}
._59{width:216.163872px;}
._52{width:218.566620px;}
._2c{width:220.680000px;}
._5d{width:222.630732px;}
._89{width:225.053208px;}
._45{width:229.532148px;}
._4f{width:234.570564px;}
._5b{width:237.239532px;}
._85{width:243.018000px;}
._57{width:244.345716px;}
._58{width:246.239496px;}
._1c{width:248.760000px;}
._50{width:251.265528px;}
._2e{width:256.680000px;}
._29{width:258.120000px;}
._46{width:260.998956px;}
._49{width:276.119136px;}
._e{width:280.080000px;}
._5a{width:285.589440px;}
._5f{width:289.273392px;}
._6e{width:291.908052px;}
._71{width:298.922652px;}
._7{width:315.360000px;}
._70{width:331.550136px;}
._7f{width:346.014648px;}
._86{width:377.559972px;}
._68{width:384.154776px;}
._60{width:400.381164px;}
._65{width:409.783932px;}
._6b{width:425.024352px;}
._31{width:657.000000px;}
._1f{width:671.040000px;}
._38{width:674.064000px;}
._3b{width:693.000000px;}
._16{width:703.080000px;}
._1b{width:877.320000px;}
._2d{width:895.320000px;}
.fc4{color:rgb(19,20,19);}
.fc2{color:rgb(25,23,24);}
.fc1{color:rgb(27,28,32);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:57.540870px;}
.y2{bottom:57.721170px;}
.y123{bottom:57.811170px;}
.y10b{bottom:77.700150px;}
.y1{bottom:77.880450px;}
.y122{bottom:77.970450px;}
.yc1{bottom:115.410450px;}
.y9e{bottom:116.040450px;}
.yca{bottom:116.670450px;}
.y76{bottom:124.410450px;}
.y42{bottom:127.830450px;}
.y66{bottom:128.010450px;}
.y33{bottom:131.610450px;}
.y143{bottom:132.420450px;}
.yaa{bottom:135.930450px;}
.y2c{bottom:139.440450px;}
.y5f{bottom:141.690450px;}
.y88{bottom:143.040450px;}
.y154{bottom:146.550450px;}
.y4f{bottom:146.640450px;}
.yd8{bottom:147.630450px;}
.y90{bottom:154.470450px;}
.yc0{bottom:156.810450px;}
.y9d{bottom:157.440450px;}
.yc9{bottom:158.070450px;}
.y15{bottom:161.130450px;}
.y142{bottom:163.470450px;}
.y75{bottom:165.810450px;}
.y65{bottom:169.410450px;}
.y32{bottom:173.010450px;}
.ya9{bottom:177.420450px;}
.y5e{bottom:183.090450px;}
.y41{bottom:184.260450px;}
.y87{bottom:184.440450px;}
.y153{bottom:187.950450px;}
.y4e{bottom:188.040450px;}
.yd7{bottom:189.030450px;}
.y141{bottom:194.520450px;}
.y2b{bottom:195.870450px;}
.ybf{bottom:198.210450px;}
.y9c{bottom:198.840450px;}
.yc8{bottom:199.470450px;}
.y121{bottom:199.830450px;}
.y74{bottom:207.210450px;}
.y64{bottom:210.810450px;}
.y31{bottom:214.410450px;}
.y14{bottom:217.560450px;}
.ya8{bottom:218.730450px;}
.y5d{bottom:224.490450px;}
.y140{bottom:225.570450px;}
.y86{bottom:225.840450px;}
.y77{bottom:229.260450px;}
.y152{bottom:229.350450px;}
.y4d{bottom:229.440450px;}
.yd6{bottom:230.430450px;}
.y120{bottom:230.790000px;}
.y8f{bottom:237.270450px;}
.ybe{bottom:239.610450px;}
.y9b{bottom:240.240450px;}
.y40{bottom:240.870450px;}
.y73{bottom:248.610450px;}
.y2a{bottom:252.210450px;}
.y30{bottom:255.810450px;}
.y13f{bottom:256.620450px;}
.y11f{bottom:261.840000px;}
.y85{bottom:267.240450px;}
.y151{bottom:270.750450px;}
.y4c{bottom:270.840450px;}
.yd5{bottom:271.830450px;}
.y13{bottom:273.900450px;}
.y8e{bottom:278.670450px;}
.y5c{bottom:280.650450px;}
.ybd{bottom:281.010450px;}
.ya7{bottom:281.190450px;}
.y9a{bottom:281.640450px;}
.yc7{bottom:282.270450px;}
.y13e{bottom:287.670450px;}
.y72{bottom:290.010450px;}
.y11e{bottom:292.890000px;}
.y63{bottom:293.610450px;}
.y2f{bottom:297.210450px;}
.y29{bottom:308.640450px;}
.y150{bottom:312.150450px;}
.y4b{bottom:312.240450px;}
.yd4{bottom:313.230450px;}
.y13d{bottom:318.720450px;}
.y8d{bottom:320.070450px;}
.ybc{bottom:322.410450px;}
.ya6{bottom:322.590450px;}
.y99{bottom:323.040450px;}
.yc6{bottom:323.670450px;}
.y11d{bottom:323.940000px;}
.y12{bottom:330.330450px;}
.y62{bottom:335.010450px;}
.y5b{bottom:337.080450px;}
.y2e{bottom:338.610450px;}
.y71{bottom:346.260450px;}
.y13c{bottom:349.770450px;}
.y84{bottom:350.040450px;}
.y14f{bottom:353.550450px;}
.y4a{bottom:353.640450px;}
.yd3{bottom:354.630450px;}
.y11c{bottom:354.990000px;}
.y8c{bottom:361.380450px;}
.ybb{bottom:363.810450px;}
.ya5{bottom:363.990450px;}
.y28{bottom:365.070450px;}
.y98{bottom:379.380450px;}
.y2d{bottom:380.010450px;}
.y13b{bottom:380.820450px;}
.y11b{bottom:386.040000px;}
.y11{bottom:386.760450px;}
.y61{bottom:391.260450px;}
.y83{bottom:391.440450px;}
.y5a{bottom:392.520450px;}
.y14e{bottom:394.950450px;}
.y49{bottom:395.040450px;}
.yd2{bottom:396.030450px;}
.y70{bottom:402.780450px;}
.y11a{bottom:404.945526px;}
.yba{bottom:405.210450px;}
.ya4{bottom:405.390450px;}
.yc5{bottom:406.380450px;}
.y13a{bottom:411.870450px;}
.y97{bottom:420.780450px;}
.y27{bottom:421.410450px;}
.y119{bottom:424.744545px;}
.y82{bottom:432.840450px;}
.y59{bottom:433.920450px;}
.y14d{bottom:436.350450px;}
.y48{bottom:436.440450px;}
.yd1{bottom:437.430450px;}
.y139{bottom:442.920450px;}
.y10{bottom:443.100450px;}
.y8b{bottom:444.180450px;}
.y118{bottom:444.633744px;}
.yb9{bottom:446.610450px;}
.ya3{bottom:446.790450px;}
.y60{bottom:447.600450px;}
.yc4{bottom:447.780450px;}
.yea{bottom:458.850450px;}
.y6f{bottom:459.210450px;}
.y96{bottom:462.180450px;}
.y26{bottom:462.810450px;}
.y117{bottom:464.432763px;}
.y138{bottom:473.970450px;}
.y81{bottom:474.240450px;}
.y58{bottom:475.320450px;}
.y14c{bottom:477.750450px;}
.y47{bottom:477.840450px;}
.ye9{bottom:479.550450px;}
.y116{bottom:484.321962px;}
.yb8{bottom:488.010450px;}
.ya2{bottom:488.190450px;}
.yc3{bottom:489.180450px;}
.yf{bottom:499.530450px;}
.ye8{bottom:500.250450px;}
.y6e{bottom:500.610450px;}
.y10a{bottom:501.600450px;}
.y95{bottom:503.580450px;}
.y115{bottom:504.120981px;}
.y25{bottom:504.210450px;}
.y137{bottom:505.020450px;}
.y80{bottom:515.640450px;}
.y57{bottom:516.720450px;}
.y14b{bottom:519.150450px;}
.y46{bottom:519.240450px;}
.ye7{bottom:520.950450px;}
.y114{bottom:523.920000px;}
.yb7{bottom:529.410450px;}
.ya1{bottom:529.590450px;}
.yc2{bottom:530.580450px;}
.y136{bottom:536.070450px;}
.ye6{bottom:541.650450px;}
.y6d{bottom:542.010450px;}
.y109{bottom:543.000450px;}
.y113{bottom:543.810000px;}
.y24{bottom:545.610450px;}
.ye{bottom:555.960450px;}
.y7f{bottom:557.040450px;}
.y56{bottom:558.120450px;}
.y14a{bottom:560.550450px;}
.y45{bottom:560.640450px;}
.ye5{bottom:562.170450px;}
.y112{bottom:564.600000px;}
.y94{bottom:565.950450px;}
.y135{bottom:567.120450px;}
.yb6{bottom:570.810450px;}
.ya0{bottom:570.990450px;}
.y111{bottom:574.680000px;}
.ye4{bottom:583.050450px;}
.y6c{bottom:583.410450px;}
.y108{bottom:584.400450px;}
.y23{bottom:587.010450px;}
.y134{bottom:598.170450px;}
.y7e{bottom:598.440450px;}
.y55{bottom:599.520450px;}
.y149{bottom:601.950450px;}
.y44{bottom:602.040450px;}
.ye3{bottom:603.750450px;}
.y102{bottom:605.011935px;}
.y105{bottom:605.190603px;}
.y9f{bottom:606.090000px;}
.y93{bottom:607.440450px;}
.yd{bottom:612.300450px;}
.y106{bottom:624.359865px;}
.ye2{bottom:624.450450px;}
.y110{bottom:624.540000px;}
.y6b{bottom:624.810450px;}
.y107{bottom:625.260162px;}
.yb5{bottom:627.240450px;}
.y22{bottom:628.410450px;}
.y133{bottom:629.220450px;}
.y7d{bottom:639.840450px;}
.y54{bottom:640.920450px;}
.y148{bottom:643.350450px;}
.y43{bottom:643.440450px;}
.y103{bottom:643.442142px;}
.ye1{bottom:644.970450px;}
.y92{bottom:648.840450px;}
.y132{bottom:660.270450px;}
.y104{bottom:662.611404px;}
.ye0{bottom:665.670450px;}
.y10f{bottom:665.940000px;}
.y6a{bottom:666.210450px;}
.yb4{bottom:668.640450px;}
.yc{bottom:668.730450px;}
.y21{bottom:669.810450px;}
.y7c{bottom:681.240450px;}
.y53{bottom:682.320450px;}
.yfb{bottom:682.320612px;}
.yff{bottom:682.500603px;}
.y101{bottom:682.502106px;}
.y147{bottom:684.750450px;}
.y3f{bottom:684.840450px;}
.ydf{bottom:686.370450px;}
.y91{bottom:690.150450px;}
.y131{bottom:691.320450px;}
.y100{bottom:701.581188px;}
.yde{bottom:707.250450px;}
.y10e{bottom:707.340000px;}
.y20{bottom:711.210450px;}
.yfe{bottom:720.750450px;}
.yfc{bottom:720.750819px;}
.y130{bottom:722.370450px;}
.y69{bottom:722.640450px;}
.y52{bottom:723.720450px;}
.yb{bottom:725.250450px;}
.y146{bottom:726.150450px;}
.y3e{bottom:726.240450px;}
.ydd{bottom:727.950450px;}
.yb3{bottom:730.920450px;}
.y8a{bottom:737.580450px;}
.yfd{bottom:739.831404px;}
.y10d{bottom:748.650000px;}
.ydc{bottom:748.650450px;}
.y1f{bottom:752.610450px;}
.y12f{bottom:753.420450px;}
.yf5{bottom:759.542115px;}
.yf9{bottom:759.720603px;}
.y68{bottom:763.950450px;}
.ya{bottom:766.650450px;}
.y145{bottom:767.550450px;}
.y3d{bottom:767.640450px;}
.ydb{bottom:769.170450px;}
.yfa{bottom:778.889865px;}
.y89{bottom:778.980450px;}
.y51{bottom:779.970450px;}
.y12e{bottom:784.470450px;}
.yda{bottom:790.680450px;}
.yb2{bottom:793.380450px;}
.y1e{bottom:794.010450px;}
.yf8{bottom:797.970450px;}
.yf6{bottom:797.972322px;}
.y7b{bottom:805.350450px;}
.y3c{bottom:808.950450px;}
.yd9{bottom:812.100450px;}
.y12d{bottom:815.520450px;}
.yf7{bottom:817.141584px;}
.y67{bottom:820.200450px;}
.y9{bottom:822.990450px;}
.yb1{bottom:834.780450px;}
.y1d{bottom:835.410450px;}
.y50{bottom:836.310933px;}
.yee{bottom:836.760450px;}
.yf2{bottom:836.940603px;}
.yf4{bottom:836.942106px;}
.y12c{bottom:846.570450px;}
.y7a{bottom:846.750450px;}
.y3b{bottom:850.350450px;}
.yf3{bottom:856.111368px;}
.y8{bottom:864.300450px;}
.yf1{bottom:875.190450px;}
.yef{bottom:875.190657px;}
.yb0{bottom:876.180450px;}
.y1c{bottom:876.810450px;}
.y12b{bottom:877.620450px;}
.y79{bottom:888.150450px;}
.y3a{bottom:891.750450px;}
.yf0{bottom:894.359919px;}
.yd0{bottom:894.990450px;}
.y12a{bottom:901.380639px;}
.yec{bottom:915.961386px;}
.yed{bottom:915.962889px;}
.y1b{bottom:918.210450px;}
.y7{bottom:923.700450px;}
.yeb{bottom:924.510450px;}
.yaf{bottom:932.610450px;}
.y39{bottom:933.150450px;}
.y129{bottom:933.600450px;}
.ycf{bottom:936.390450px;}
.y78{bottom:944.400450px;}
.y128{bottom:958.530450px;}
.y1a{bottom:959.610450px;}
.y127{bottom:967.350450px;}
.y144{bottom:974.460450px;}
.y38{bottom:974.550450px;}
.yce{bottom:977.790450px;}
.y6{bottom:980.130450px;}
.yae{bottom:994.890450px;}
.y19{bottom:1001.010450px;}
.y126{bottom:1015.860450px;}
.y37{bottom:1015.950450px;}
.ycd{bottom:1019.190450px;}
.yad{bottom:1036.380450px;}
.y5{bottom:1040.521503px;}
.y18{bottom:1042.410450px;}
.y125{bottom:1057.260450px;}
.y36{bottom:1057.350450px;}
.ycc{bottom:1060.590450px;}
.yac{bottom:1077.780450px;}
.y17{bottom:1083.810450px;}
.y4{bottom:1088.851062px;}
.y124{bottom:1098.660450px;}
.y35{bottom:1098.750450px;}
.ycb{bottom:1099.650450px;}
.y3{bottom:1137.090450px;}
.y16{bottom:1139.970450px;}
.yab{bottom:1140.060450px;}
.y34{bottom:1140.150450px;}
.h1{height:43.909277px;}
.h11{height:47.381836px;}
.hb{height:52.751777px;}
.h7{height:54.421875px;}
.hc{height:56.352965px;}
.hd{height:56.713685px;}
.ha{height:60.589687px;}
.h5{height:63.175781px;}
.h4{height:70.628906px;}
.h3{height:72.562500px;}
.h6{height:75.131895px;}
.h14{height:83.352857px;}
.h13{height:83.713577px;}
.h2{height:84.535312px;}
.h8{height:95.152676px;}
.h12{height:96.589543px;}
.h10{height:101.633612px;}
.h9{height:129.354944px;}
.hf{height:892.500000px;}
.he{height:892.830000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.x1c{left:49.590873px;}
.x1b{left:54.540252px;}
.xe{left:60.210000px;}
.x10{left:64.980000px;}
.xb{left:66.960000px;}
.x15{left:69.930000px;}
.x11{left:72.720000px;}
.x1a{left:76.680945px;}
.x9{left:82.710000px;}
.x8{left:84.420000px;}
.xc{left:90.180000px;}
.xa{left:92.430000px;}
.xf{left:100.440000px;}
.xd{left:105.480000px;}
.x7{left:110.970000px;}
.x29{left:118.530000px;}
.x6{left:122.490000px;}
.x2a{left:124.830576px;}
.x2{left:127.619658px;}
.x26{left:131.205561px;}
.x1f{left:134.985750px;}
.x23{left:150.825723px;}
.x25{left:152.626317px;}
.x24{left:160.816164px;}
.x27{left:168.286074px;}
.x21{left:174.135750px;}
.x3{left:180.720000px;}
.x22{left:184.126191px;}
.x16{left:191.790234px;}
.x19{left:209.699451px;}
.x18{left:282.870000px;}
.x17{left:287.460693px;}
.x28{left:293.400000px;}
.x12{left:369.450000px;}
.x20{left:383.115750px;}
.x1d{left:480.780531px;}
.x13{left:483.030207px;}
.x5{left:533.520000px;}
.x4{left:748.710000px;}
.x1{left:757.080000px;}
.x14{left:770.040081px;}
.x1e{left:1139.745750px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v6{vertical-align:-3.201056pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.201056pt;}
.v9{vertical-align:27.521600pt;}
.v1{vertical-align:29.440000pt;}
.v3{vertical-align:30.722656pt;}
.v8{vertical-align:31.999872pt;}
.v7{vertical-align:36.483488pt;}
.v4{vertical-align:61.124672pt;}
.ls20{letter-spacing:-0.243200pt;}
.ls32{letter-spacing:-0.176352pt;}
.ls34{letter-spacing:-0.171008pt;}
.ls4d{letter-spacing:-0.165664pt;}
.ls36{letter-spacing:-0.160320pt;}
.ls4e{letter-spacing:-0.154976pt;}
.ls52{letter-spacing:-0.144288pt;}
.ls37{letter-spacing:-0.138944pt;}
.ls3f{letter-spacing:-0.133600pt;}
.ls2e{letter-spacing:-0.122912pt;}
.ls3c{letter-spacing:-0.117568pt;}
.ls27{letter-spacing:-0.115200pt;}
.ls30{letter-spacing:-0.112224pt;}
.ls2f{letter-spacing:-0.101536pt;}
.ls38{letter-spacing:-0.096192pt;}
.ls17{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.093632pt;}
.ls39{letter-spacing:-0.090848pt;}
.lsa{letter-spacing:-0.082016pt;}
.ls1e{letter-spacing:-0.070400pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.058784pt;}
.ls16{letter-spacing:-0.051200pt;}
.ls51{letter-spacing:-0.042752pt;}
.ls21{letter-spacing:-0.038400pt;}
.ls31{letter-spacing:-0.032064pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls4a{letter-spacing:-0.026720pt;}
.ls19{letter-spacing:-0.025600pt;}
.ls18{letter-spacing:-0.019200pt;}
.ls50{letter-spacing:-0.016032pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls3d{letter-spacing:-0.010688pt;}
.lsb{letter-spacing:-0.006400pt;}
.ls4c{letter-spacing:-0.005344pt;}
.ls7{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.005344pt;}
.ls4{letter-spacing:0.006400pt;}
.ls29{letter-spacing:0.010688pt;}
.ls6{letter-spacing:0.012800pt;}
.ls2a{letter-spacing:0.016032pt;}
.ls5{letter-spacing:0.019200pt;}
.lsd{letter-spacing:0.025600pt;}
.ls8{letter-spacing:0.029824pt;}
.ls10{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.032064pt;}
.ls45{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls11{letter-spacing:0.044800pt;}
.ls49{letter-spacing:0.048096pt;}
.lsf{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.052192pt;}
.ls41{letter-spacing:0.053440pt;}
.ls1b{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.067104pt;}
.ls47{letter-spacing:0.069472pt;}
.ls0{letter-spacing:0.070272pt;}
.ls1c{letter-spacing:0.070400pt;}
.ls13{letter-spacing:0.076800pt;}
.ls3e{letter-spacing:0.080160pt;}
.ls26{letter-spacing:0.081984pt;}
.ls3{letter-spacing:0.082016pt;}
.ls12{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.089600pt;}
.ls2c{letter-spacing:0.090848pt;}
.ls48{letter-spacing:0.096192pt;}
.ls43{letter-spacing:0.101536pt;}
.ls4f{letter-spacing:0.102400pt;}
.ls44{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.111840pt;}
.ls46{letter-spacing:0.112224pt;}
.ls3b{letter-spacing:0.122912pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.133600pt;}
.lsc{letter-spacing:0.140800pt;}
.ls2d{letter-spacing:0.144288pt;}
.ls2b{letter-spacing:0.149632pt;}
.ls28{letter-spacing:0.158400pt;}
.ls4b{letter-spacing:0.160320pt;}
.ls23{letter-spacing:0.224000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.438208pt;}
.ls53{letter-spacing:176.798400pt;}
.ws39{word-spacing:-64.000000pt;}
.ws0{word-spacing:-18.722016pt;}
.ws74{word-spacing:-16.320000pt;}
.ws37{word-spacing:-16.076800pt;}
.ws8b{word-spacing:-16.057600pt;}
.wsc{word-spacing:-16.038400pt;}
.ws23{word-spacing:-16.032000pt;}
.ws31{word-spacing:-16.019200pt;}
.wsb{word-spacing:-16.012800pt;}
.ws24{word-spacing:-16.000000pt;}
.ws72{word-spacing:-15.987200pt;}
.wsd{word-spacing:-15.974400pt;}
.ws73{word-spacing:-15.961600pt;}
.ws38{word-spacing:-15.756800pt;}
.ws36{word-spacing:-10.546368pt;}
.wsb0{word-spacing:-0.390112pt;}
.wsb1{word-spacing:-0.384768pt;}
.wsac{word-spacing:-0.374080pt;}
.wsb6{word-spacing:-0.363392pt;}
.ws93{word-spacing:-0.358400pt;}
.ws9a{word-spacing:-0.352000pt;}
.wsc4{word-spacing:-0.336672pt;}
.ws95{word-spacing:-0.320000pt;}
.ws98{word-spacing:-0.316800pt;}
.ws8e{word-spacing:-0.307200pt;}
.ws94{word-spacing:-0.294400pt;}
.wsbc{word-spacing:-0.293920pt;}
.ws2b{word-spacing:-0.249600pt;}
.ws90{word-spacing:-0.243200pt;}
.ws21{word-spacing:-0.236800pt;}
.ws85{word-spacing:-0.230400pt;}
.ws32{word-spacing:-0.224000pt;}
.ws87{word-spacing:-0.217600pt;}
.ws97{word-spacing:-0.211200pt;}
.ws1b{word-spacing:-0.204800pt;}
.ws8c{word-spacing:-0.198400pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws8d{word-spacing:-0.185600pt;}
.ws2d{word-spacing:-0.179200pt;}
.ws8{word-spacing:-0.172800pt;}
.ws28{word-spacing:-0.166400pt;}
.ws26{word-spacing:-0.160000pt;}
.ws10{word-spacing:-0.153600pt;}
.ws3{word-spacing:-0.149120pt;}
.ws86{word-spacing:-0.147200pt;}
.ws2e{word-spacing:-0.140800pt;}
.ws91{word-spacing:-0.140544pt;}
.ws19{word-spacing:-0.134400pt;}
.ws25{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.121600pt;}
.ws29{word-spacing:-0.115200pt;}
.ws4{word-spacing:-0.111840pt;}
.ws33{word-spacing:-0.108800pt;}
.ws11{word-spacing:-0.102400pt;}
.ws20{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.089600pt;}
.ws6{word-spacing:-0.083200pt;}
.wsf{word-spacing:-0.076800pt;}
.ws7{word-spacing:-0.070400pt;}
.wsa8{word-spacing:-0.069472pt;}
.ws2{word-spacing:-0.067104pt;}
.ws30{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.057600pt;}
.ws14{word-spacing:-0.051200pt;}
.ws1a{word-spacing:-0.044800pt;}
.wsad{word-spacing:-0.042752pt;}
.ws1e{word-spacing:-0.038400pt;}
.wsc1{word-spacing:-0.032064pt;}
.ws1d{word-spacing:-0.032000pt;}
.wsc6{word-spacing:-0.026720pt;}
.ws1f{word-spacing:-0.025600pt;}
.ws15{word-spacing:-0.019200pt;}
.wsbb{word-spacing:-0.016032pt;}
.ws9{word-spacing:-0.012800pt;}
.wsb3{word-spacing:-0.010688pt;}
.ws5{word-spacing:-0.006400pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.006400pt;}
.wsc3{word-spacing:0.010688pt;}
.ws18{word-spacing:0.012800pt;}
.ws22{word-spacing:0.019200pt;}
.ws2c{word-spacing:0.025600pt;}
.ws88{word-spacing:0.032000pt;}
.ws2a{word-spacing:0.038400pt;}
.ws8a{word-spacing:0.044800pt;}
.ws1c{word-spacing:0.051200pt;}
.ws8f{word-spacing:0.064000pt;}
.wsaf{word-spacing:0.064128pt;}
.wsa5{word-spacing:0.069472pt;}
.ws27{word-spacing:0.070400pt;}
.ws34{word-spacing:0.076800pt;}
.wsb5{word-spacing:0.080160pt;}
.ws13{word-spacing:0.083200pt;}
.wsba{word-spacing:0.085504pt;}
.ws35{word-spacing:0.089600pt;}
.wsb2{word-spacing:0.090848pt;}
.ws89{word-spacing:0.096000pt;}
.wsc9{word-spacing:0.096192pt;}
.ws96{word-spacing:0.102400pt;}
.wsb9{word-spacing:0.106880pt;}
.ws17{word-spacing:0.108800pt;}
.wsa7{word-spacing:0.112224pt;}
.ws92{word-spacing:0.115200pt;}
.ws99{word-spacing:0.121600pt;}
.wsb8{word-spacing:0.138944pt;}
.ws9b{word-spacing:0.140800pt;}
.wsab{word-spacing:0.171008pt;}
.wsaa{word-spacing:0.176352pt;}
.ws84{word-spacing:0.185600pt;}
.ws66{word-spacing:0.192000pt;}
.wsae{word-spacing:0.197728pt;}
.wsb4{word-spacing:0.213760pt;}
.wsa9{word-spacing:0.219104pt;}
.ws65{word-spacing:0.256000pt;}
.ws83{word-spacing:0.275200pt;}
.ws50{word-spacing:0.345600pt;}
.ws46{word-spacing:0.422400pt;}
.ws48{word-spacing:0.588800pt;}
.ws56{word-spacing:0.601600pt;}
.ws76{word-spacing:0.608000pt;}
.ws75{word-spacing:0.620800pt;}
.ws47{word-spacing:0.652800pt;}
.ws82{word-spacing:0.800000pt;}
.ws58{word-spacing:0.825600pt;}
.ws81{word-spacing:0.832000pt;}
.ws3e{word-spacing:0.844800pt;}
.ws3f{word-spacing:0.883200pt;}
.ws57{word-spacing:0.934400pt;}
.ws49{word-spacing:1.875200pt;}
.ws43{word-spacing:2.854400pt;}
.ws68{word-spacing:3.065600pt;}
.ws69{word-spacing:3.097600pt;}
.ws6a{word-spacing:3.206400pt;}
.ws42{word-spacing:4.665600pt;}
.ws40{word-spacing:4.710400pt;}
.ws41{word-spacing:4.870400pt;}
.ws6c{word-spacing:4.992000pt;}
.ws62{word-spacing:5.004800pt;}
.ws63{word-spacing:5.024000pt;}
.ws6b{word-spacing:5.132800pt;}
.ws64{word-spacing:5.152000pt;}
.ws44{word-spacing:5.331200pt;}
.ws45{word-spacing:5.414400pt;}
.ws4c{word-spacing:5.510400pt;}
.ws4b{word-spacing:5.664000pt;}
.ws4a{word-spacing:5.760000pt;}
.ws67{word-spacing:6.041600pt;}
.ws3d{word-spacing:6.304000pt;}
.ws3c{word-spacing:6.368000pt;}
.ws7b{word-spacing:6.380800pt;}
.ws7a{word-spacing:6.400000pt;}
.ws7c{word-spacing:6.432000pt;}
.ws71{word-spacing:7.923200pt;}
.ws54{word-spacing:8.652800pt;}
.ws55{word-spacing:8.659200pt;}
.ws3b{word-spacing:12.057600pt;}
.ws3a{word-spacing:12.102400pt;}
.ws4f{word-spacing:13.088000pt;}
.ws5a{word-spacing:15.014400pt;}
.ws59{word-spacing:15.020800pt;}
.ws5b{word-spacing:15.526400pt;}
.ws4d{word-spacing:15.654400pt;}
.ws4e{word-spacing:15.667200pt;}
.ws5e{word-spacing:15.673600pt;}
.ws5d{word-spacing:15.699200pt;}
.ws5c{word-spacing:15.718400pt;}
.ws6e{word-spacing:16.896000pt;}
.ws6d{word-spacing:16.908800pt;}
.ws70{word-spacing:16.915200pt;}
.ws6f{word-spacing:16.947200pt;}
.ws79{word-spacing:18.016000pt;}
.ws78{word-spacing:18.073600pt;}
.ws52{word-spacing:18.092800pt;}
.ws77{word-spacing:18.131200pt;}
.ws51{word-spacing:18.182400pt;}
.ws53{word-spacing:18.252800pt;}
.ws80{word-spacing:21.376000pt;}
.ws7d{word-spacing:21.632000pt;}
.ws7e{word-spacing:21.657600pt;}
.ws7f{word-spacing:21.779200pt;}
.ws60{word-spacing:24.889600pt;}
.ws5f{word-spacing:25.088000pt;}
.ws61{word-spacing:25.260800pt;}
.wsbe{word-spacing:44.082656pt;}
.wsc2{word-spacing:57.832768pt;}
.wsc0{word-spacing:58.158752pt;}
.wsbf{word-spacing:70.647680pt;}
.wscb{word-spacing:85.343680pt;}
.wsc5{word-spacing:95.914112pt;}
.wsa0{word-spacing:98.553600pt;}
.ws9d{word-spacing:98.560000pt;}
.wsc7{word-spacing:115.756384pt;}
.wsbd{word-spacing:147.595936pt;}
.ws9e{word-spacing:154.873600pt;}
.wsa6{word-spacing:156.344064pt;}
.wsca{word-spacing:164.552448pt;}
.wsc8{word-spacing:177.842976pt;}
.wsa3{word-spacing:179.852800pt;}
.wsa4{word-spacing:180.012800pt;}
.wsa2{word-spacing:181.440000pt;}
.ws9f{word-spacing:183.360000pt;}
.wscc{word-spacing:194.489536pt;}
.wsa1{word-spacing:211.846400pt;}
.wsb7{word-spacing:254.684352pt;}
.ws9c{word-spacing:384.320000pt;}
._2f{margin-left:-113.280000pt;}
._8a{margin-left:-96.630208pt;}
._1d{margin-left:-84.800000pt;}
._37{margin-left:-82.880000pt;}
._3a{margin-left:-81.280000pt;}
._80{margin-left:-75.200768pt;}
._81{margin-left:-60.673472pt;}
._79{margin-left:-57.383872pt;}
._14{margin-left:-56.320000pt;}
._75{margin-left:-51.211552pt;}
._83{margin-left:-46.332480pt;}
._78{margin-left:-45.325504pt;}
._8b{margin-left:-40.646144pt;}
._74{margin-left:-38.682912pt;}
._73{margin-left:-37.541600pt;}
._82{margin-left:-33.351904pt;}
._7a{margin-left:-30.498208pt;}
._88{margin-left:-27.879488pt;}
._76{margin-left:-24.096096pt;}
._87{margin-left:-22.777696pt;}
._7d{margin-left:-19.852960pt;}
._7b{margin-left:-18.019968pt;}
._30{margin-left:-15.680000pt;}
._6c{margin-left:-14.044768pt;}
._69{margin-left:-12.076384pt;}
._63{margin-left:-10.239104pt;}
._84{margin-left:-8.325248pt;}
._7e{margin-left:-5.857024pt;}
._7c{margin-left:-4.769888pt;}
._1e{margin-left:-3.200000pt;}
._4{margin-left:-2.048000pt;}
._0{margin-left:-0.908800pt;}
._1{width:1.152000pt;}
._62{width:3.516352pt;}
._72{width:8.047520pt;}
._6f{width:12.921728pt;}
._6a{width:13.983008pt;}
._3{width:15.104000pt;}
._32{width:16.320000pt;}
._6d{width:24.376288pt;}
._15{width:25.280000pt;}
._66{width:27.258432pt;}
._61{width:29.760736pt;}
._20{width:37.760000pt;}
._39{width:39.680000pt;}
._3c{width:41.280000pt;}
._64{width:43.516192pt;}
._27{width:44.800000pt;}
._6{width:46.080000pt;}
._a{width:49.081600pt;}
._55{width:51.402944pt;}
._b{width:52.550400pt;}
._22{width:55.360000pt;}
._12{width:57.600000pt;}
._24{width:61.120000pt;}
._17{width:66.240000pt;}
._2b{width:68.288000pt;}
._10{width:70.720000pt;}
._35{width:76.480000pt;}
._9{width:78.720000pt;}
._11{width:80.960000pt;}
._41{width:82.833952pt;}
._23{width:84.473600pt;}
._33{width:85.760000pt;}
._36{width:88.320000pt;}
._c{width:90.560000pt;}
._28{width:91.520000pt;}
._21{width:92.518400pt;}
._8{width:95.040000pt;}
._f{width:97.600000pt;}
._19{width:98.560000pt;}
._2a{width:102.393600pt;}
._42{width:103.748736pt;}
._67{width:104.881344pt;}
._d{width:109.120000pt;}
._4c{width:110.914720pt;}
._3d{width:112.768000pt;}
._4b{width:115.393632pt;}
._5c{width:117.837984pt;}
._13{width:122.560000pt;}
._3f{width:125.701568pt;}
._51{width:128.683840pt;}
._25{width:129.600000pt;}
._3e{width:131.900608pt;}
._5e{width:137.909472pt;}
._4e{width:143.021792pt;}
._4d{width:144.453984pt;}
._53{width:145.700064pt;}
._18{width:148.800000pt;}
._34{width:155.468800pt;}
._56{width:156.397504pt;}
._54{width:157.894144pt;}
._40{width:159.140224pt;}
._2{width:160.640000pt;}
._47{width:164.755520pt;}
._44{width:169.880416pt;}
._48{width:171.013664pt;}
._5{width:172.851200pt;}
._26{width:175.296000pt;}
._4a{width:177.875040pt;}
._1a{width:180.160000pt;}
._43{width:185.699904pt;}
._77{width:189.975424pt;}
._59{width:192.145664pt;}
._52{width:194.281440pt;}
._2c{width:196.160000pt;}
._5d{width:197.893984pt;}
._89{width:200.047296pt;}
._45{width:204.028576pt;}
._4f{width:208.507168pt;}
._5b{width:210.879584pt;}
._85{width:216.016000pt;}
._57{width:217.196192pt;}
._58{width:218.879552pt;}
._1c{width:221.120000pt;}
._50{width:223.347136pt;}
._2e{width:228.160000pt;}
._29{width:229.440000pt;}
._46{width:231.999072pt;}
._49{width:245.439232pt;}
._e{width:248.960000pt;}
._5a{width:253.857280pt;}
._5f{width:257.131904pt;}
._6e{width:259.473824pt;}
._71{width:265.709024pt;}
._7{width:280.320000pt;}
._70{width:294.711232pt;}
._7f{width:307.568576pt;}
._86{width:335.608864pt;}
._68{width:341.470912pt;}
._60{width:355.894368pt;}
._65{width:364.252384pt;}
._6b{width:377.799424pt;}
._31{width:584.000000pt;}
._1f{width:596.480000pt;}
._38{width:599.168000pt;}
._3b{width:616.000000pt;}
._16{width:624.960000pt;}
._1b{width:779.840000pt;}
._2d{width:795.840000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:51.147440pt;}
.y2{bottom:51.307707pt;}
.y123{bottom:51.387707pt;}
.y10b{bottom:69.066800pt;}
.y1{bottom:69.227067pt;}
.y122{bottom:69.307067pt;}
.yc1{bottom:102.587067pt;}
.y9e{bottom:103.147067pt;}
.yca{bottom:103.707067pt;}
.y76{bottom:110.587067pt;}
.y42{bottom:113.627067pt;}
.y66{bottom:113.787067pt;}
.y33{bottom:116.987067pt;}
.y143{bottom:117.707067pt;}
.yaa{bottom:120.827067pt;}
.y2c{bottom:123.947067pt;}
.y5f{bottom:125.947067pt;}
.y88{bottom:127.147067pt;}
.y154{bottom:130.267067pt;}
.y4f{bottom:130.347067pt;}
.yd8{bottom:131.227067pt;}
.y90{bottom:137.307067pt;}
.yc0{bottom:139.387067pt;}
.y9d{bottom:139.947067pt;}
.yc9{bottom:140.507067pt;}
.y15{bottom:143.227067pt;}
.y142{bottom:145.307067pt;}
.y75{bottom:147.387067pt;}
.y65{bottom:150.587067pt;}
.y32{bottom:153.787067pt;}
.ya9{bottom:157.707067pt;}
.y5e{bottom:162.747067pt;}
.y41{bottom:163.787067pt;}
.y87{bottom:163.947067pt;}
.y153{bottom:167.067067pt;}
.y4e{bottom:167.147067pt;}
.yd7{bottom:168.027067pt;}
.y141{bottom:172.907067pt;}
.y2b{bottom:174.107067pt;}
.ybf{bottom:176.187067pt;}
.y9c{bottom:176.747067pt;}
.yc8{bottom:177.307067pt;}
.y121{bottom:177.627067pt;}
.y74{bottom:184.187067pt;}
.y64{bottom:187.387067pt;}
.y31{bottom:190.587067pt;}
.y14{bottom:193.387067pt;}
.ya8{bottom:194.427067pt;}
.y5d{bottom:199.547067pt;}
.y140{bottom:200.507067pt;}
.y86{bottom:200.747067pt;}
.y77{bottom:203.787067pt;}
.y152{bottom:203.867067pt;}
.y4d{bottom:203.947067pt;}
.yd6{bottom:204.827067pt;}
.y120{bottom:205.146667pt;}
.y8f{bottom:210.907067pt;}
.ybe{bottom:212.987067pt;}
.y9b{bottom:213.547067pt;}
.y40{bottom:214.107067pt;}
.y73{bottom:220.987067pt;}
.y2a{bottom:224.187067pt;}
.y30{bottom:227.387067pt;}
.y13f{bottom:228.107067pt;}
.y11f{bottom:232.746667pt;}
.y85{bottom:237.547067pt;}
.y151{bottom:240.667067pt;}
.y4c{bottom:240.747067pt;}
.yd5{bottom:241.627067pt;}
.y13{bottom:243.467067pt;}
.y8e{bottom:247.707067pt;}
.y5c{bottom:249.467067pt;}
.ybd{bottom:249.787067pt;}
.ya7{bottom:249.947067pt;}
.y9a{bottom:250.347067pt;}
.yc7{bottom:250.907067pt;}
.y13e{bottom:255.707067pt;}
.y72{bottom:257.787067pt;}
.y11e{bottom:260.346667pt;}
.y63{bottom:260.987067pt;}
.y2f{bottom:264.187067pt;}
.y29{bottom:274.347067pt;}
.y150{bottom:277.467067pt;}
.y4b{bottom:277.547067pt;}
.yd4{bottom:278.427067pt;}
.y13d{bottom:283.307067pt;}
.y8d{bottom:284.507067pt;}
.ybc{bottom:286.587067pt;}
.ya6{bottom:286.747067pt;}
.y99{bottom:287.147067pt;}
.yc6{bottom:287.707067pt;}
.y11d{bottom:287.946667pt;}
.y12{bottom:293.627067pt;}
.y62{bottom:297.787067pt;}
.y5b{bottom:299.627067pt;}
.y2e{bottom:300.987067pt;}
.y71{bottom:307.787067pt;}
.y13c{bottom:310.907067pt;}
.y84{bottom:311.147067pt;}
.y14f{bottom:314.267067pt;}
.y4a{bottom:314.347067pt;}
.yd3{bottom:315.227067pt;}
.y11c{bottom:315.546667pt;}
.y8c{bottom:321.227067pt;}
.ybb{bottom:323.387067pt;}
.ya5{bottom:323.547067pt;}
.y28{bottom:324.507067pt;}
.y98{bottom:337.227067pt;}
.y2d{bottom:337.787067pt;}
.y13b{bottom:338.507067pt;}
.y11b{bottom:343.146667pt;}
.y11{bottom:343.787067pt;}
.y61{bottom:347.787067pt;}
.y83{bottom:347.947067pt;}
.y5a{bottom:348.907067pt;}
.y14e{bottom:351.067067pt;}
.y49{bottom:351.147067pt;}
.yd2{bottom:352.027067pt;}
.y70{bottom:358.027067pt;}
.y11a{bottom:359.951579pt;}
.yba{bottom:360.187067pt;}
.ya4{bottom:360.347067pt;}
.yc5{bottom:361.227067pt;}
.y13a{bottom:366.107067pt;}
.y97{bottom:374.027067pt;}
.y27{bottom:374.587067pt;}
.y119{bottom:377.550707pt;}
.y82{bottom:384.747067pt;}
.y59{bottom:385.707067pt;}
.y14d{bottom:387.867067pt;}
.y48{bottom:387.947067pt;}
.yd1{bottom:388.827067pt;}
.y139{bottom:393.707067pt;}
.y10{bottom:393.867067pt;}
.y8b{bottom:394.827067pt;}
.y118{bottom:395.229995pt;}
.yb9{bottom:396.987067pt;}
.ya3{bottom:397.147067pt;}
.y60{bottom:397.867067pt;}
.yc4{bottom:398.027067pt;}
.yea{bottom:407.867067pt;}
.y6f{bottom:408.187067pt;}
.y96{bottom:410.827067pt;}
.y26{bottom:411.387067pt;}
.y117{bottom:412.829123pt;}
.y138{bottom:421.307067pt;}
.y81{bottom:421.547067pt;}
.y58{bottom:422.507067pt;}
.y14c{bottom:424.667067pt;}
.y47{bottom:424.747067pt;}
.ye9{bottom:426.267067pt;}
.y116{bottom:430.508411pt;}
.yb8{bottom:433.787067pt;}
.ya2{bottom:433.947067pt;}
.yc3{bottom:434.827067pt;}
.yf{bottom:444.027067pt;}
.ye8{bottom:444.667067pt;}
.y6e{bottom:444.987067pt;}
.y10a{bottom:445.867067pt;}
.y95{bottom:447.627067pt;}
.y115{bottom:448.107539pt;}
.y25{bottom:448.187067pt;}
.y137{bottom:448.907067pt;}
.y80{bottom:458.347067pt;}
.y57{bottom:459.307067pt;}
.y14b{bottom:461.467067pt;}
.y46{bottom:461.547067pt;}
.ye7{bottom:463.067067pt;}
.y114{bottom:465.706667pt;}
.yb7{bottom:470.587067pt;}
.ya1{bottom:470.747067pt;}
.yc2{bottom:471.627067pt;}
.y136{bottom:476.507067pt;}
.ye6{bottom:481.467067pt;}
.y6d{bottom:481.787067pt;}
.y109{bottom:482.667067pt;}
.y113{bottom:483.386667pt;}
.y24{bottom:484.987067pt;}
.ye{bottom:494.187067pt;}
.y7f{bottom:495.147067pt;}
.y56{bottom:496.107067pt;}
.y14a{bottom:498.267067pt;}
.y45{bottom:498.347067pt;}
.ye5{bottom:499.707067pt;}
.y112{bottom:501.866667pt;}
.y94{bottom:503.067067pt;}
.y135{bottom:504.107067pt;}
.yb6{bottom:507.387067pt;}
.ya0{bottom:507.547067pt;}
.y111{bottom:510.826667pt;}
.ye4{bottom:518.267067pt;}
.y6c{bottom:518.587067pt;}
.y108{bottom:519.467067pt;}
.y23{bottom:521.787067pt;}
.y134{bottom:531.707067pt;}
.y7e{bottom:531.947067pt;}
.y55{bottom:532.907067pt;}
.y149{bottom:535.067067pt;}
.y44{bottom:535.147067pt;}
.ye3{bottom:536.667067pt;}
.y102{bottom:537.788387pt;}
.y105{bottom:537.947203pt;}
.y9f{bottom:538.746667pt;}
.y93{bottom:539.947067pt;}
.yd{bottom:544.267067pt;}
.y106{bottom:554.986547pt;}
.ye2{bottom:555.067067pt;}
.y110{bottom:555.146667pt;}
.y6b{bottom:555.387067pt;}
.y107{bottom:555.786811pt;}
.yb5{bottom:557.547067pt;}
.y22{bottom:558.587067pt;}
.y133{bottom:559.307067pt;}
.y7d{bottom:568.747067pt;}
.y54{bottom:569.707067pt;}
.y148{bottom:571.867067pt;}
.y43{bottom:571.947067pt;}
.y103{bottom:571.948571pt;}
.ye1{bottom:573.307067pt;}
.y92{bottom:576.747067pt;}
.y132{bottom:586.907067pt;}
.y104{bottom:588.987915pt;}
.ye0{bottom:591.707067pt;}
.y10f{bottom:591.946667pt;}
.y6a{bottom:592.187067pt;}
.yb4{bottom:594.347067pt;}
.yc{bottom:594.427067pt;}
.y21{bottom:595.387067pt;}
.y7c{bottom:605.547067pt;}
.y53{bottom:606.507067pt;}
.yfb{bottom:606.507211pt;}
.yff{bottom:606.667203pt;}
.y101{bottom:606.668539pt;}
.y147{bottom:608.667067pt;}
.y3f{bottom:608.747067pt;}
.ydf{bottom:610.107067pt;}
.y91{bottom:613.467067pt;}
.y131{bottom:614.507067pt;}
.y100{bottom:623.627723pt;}
.yde{bottom:628.667067pt;}
.y10e{bottom:628.746667pt;}
.y20{bottom:632.187067pt;}
.yfe{bottom:640.667067pt;}
.yfc{bottom:640.667395pt;}
.y130{bottom:642.107067pt;}
.y69{bottom:642.347067pt;}
.y52{bottom:643.307067pt;}
.yb{bottom:644.667067pt;}
.y146{bottom:645.467067pt;}
.y3e{bottom:645.547067pt;}
.ydd{bottom:647.067067pt;}
.yb3{bottom:649.707067pt;}
.y8a{bottom:655.627067pt;}
.yfd{bottom:657.627915pt;}
.y10d{bottom:665.466667pt;}
.ydc{bottom:665.467067pt;}
.y1f{bottom:668.987067pt;}
.y12f{bottom:669.707067pt;}
.yf5{bottom:675.148547pt;}
.yf9{bottom:675.307203pt;}
.y68{bottom:679.067067pt;}
.ya{bottom:681.467067pt;}
.y145{bottom:682.267067pt;}
.y3d{bottom:682.347067pt;}
.ydb{bottom:683.707067pt;}
.yfa{bottom:692.346547pt;}
.y89{bottom:692.427067pt;}
.y51{bottom:693.307067pt;}
.y12e{bottom:697.307067pt;}
.yda{bottom:702.827067pt;}
.yb2{bottom:705.227067pt;}
.y1e{bottom:705.787067pt;}
.yf8{bottom:709.307067pt;}
.yf6{bottom:709.308731pt;}
.y7b{bottom:715.867067pt;}
.y3c{bottom:719.067067pt;}
.yd9{bottom:721.867067pt;}
.y12d{bottom:724.907067pt;}
.yf7{bottom:726.348075pt;}
.y67{bottom:729.067067pt;}
.y9{bottom:731.547067pt;}
.yb1{bottom:742.027067pt;}
.y1d{bottom:742.587067pt;}
.y50{bottom:743.387496pt;}
.yee{bottom:743.787067pt;}
.yf2{bottom:743.947203pt;}
.yf4{bottom:743.948539pt;}
.y12c{bottom:752.507067pt;}
.y7a{bottom:752.667067pt;}
.y3b{bottom:755.867067pt;}
.yf3{bottom:760.987883pt;}
.y8{bottom:768.267067pt;}
.yf1{bottom:777.947067pt;}
.yef{bottom:777.947251pt;}
.yb0{bottom:778.827067pt;}
.y1c{bottom:779.387067pt;}
.y12b{bottom:780.107067pt;}
.y79{bottom:789.467067pt;}
.y3a{bottom:792.667067pt;}
.yf0{bottom:794.986595pt;}
.yd0{bottom:795.547067pt;}
.y12a{bottom:801.227235pt;}
.yec{bottom:814.187899pt;}
.yed{bottom:814.189235pt;}
.y1b{bottom:816.187067pt;}
.y7{bottom:821.067067pt;}
.yeb{bottom:821.787067pt;}
.yaf{bottom:828.987067pt;}
.y39{bottom:829.467067pt;}
.y129{bottom:829.867067pt;}
.ycf{bottom:832.347067pt;}
.y78{bottom:839.467067pt;}
.y128{bottom:852.027067pt;}
.y1a{bottom:852.987067pt;}
.y127{bottom:859.867067pt;}
.y144{bottom:866.187067pt;}
.y38{bottom:866.267067pt;}
.yce{bottom:869.147067pt;}
.y6{bottom:871.227067pt;}
.yae{bottom:884.347067pt;}
.y19{bottom:889.787067pt;}
.y126{bottom:902.987067pt;}
.y37{bottom:903.067067pt;}
.ycd{bottom:905.947067pt;}
.yad{bottom:921.227067pt;}
.y5{bottom:924.908003pt;}
.y18{bottom:926.587067pt;}
.y125{bottom:939.787067pt;}
.y36{bottom:939.867067pt;}
.ycc{bottom:942.747067pt;}
.yac{bottom:958.027067pt;}
.y17{bottom:963.387067pt;}
.y4{bottom:967.867611pt;}
.y124{bottom:976.587067pt;}
.y35{bottom:976.667067pt;}
.ycb{bottom:977.467067pt;}
.y3{bottom:1010.747067pt;}
.y16{bottom:1013.307067pt;}
.yab{bottom:1013.387067pt;}
.y34{bottom:1013.467067pt;}
.h1{height:39.030469pt;}
.h11{height:42.117188pt;}
.hb{height:46.890469pt;}
.h7{height:48.375000pt;}
.hc{height:50.091525pt;}
.hd{height:50.412165pt;}
.ha{height:53.857500pt;}
.h5{height:56.156250pt;}
.h4{height:62.781250pt;}
.h3{height:64.500000pt;}
.h6{height:66.783906pt;}
.h14{height:74.091429pt;}
.h13{height:74.412069pt;}
.h2{height:75.142500pt;}
.h8{height:84.580156pt;}
.h12{height:85.857372pt;}
.h10{height:90.340988pt;}
.h9{height:114.982172pt;}
.hf{height:793.333333pt;}
.he{height:793.626667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:44.080776pt;}
.x1b{left:48.480224pt;}
.xe{left:53.520000pt;}
.x10{left:57.760000pt;}
.xb{left:59.520000pt;}
.x15{left:62.160000pt;}
.x11{left:64.640000pt;}
.x1a{left:68.160840pt;}
.x9{left:73.520000pt;}
.x8{left:75.040000pt;}
.xc{left:80.160000pt;}
.xa{left:82.160000pt;}
.xf{left:89.280000pt;}
.xd{left:93.760000pt;}
.x7{left:98.640000pt;}
.x29{left:105.360000pt;}
.x6{left:108.880000pt;}
.x2a{left:110.960512pt;}
.x2{left:113.439696pt;}
.x26{left:116.627165pt;}
.x1f{left:119.987333pt;}
.x23{left:134.067309pt;}
.x25{left:135.667837pt;}
.x24{left:142.947701pt;}
.x27{left:149.587621pt;}
.x21{left:154.787333pt;}
.x3{left:160.640000pt;}
.x22{left:163.667725pt;}
.x16{left:170.480208pt;}
.x19{left:186.399512pt;}
.x18{left:251.440000pt;}
.x17{left:255.520616pt;}
.x28{left:260.800000pt;}
.x12{left:328.400000pt;}
.x20{left:340.547333pt;}
.x1d{left:427.360472pt;}
.x13{left:429.360184pt;}
.x5{left:474.240000pt;}
.x4{left:665.520000pt;}
.x1{left:672.960000pt;}
.x14{left:684.480072pt;}
.x1e{left:1013.107333pt;}
}




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