
    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_bd482348f003bb4ddcb048c6.woff2')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_7bac3b852df033819217c58f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_82f89b62dd4c82ec96dbeb64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117000;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_92b96e2a1d7a57d241d5cc5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_8239b24723be6dac557b8a5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_b1f059830dcdced5a9384098.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878000;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_146b10b21abbf660026b400c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922363;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_a7dbfac9083403e3d5130f7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.742188;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.512000px;}
.v5{vertical-align:-12.959994px;}
.v4{vertical-align:-10.076400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.167000px;}
.v3{vertical-align:28.512002px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000002px;}
.ls11{letter-spacing:0.000068px;}
.ls1{letter-spacing:0.000069px;}
.ls7{letter-spacing:0.000073px;}
.ls4{letter-spacing:0.000081px;}
.ls6{letter-spacing:0.000085px;}
.ls2{letter-spacing:0.000090px;}
.ls8{letter-spacing:0.000098px;}
.ls12{letter-spacing:17.985937px;}
.lsc{letter-spacing:18.000000px;}
.ls10{letter-spacing:18.000122px;}
.lsa{letter-spacing:18.000135px;}
.lsd{letter-spacing:18.000140px;}
.lsf{letter-spacing:18.000180px;}
.lsb{letter-spacing:18.000270px;}
.lse{letter-spacing:18.000315px;}
.ls9{letter-spacing:26.988361px;}
.ls3{letter-spacing:53.985937px;}
.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;}
}
.wsb0{word-spacing:-18.749999px;}
.wsbe{word-spacing:-18.000073px;}
.wsaf{word-spacing:-18.000069px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws111{word-spacing:-0.072000px;}
.wsb1{word-spacing:-0.024741px;}
.wsed{word-spacing:-0.000155px;}
.ws25{word-spacing:-0.000110px;}
.ws118{word-spacing:-0.000069px;}
.ws10c{word-spacing:-0.000055px;}
.ws100{word-spacing:-0.000005px;}
.ws4a{word-spacing:-0.000001px;}
.ws6{word-spacing:0.000000px;}
.ws104{word-spacing:0.000004px;}
.ws33{word-spacing:0.000006px;}
.wsfb{word-spacing:0.000007px;}
.ws116{word-spacing:0.000011px;}
.wsbb{word-spacing:0.000013px;}
.wsf3{word-spacing:0.000022px;}
.wsdd{word-spacing:0.000023px;}
.ws101{word-spacing:0.000033px;}
.ws102{word-spacing:0.000035px;}
.ws114{word-spacing:0.000038px;}
.ws109{word-spacing:0.000040px;}
.ws4b{word-spacing:0.000044px;}
.ws60{word-spacing:0.000045px;}
.ws91{word-spacing:0.000050px;}
.wsc6{word-spacing:0.000052px;}
.ws2e{word-spacing:0.000055px;}
.ws26{word-spacing:0.000059px;}
.ws9d{word-spacing:0.000060px;}
.wsa4{word-spacing:0.000063px;}
.ws52{word-spacing:0.000065px;}
.ws77{word-spacing:0.000066px;}
.ws99{word-spacing:0.000070px;}
.wsbd{word-spacing:0.000074px;}
.ws5e{word-spacing:0.000075px;}
.ws10b{word-spacing:0.000078px;}
.ws6b{word-spacing:0.000081px;}
.ws10a{word-spacing:0.000083px;}
.ws1c{word-spacing:0.000086px;}
.ws95{word-spacing:0.000096px;}
.ws69{word-spacing:0.000100px;}
.wsec{word-spacing:0.000103px;}
.ws105{word-spacing:0.000111px;}
.wsa2{word-spacing:0.000115px;}
.wsc2{word-spacing:0.000117px;}
.ws103{word-spacing:0.000123px;}
.ws107{word-spacing:0.000128px;}
.ws5d{word-spacing:0.000131px;}
.ws10d{word-spacing:0.000132px;}
.ws10f{word-spacing:0.000135px;}
.ws3c{word-spacing:0.000136px;}
.wsfc{word-spacing:0.000138px;}
.ws113{word-spacing:0.000140px;}
.wsc4{word-spacing:0.000141px;}
.ws39{word-spacing:0.000147px;}
.ws106{word-spacing:0.000150px;}
.wsfd{word-spacing:0.000152px;}
.ws117{word-spacing:0.000155px;}
.wsfa{word-spacing:0.000156px;}
.wsc5{word-spacing:0.000157px;}
.ws10{word-spacing:0.000160px;}
.wsff{word-spacing:0.000162px;}
.ws9{word-spacing:0.000163px;}
.ws115{word-spacing:0.000168px;}
.ws34{word-spacing:0.000171px;}
.ws108{word-spacing:0.000198px;}
.wsfe{word-spacing:0.000201px;}
.ws1d{word-spacing:0.000210px;}
.ws10e{word-spacing:0.000246px;}
.ws112{word-spacing:0.000297px;}
.wsc3{word-spacing:0.000343px;}
.ws4e{word-spacing:0.000456px;}
.wse8{word-spacing:4.499895px;}
.wsa6{word-spacing:4.499918px;}
.wsb3{word-spacing:4.499931px;}
.ws8b{word-spacing:4.499940px;}
.ws18{word-spacing:4.499943px;}
.wsd5{word-spacing:4.499956px;}
.ws38{word-spacing:4.499976px;}
.ws75{word-spacing:4.499995px;}
.ws3{word-spacing:4.500000px;}
.ws13{word-spacing:4.500006px;}
.wsa8{word-spacing:4.500009px;}
.ws6f{word-spacing:4.500012px;}
.ws3a{word-spacing:4.500018px;}
.wsbf{word-spacing:4.500027px;}
.ws61{word-spacing:4.500031px;}
.wsf4{word-spacing:4.500044px;}
.wsd2{word-spacing:4.500050px;}
.ws2c{word-spacing:4.500058px;}
.wse1{word-spacing:4.500059px;}
.wsa3{word-spacing:4.500064px;}
.ws72{word-spacing:4.500067px;}
.wsb{word-spacing:4.500071px;}
.ws73{word-spacing:4.500073px;}
.wse2{word-spacing:4.500080px;}
.wsc0{word-spacing:4.500082px;}
.ws5c{word-spacing:4.500111px;}
.wsce{word-spacing:4.500114px;}
.wsee{word-spacing:4.500117px;}
.wsa{word-spacing:4.500120px;}
.ws3d{word-spacing:4.500128px;}
.ws8d{word-spacing:4.500132px;}
.wse{word-spacing:4.500133px;}
.ws11{word-spacing:4.500135px;}
.ws94{word-spacing:4.500136px;}
.ws1b{word-spacing:4.500137px;}
.ws74{word-spacing:4.500141px;}
.wsd6{word-spacing:4.500147px;}
.wsd{word-spacing:4.500152px;}
.wsc7{word-spacing:4.500154px;}
.ws57{word-spacing:4.500156px;}
.wsac{word-spacing:4.500160px;}
.ws87{word-spacing:4.500164px;}
.wsa1{word-spacing:4.500169px;}
.ws30{word-spacing:4.500182px;}
.wsab{word-spacing:4.500201px;}
.wsf1{word-spacing:4.500210px;}
.ws110{word-spacing:6.047780px;}
.wsf{word-spacing:7.185836px;}
.wsb2{word-spacing:7.192211px;}
.ws63{word-spacing:8.999931px;}
.wsb7{word-spacing:8.999955px;}
.wsf9{word-spacing:8.999974px;}
.wsae{word-spacing:8.999981px;}
.wsea{word-spacing:8.999982px;}
.wsc{word-spacing:8.999991px;}
.ws97{word-spacing:8.999995px;}
.ws8c{word-spacing:8.999997px;}
.ws5{word-spacing:9.000000px;}
.wsdb{word-spacing:9.000022px;}
.wsf7{word-spacing:9.000030px;}
.wscb{word-spacing:9.000035px;}
.ws93{word-spacing:9.000046px;}
.ws9c{word-spacing:9.000049px;}
.ws7c{word-spacing:9.000052px;}
.wse9{word-spacing:9.000054px;}
.wse6{word-spacing:9.000059px;}
.ws66{word-spacing:9.000064px;}
.ws43{word-spacing:9.000066px;}
.ws40{word-spacing:9.000068px;}
.wsbc{word-spacing:9.000073px;}
.ws41{word-spacing:9.000075px;}
.ws58{word-spacing:9.000091px;}
.ws42{word-spacing:9.000096px;}
.wsde{word-spacing:9.000098px;}
.wscf{word-spacing:9.000100px;}
.wsd0{word-spacing:9.000117px;}
.ws44{word-spacing:9.000118px;}
.ws45{word-spacing:9.000124px;}
.ws3f{word-spacing:9.000127px;}
.ws78{word-spacing:9.000129px;}
.ws85{word-spacing:9.000134px;}
.ws37{word-spacing:9.000136px;}
.ws2f{word-spacing:9.000138px;}
.ws19{word-spacing:9.000140px;}
.ws59{word-spacing:9.000147px;}
.ws36{word-spacing:9.000151px;}
.ws15{word-spacing:9.000152px;}
.ws17{word-spacing:9.000156px;}
.ws7f{word-spacing:9.000165px;}
.wsb6{word-spacing:9.000198px;}
.wse7{word-spacing:9.000201px;}
.wsd7{word-spacing:11.685870px;}
.wsf2{word-spacing:11.685939px;}
.wsc8{word-spacing:11.685942px;}
.wsa5{word-spacing:11.686068px;}
.ws83{word-spacing:13.478815px;}
.ws81{word-spacing:13.478838px;}
.wse4{word-spacing:13.499931px;}
.ws3e{word-spacing:13.499968px;}
.ws86{word-spacing:13.499982px;}
.wsaa{word-spacing:13.499986px;}
.ws82{word-spacing:13.499994px;}
.ws80{word-spacing:13.499998px;}
.ws7{word-spacing:13.500000px;}
.ws5b{word-spacing:13.500022px;}
.wsf5{word-spacing:13.500033px;}
.wsb9{word-spacing:13.500052px;}
.wsdc{word-spacing:13.500057px;}
.ws9a{word-spacing:13.500062px;}
.ws4f{word-spacing:13.500066px;}
.ws6a{word-spacing:13.500068px;}
.wsd1{word-spacing:13.500073px;}
.ws50{word-spacing:13.500075px;}
.wsca{word-spacing:13.500094px;}
.ws27{word-spacing:13.500095px;}
.wscd{word-spacing:13.500108px;}
.ws12{word-spacing:13.500121px;}
.wsb5{word-spacing:13.500123px;}
.ws9b{word-spacing:13.500128px;}
.ws89{word-spacing:13.500131px;}
.ws7a{word-spacing:13.500132px;}
.ws62{word-spacing:13.500134px;}
.ws29{word-spacing:13.500135px;}
.ws4d{word-spacing:13.500136px;}
.ws79{word-spacing:13.500139px;}
.wse3{word-spacing:13.500140px;}
.wsa7{word-spacing:13.500144px;}
.ws32{word-spacing:13.500149px;}
.ws47{word-spacing:13.500152px;}
.wsad{word-spacing:13.500154px;}
.wsc1{word-spacing:13.500166px;}
.ws84{word-spacing:13.500186px;}
.wse0{word-spacing:13.500202px;}
.ws51{word-spacing:13.500209px;}
.wsba{word-spacing:13.500214px;}
.ws2a{word-spacing:13.500270px;}
.wse5{word-spacing:16.185870px;}
.ws2b{word-spacing:16.185938px;}
.ws7d{word-spacing:16.186015px;}
.ws7e{word-spacing:16.192067px;}
.ws7b{word-spacing:16.192202px;}
.ws1f{word-spacing:17.999940px;}
.ws14{word-spacing:17.999968px;}
.ws35{word-spacing:18.000013px;}
.ws65{word-spacing:18.000038px;}
.ws3b{word-spacing:18.000044px;}
.wsda{word-spacing:18.000049px;}
.wsf6{word-spacing:18.000055px;}
.ws98{word-spacing:18.000064px;}
.wsd9{word-spacing:18.000120px;}
.ws1a{word-spacing:18.000126px;}
.ws5a{word-spacing:18.000136px;}
.ws20{word-spacing:18.000138px;}
.wseb{word-spacing:18.000142px;}
.ws6c{word-spacing:18.000144px;}
.ws1e{word-spacing:18.000154px;}
.ws56{word-spacing:18.000162px;}
.ws2{word-spacing:18.000432px;}
.ws96{word-spacing:20.685853px;}
.ws28{word-spacing:20.685884px;}
.ws92{word-spacing:20.685919px;}
.ws53{word-spacing:22.499895px;}
.ws88{word-spacing:22.499931px;}
.ws4{word-spacing:22.500000px;}
.ws70{word-spacing:22.500063px;}
.ws64{word-spacing:22.500073px;}
.ws46{word-spacing:22.500105px;}
.ws55{word-spacing:22.500131px;}
.ws4c{word-spacing:22.500134px;}
.wsb8{word-spacing:22.500135px;}
.ws8a{word-spacing:22.500139px;}
.ws54{word-spacing:22.500141px;}
.wsd3{word-spacing:22.500146px;}
.wsdf{word-spacing:22.500154px;}
.ws9e{word-spacing:22.500211px;}
.ws21{word-spacing:26.999931px;}
.ws6d{word-spacing:26.999939px;}
.wsa9{word-spacing:26.999995px;}
.ws22{word-spacing:27.000042px;}
.ws2d{word-spacing:27.000055px;}
.wsb4{word-spacing:27.000126px;}
.ws31{word-spacing:27.000129px;}
.ws8{word-spacing:27.000134px;}
.ws6e{word-spacing:27.000139px;}
.wsc9{word-spacing:27.000148px;}
.wsd4{word-spacing:31.500013px;}
.wsa0{word-spacing:31.500051px;}
.ws5f{word-spacing:31.500075px;}
.ws90{word-spacing:31.500128px;}
.wsf8{word-spacing:31.500133px;}
.ws76{word-spacing:31.500136px;}
.ws16{word-spacing:31.500139px;}
.ws68{word-spacing:36.000000px;}
.ws8e{word-spacing:36.000105px;}
.ws9f{word-spacing:36.000133px;}
.wsd8{word-spacing:36.000138px;}
.wscc{word-spacing:36.000153px;}
.ws8f{word-spacing:36.000270px;}
.ws24{word-spacing:40.500063px;}
.ws67{word-spacing:40.500134px;}
.ws23{word-spacing:40.500141px;}
.wsf0{word-spacing:49.500090px;}
.ws71{word-spacing:49.500111px;}
.wsef{word-spacing:49.500138px;}
.ws49{word-spacing:85.500045px;}
.ws48{word-spacing:90.000156px;}
._21{margin-left:-10.220214px;}
._12{margin-left:-9.113357px;}
._1a{margin-left:-7.799895px;}
._9{margin-left:-6.609636px;}
._3{margin-left:-5.152500px;}
._d{margin-left:-4.078973px;}
._0{margin-left:-2.808000px;}
._1{margin-left:-1.237500px;}
._2{width:1.224000px;}
._4{width:2.664000px;}
._b{width:18.001728px;}
._17{width:19.659735px;}
._22{width:20.666466px;}
._5{width:21.753432px;}
._a{width:23.247432px;}
._1c{width:24.307326px;}
._20{width:25.922120px;}
._7{width:27.000432px;}
._1e{width:28.878401px;}
._1d{width:30.352795px;}
._c{width:31.500432px;}
._1f{width:34.250253px;}
._e{width:36.000423px;}
._6{width:40.500000px;}
._8{width:45.000432px;}
._f{width:49.154157px;}
._14{width:50.422257px;}
._13{width:54.000477px;}
._16{width:58.500698px;}
._1b{width:60.048000px;}
._10{width:63.000216px;}
._15{width:72.000630px;}
._11{width:107.973023px;}
._18{width:328.444599px;}
._19{width:373.501296px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:43.200000px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:74.999997px;}
.fs6{font-size:83.999997px;}
.fs0{font-size:131.998500px;}
.y0{bottom:0.000000px;}
.yc6{bottom:11.768552px;}
.ycf{bottom:13.578657px;}
.ybd{bottom:13.578658px;}
.y90{bottom:13.580115px;}
.yb2{bottom:13.580116px;}
.ya9{bottom:13.580121px;}
.y87{bottom:13.580122px;}
.y92{bottom:13.581583px;}
.y95{bottom:13.581585px;}
.y82{bottom:13.581586px;}
.ye0{bottom:13.583047px;}
.ya0{bottom:31.581582px;}
.yc4{bottom:31.581583px;}
.ycd{bottom:31.581585px;}
.yd2{bottom:35.179242px;}
.y85{bottom:35.179243px;}
.y8f{bottom:35.180700px;}
.ya8{bottom:35.180706px;}
.yac{bottom:35.180707px;}
.yb1{bottom:35.181149px;}
.ya2{bottom:35.182168px;}
.y94{bottom:35.182170px;}
.y8a{bottom:35.182171px;}
.ycc{bottom:53.179242px;}
.yc3{bottom:53.179243px;}
.y9f{bottom:53.180712px;}
.yb0{bottom:56.740724px;}
.yd1{bottom:56.779827px;}
.y84{bottom:56.779828px;}
.y8e{bottom:56.779830px;}
.ya7{bottom:56.781291px;}
.yab{bottom:56.781292px;}
.ydb{bottom:56.782755px;}
.y9b{bottom:56.782756px;}
.yd6{bottom:56.782758px;}
.ycb{bottom:74.779827px;}
.yc2{bottom:74.779828px;}
.y9e{bottom:74.781297px;}
.y89{bottom:78.380413px;}
.y8d{bottom:78.380415px;}
.yc9{bottom:78.380416px;}
.ya6{bottom:78.381876px;}
.ydf{bottom:78.381877px;}
.yda{bottom:78.383340px;}
.y9a{bottom:78.383341px;}
.yd5{bottom:78.383343px;}
.yaf{bottom:79.952191px;}
.y9d{bottom:94.364261px;}
.yc1{bottom:96.380412px;}
.y8c{bottom:97.963380px;}
.yba{bottom:99.980998px;}
.ybf{bottom:99.981000px;}
.y99{bottom:99.981001px;}
.ya5{bottom:99.982461px;}
.yde{bottom:99.982462px;}
.y4f{bottom:116.706225px;}
.y14f{bottom:117.304245px;}
.yef{bottom:117.831585px;}
.y12{bottom:119.730600px;}
.ya4{bottom:121.580121px;}
.yb9{bottom:121.581583px;}
.yd4{bottom:121.581585px;}
.y98{bottom:121.581586px;}
.ydd{bottom:121.583047px;}
.y174{bottom:123.904830px;}
.y80{bottom:125.624550px;}
.yff{bottom:127.275435px;}
.y6b{bottom:127.505415px;}
.y2d{bottom:127.506150px;}
.y10a{bottom:127.506885px;}
.yc8{bottom:134.399414px;}
.y43{bottom:134.705850px;}
.y5d{bottom:134.706585px;}
.y14e{bottom:138.904830px;}
.yc0{bottom:141.600586px;}
.y129{bottom:143.018561px;}
.yb8{bottom:143.182168px;}
.y97{bottom:143.182171px;}
.y173{bottom:145.508340px;}
.y4e{bottom:159.906300px;}
.y14d{bottom:160.505415px;}
.yee{bottom:161.029830px;}
.yb7{bottom:164.779828px;}
.y172{bottom:167.106000px;}
.y7f{bottom:168.825720px;}
.yfe{bottom:170.475135px;}
.y109{bottom:170.705115px;}
.y2c{bottom:170.705850px;}
.y6a{bottom:170.706585px;}
.yc7{bottom:177.600586px;}
.y42{bottom:177.906300px;}
.y11{bottom:177.930225px;}
.yc5{bottom:178.541016px;}
.y14c{bottom:182.106000px;}
.yb6{bottom:186.380413px;}
.y171{bottom:188.703660px;}
.y128{bottom:191.946825px;}
.y120{bottom:200.387250px;}
.y4d{bottom:203.106000px;}
.y14b{bottom:203.706585px;}
.yed{bottom:204.231000px;}
.y170{bottom:210.307170px;}
.y108{bottom:213.904830px;}
.y79{bottom:213.905565px;}
.y2b{bottom:213.906105px;}
.y69{bottom:213.906300px;}
.y41{bottom:221.106000px;}
.y10{bottom:221.130225px;}
.y14a{bottom:225.304245px;}
.yfd{bottom:228.674850px;}
.y16f{bottom:231.904830px;}
.y72{bottom:239.106000px;}
.y11f{bottom:243.588420px;}
.y4c{bottom:246.305700px;}
.y149{bottom:246.904830px;}
.yec{bottom:247.432170px;}
.y127{bottom:247.957031px;}
.y16e{bottom:253.508340px;}
.y2a{bottom:257.106000px;}
.y40{bottom:264.305700px;}
.y148{bottom:268.505415px;}
.yfc{bottom:271.874550px;}
.y16d{bottom:275.106000px;}
.ybe{bottom:280.875000px;}
.y71{bottom:282.305700px;}
.y11e{bottom:286.789590px;}
.y4b{bottom:289.505775px;}
.y147{bottom:290.106000px;}
.yeb{bottom:290.630415px;}
.y7e{bottom:291.225135px;}
.y16c{bottom:296.703660px;}
.y68{bottom:300.305700px;}
.y29{bottom:300.306075px;}
.y78{bottom:300.306435px;}
.y107{bottom:300.307170px;}
.ybb{bottom:302.475586px;}
.y126{bottom:305.198726px;}
.y175{bottom:305.867718px;}
.y5c{bottom:307.505775px;}
.y3f{bottom:307.506150px;}
.yf{bottom:307.530225px;}
.y146{bottom:311.706585px;}
.yfb{bottom:315.075720px;}
.y16b{bottom:318.307170px;}
.ybc{bottom:324.076172px;}
.y70{bottom:325.505415px;}
.y11d{bottom:329.987835px;}
.y145{bottom:333.304245px;}
.yea{bottom:333.831585px;}
.y7d{bottom:334.424850px;}
.y16a{bottom:339.904830px;}
.y67{bottom:343.505415px;}
.y28{bottom:343.506150px;}
.y106{bottom:343.506885px;}
.y3e{bottom:350.705850px;}
.y4a{bottom:350.706225px;}
.ye{bottom:350.730225px;}
.y144{bottom:354.904830px;}
.yfa{bottom:358.273965px;}
.y169{bottom:361.508340px;}
.y125{bottom:362.440436px;}
.y6f{bottom:368.706585px;}
.y143{bottom:376.505415px;}
.ye9{bottom:377.029830px;}
.y11c{bottom:377.738251px;}
.y168{bottom:383.106000px;}
.y105{bottom:386.705113px;}
.y115{bottom:386.705115px;}
.y27{bottom:386.705850px;}
.y66{bottom:386.706585px;}
.y3d{bottom:393.906300px;}
.yd{bottom:393.930225px;}
.y142{bottom:398.106000px;}
.yf9{bottom:401.475135px;}
.y167{bottom:404.703660px;}
.yb5{bottom:405.750002px;}
.y5b{bottom:411.906300px;}
.y124{bottom:419.677736px;}
.y141{bottom:419.706585px;}
.ye8{bottom:420.231000px;}
.y11b{bottom:423.588420px;}
.y166{bottom:426.307170px;}
.y114{bottom:429.904830px;}
.y77{bottom:429.905565px;}
.y26{bottom:429.905925px;}
.y65{bottom:429.906300px;}
.y3c{bottom:437.106000px;}
.yc{bottom:437.130225px;}
.y140{bottom:441.304245px;}
.yf8{bottom:444.674850px;}
.y104{bottom:447.904830px;}
.y5a{bottom:455.106000px;}
.y13f{bottom:462.904830px;}
.ye7{bottom:463.432170px;}
.y11a{bottom:466.789590px;}
.y123{bottom:468.606000px;}
.y165{bottom:469.508340px;}
.y25{bottom:473.106000px;}
.y3b{bottom:480.305700px;}
.yb{bottom:480.330225px;}
.y13e{bottom:484.505415px;}
.y103{bottom:491.106000px;}
.y59{bottom:498.305700px;}
.y13d{bottom:506.106000px;}
.ye6{bottom:506.630415px;}
.y119{bottom:509.987835px;}
.yae{bottom:512.178224px;}
.y164{bottom:512.703660px;}
.y64{bottom:516.305700px;}
.y24{bottom:516.306075px;}
.y76{bottom:516.306435px;}
.y113{bottom:516.307170px;}
.ya{bottom:523.530225px;}
.y13c{bottom:527.706585px;}
.y122{bottom:527.935170px;}
.y102{bottom:534.307170px;}
.yb4{bottom:535.350586px;}
.y6e{bottom:541.505415px;}
.y58{bottom:541.505775px;}
.y3a{bottom:541.506150px;}
.y13b{bottom:549.304245px;}
.ye5{bottom:549.831585px;}
.y118{bottom:553.187550px;}
.y163{bottom:555.904830px;}
.yb3{bottom:556.949708px;}
.y63{bottom:559.505415px;}
.y23{bottom:559.506150px;}
.y112{bottom:559.506885px;}
.y9{bottom:566.730225px;}
.y121{bottom:568.506885px;}
.y13a{bottom:570.904830px;}
.y101{bottom:577.506885px;}
.y162{bottom:577.508340px;}
.y39{bottom:584.705850px;}
.y139{bottom:592.505415px;}
.ye4{bottom:593.029830px;}
.y117{bottom:596.387700px;}
.y161{bottom:599.106000px;}
.y111{bottom:602.705115px;}
.y57{bottom:602.706225px;}
.y62{bottom:602.706585px;}
.y8{bottom:609.930225px;}
.y138{bottom:614.106000px;}
.yaa{bottom:617.025877px;}
.y160{bottom:620.703660px;}
.y100{bottom:620.705115px;}
.y22{bottom:620.705850px;}
.yf7{bottom:620.706585px;}
.y38{bottom:627.906300px;}
.y137{bottom:635.706585px;}
.ye3{bottom:636.231000px;}
.yad{bottom:638.624998px;}
.y15f{bottom:642.307170px;}
.y110{bottom:645.904830px;}
.y75{bottom:645.905565px;}
.y56{bottom:645.906300px;}
.y116{bottom:652.945305px;}
.y7{bottom:653.130225px;}
.y136{bottom:657.304245px;}
.yf6{bottom:663.904830px;}
.y21{bottom:663.905925px;}
.y37{bottom:671.106000px;}
.y135{bottom:678.904830px;}
.ye2{bottom:679.432170px;}
.y15e{bottom:685.508340px;}
.y55{bottom:689.106000px;}
.ya3{bottom:698.699709px;}
.y134{bottom:700.505415px;}
.y20{bottom:707.106000px;}
.y9c{bottom:710.705568px;}
.y36{bottom:714.305700px;}
.y133{bottom:722.106000px;}
.ye1{bottom:722.630415px;}
.y6{bottom:723.330225px;}
.y15d{bottom:728.703660px;}
.y54{bottom:732.305700px;}
.y74{bottom:732.306435px;}
.y10f{bottom:732.307170px;}
.y132{bottom:743.706583px;}
.y1f{bottom:750.306075px;}
.yf5{bottom:750.307170px;}
.y35{bottom:757.506150px;}
.ya1{bottom:763.500001px;}
.y15c{bottom:771.904830px;}
.y61{bottom:775.505415px;}
.y53{bottom:775.505775px;}
.y49{bottom:775.506150px;}
.yf4{bottom:793.505415px;}
.y1e{bottom:793.506150px;}
.y10e{bottom:793.506885px;}
.y15b{bottom:793.508340px;}
.y5{bottom:800.658225px;}
.y34{bottom:800.705850px;}
.y131{bottom:804.904830px;}
.y15a{bottom:815.106000px;}
.y48{bottom:818.705850px;}
.y52{bottom:818.706225px;}
.y60{bottom:818.706585px;}
.ydc{bottom:818.849123px;}
.y159{bottom:836.703660px;}
.y10d{bottom:836.705115px;}
.y1d{bottom:836.705850px;}
.yf3{bottom:836.706585px;}
.y130{bottom:841.505415px;}
.y33{bottom:843.906105px;}
.y96{bottom:845.173829px;}
.yd7{bottom:852.455568px;}
.y158{bottom:858.307170px;}
.y8b{bottom:859.593750px;}
.y4{bottom:861.858225px;}
.y73{bottom:861.905565px;}
.y47{bottom:861.906300px;}
.yd9{bottom:862.048830px;}
.y12f{bottom:863.106000px;}
.yf2{bottom:879.904830px;}
.y1c{bottom:879.905925px;}
.y32{bottom:887.105998px;}
.y93{bottom:888.375000px;}
.y12e{bottom:899.705115px;}
.y157{bottom:901.508340px;}
.y46{bottom:905.106000px;}
.yd8{bottom:905.250002px;}
.y3{bottom:909.108225px;}
.y91{bottom:909.975586px;}
.y1b{bottom:923.106000px;}
.y156{bottom:944.703660px;}
.y6d{bottom:948.305700px;}
.y31{bottom:948.305895px;}
.y7c{bottom:948.306435px;}
.y12d{bottom:957.906300px;}
.y45{bottom:966.305700px;}
.y1a{bottom:966.306075px;}
.yf1{bottom:966.307170px;}
.yd3{bottom:986.923829px;}
.y155{bottom:987.904830px;}
.y6c{bottom:991.505415px;}
.y2{bottom:994.297725px;}
.y12c{bottom:1001.106000px;}
.y5f{bottom:1009.505413px;}
.y51{bottom:1009.505781px;}
.y19{bottom:1009.506055px;}
.y30{bottom:1009.506147px;}
.y10c{bottom:1009.506879px;}
.y154{bottom:1009.508343px;}
.y88{bottom:1013.250000px;}
.yca{bottom:1015.725586px;}
.y153{bottom:1031.106000px;}
.y7b{bottom:1034.706586px;}
.y83{bottom:1034.850585px;}
.y12b{bottom:1044.305708px;}
.yd0{bottom:1051.725586px;}
.y152{bottom:1052.703655px;}
.y10b{bottom:1052.705121px;}
.y2f{bottom:1052.705853px;}
.y18{bottom:1052.705944px;}
.y50{bottom:1052.706219px;}
.y5e{bottom:1052.706586px;}
.y86{bottom:1056.449706px;}
.y1{bottom:1070.191350px;}
.yce{bottom:1073.326171px;}
.y151{bottom:1074.307171px;}
.yf0{bottom:1095.904828px;}
.y7a{bottom:1095.905560px;}
.y17{bottom:1095.905926px;}
.y2e{bottom:1095.906109px;}
.y44{bottom:1095.906292px;}
.y12a{bottom:1102.505413px;}
.y81{bottom:1116.524414px;}
.y150{bottom:1117.508343px;}
.y16{bottom:1139.106000px;}
.y15{bottom:1213.998000px;}
.y14{bottom:1231.998000px;}
.y13{bottom:1249.998000px;}
.h7{height:37.350586px;}
.h3{height:38.836800px;}
.h1d{height:38.836802px;}
.h5{height:41.689453px;}
.hc{height:49.392000px;}
.h1c{height:49.752000px;}
.h18{height:49.992188px;}
.h1e{height:50.695313px;}
.h2{height:51.802200px;}
.h14{height:52.075193px;}
.h9{height:58.949708px;}
.h12{height:58.951171px;}
.h4{height:64.728000px;}
.h6{height:67.348804px;}
.h1b{height:75.515998px;}
.h8{height:80.548829px;}
.h11{height:80.550292px;}
.h1{height:91.651302px;}
.h17{height:101.208984px;}
.ha{height:102.149414px;}
.h13{height:103.721192px;}
.hd{height:123.750000px;}
.hf{height:133.343262px;}
.h16{height:138.149414px;}
.h10{height:145.349121px;}
.h19{height:145.350586px;}
.hb{height:152.531250px;}
.h1a{height:166.949707px;}
.he{height:166.951171px;}
.h15{height:210.149413px;}
.h0{height:1263.000000px;}
.w3{width:99.000000px;}
.w5{width:151.875000px;}
.w2{width:158.625000px;}
.w6{width:166.500000px;}
.w4{width:177.750000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x19{left:8.261847px;}
.x20{left:9.319342px;}
.x1c{left:10.642327px;}
.xa{left:12.190421px;}
.x14{left:13.571857px;}
.x10{left:15.250345px;}
.x26{left:16.447340px;}
.x1b{left:17.518335px;}
.x2c{left:19.237361px;}
.x18{left:20.321875px;}
.x13{left:22.324365px;}
.x21{left:23.617558px;}
.x23{left:24.943462px;}
.x1f{left:26.203354px;}
.x16{left:27.872907px;}
.x8{left:30.194884px;}
.x29{left:31.405372px;}
.x25{left:32.453897px;}
.x1e{left:34.312389px;}
.x1a{left:35.621925px;}
.x11{left:37.610904px;}
.x27{left:38.798913px;}
.xe{left:39.887925px;}
.x17{left:42.470921px;}
.x15{left:45.629929px;}
.x28{left:48.257936px;}
.x24{left:49.373940px;}
.xc{left:51.808417px;}
.x22{left:53.783956px;}
.x2b{left:57.694445px;}
.x12{left:60.749965px;}
.x2a{left:63.310458px;}
.x1d{left:67.693463px;}
.x7{left:84.375000px;}
.x6{left:108.000525px;}
.x1{left:112.463400px;}
.x2d{left:122.625000px;}
.x3{left:144.133275px;}
.x5{left:162.282900px;}
.x4{left:228.036900px;}
.x9{left:244.125000px;}
.xb{left:344.250000px;}
.x2{left:376.803525px;}
.xd{left:523.125000px;}
.xf{left:676.125000px;}
@media print{
.v2{vertical-align:-25.344000pt;}
.v5{vertical-align:-11.519995pt;}
.v4{vertical-align:-8.956800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.704000pt;}
.v3{vertical-align:25.344002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000002pt;}
.ls11{letter-spacing:0.000060pt;}
.ls1{letter-spacing:0.000061pt;}
.ls7{letter-spacing:0.000065pt;}
.ls4{letter-spacing:0.000072pt;}
.ls6{letter-spacing:0.000076pt;}
.ls2{letter-spacing:0.000080pt;}
.ls8{letter-spacing:0.000087pt;}
.ls12{letter-spacing:15.987499pt;}
.lsc{letter-spacing:16.000000pt;}
.ls10{letter-spacing:16.000108pt;}
.lsa{letter-spacing:16.000120pt;}
.lsd{letter-spacing:16.000124pt;}
.lsf{letter-spacing:16.000160pt;}
.lsb{letter-spacing:16.000240pt;}
.lse{letter-spacing:16.000280pt;}
.ls9{letter-spacing:23.989654pt;}
.ls3{letter-spacing:47.987499pt;}
.wsb0{word-spacing:-16.666666pt;}
.wsbe{word-spacing:-16.000065pt;}
.wsaf{word-spacing:-16.000061pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws111{word-spacing:-0.064000pt;}
.wsb1{word-spacing:-0.021992pt;}
.wsed{word-spacing:-0.000138pt;}
.ws25{word-spacing:-0.000098pt;}
.ws118{word-spacing:-0.000061pt;}
.ws10c{word-spacing:-0.000049pt;}
.ws100{word-spacing:-0.000005pt;}
.ws4a{word-spacing:-0.000001pt;}
.ws6{word-spacing:0.000000pt;}
.ws104{word-spacing:0.000003pt;}
.ws33{word-spacing:0.000005pt;}
.wsfb{word-spacing:0.000006pt;}
.ws116{word-spacing:0.000010pt;}
.wsbb{word-spacing:0.000012pt;}
.wsf3{word-spacing:0.000019pt;}
.wsdd{word-spacing:0.000021pt;}
.ws101{word-spacing:0.000029pt;}
.ws102{word-spacing:0.000031pt;}
.ws114{word-spacing:0.000034pt;}
.ws109{word-spacing:0.000035pt;}
.ws4b{word-spacing:0.000039pt;}
.ws60{word-spacing:0.000040pt;}
.ws91{word-spacing:0.000045pt;}
.wsc6{word-spacing:0.000046pt;}
.ws2e{word-spacing:0.000049pt;}
.ws26{word-spacing:0.000052pt;}
.ws9d{word-spacing:0.000054pt;}
.wsa4{word-spacing:0.000056pt;}
.ws52{word-spacing:0.000058pt;}
.ws77{word-spacing:0.000059pt;}
.ws99{word-spacing:0.000062pt;}
.wsbd{word-spacing:0.000066pt;}
.ws5e{word-spacing:0.000067pt;}
.ws10b{word-spacing:0.000070pt;}
.ws6b{word-spacing:0.000072pt;}
.ws10a{word-spacing:0.000074pt;}
.ws1c{word-spacing:0.000076pt;}
.ws95{word-spacing:0.000085pt;}
.ws69{word-spacing:0.000089pt;}
.wsec{word-spacing:0.000091pt;}
.ws105{word-spacing:0.000099pt;}
.wsa2{word-spacing:0.000102pt;}
.wsc2{word-spacing:0.000104pt;}
.ws103{word-spacing:0.000109pt;}
.ws107{word-spacing:0.000114pt;}
.ws5d{word-spacing:0.000116pt;}
.ws10d{word-spacing:0.000118pt;}
.ws10f{word-spacing:0.000120pt;}
.ws3c{word-spacing:0.000121pt;}
.wsfc{word-spacing:0.000122pt;}
.ws113{word-spacing:0.000124pt;}
.wsc4{word-spacing:0.000126pt;}
.ws39{word-spacing:0.000130pt;}
.ws106{word-spacing:0.000134pt;}
.wsfd{word-spacing:0.000135pt;}
.ws117{word-spacing:0.000138pt;}
.wsfa{word-spacing:0.000139pt;}
.wsc5{word-spacing:0.000140pt;}
.ws10{word-spacing:0.000142pt;}
.wsff{word-spacing:0.000144pt;}
.ws9{word-spacing:0.000145pt;}
.ws115{word-spacing:0.000150pt;}
.ws34{word-spacing:0.000152pt;}
.ws108{word-spacing:0.000176pt;}
.wsfe{word-spacing:0.000179pt;}
.ws1d{word-spacing:0.000187pt;}
.ws10e{word-spacing:0.000219pt;}
.ws112{word-spacing:0.000264pt;}
.wsc3{word-spacing:0.000305pt;}
.ws4e{word-spacing:0.000406pt;}
.wse8{word-spacing:3.999907pt;}
.wsa6{word-spacing:3.999927pt;}
.wsb3{word-spacing:3.999939pt;}
.ws8b{word-spacing:3.999947pt;}
.ws18{word-spacing:3.999950pt;}
.wsd5{word-spacing:3.999961pt;}
.ws38{word-spacing:3.999979pt;}
.ws75{word-spacing:3.999996pt;}
.ws3{word-spacing:4.000000pt;}
.ws13{word-spacing:4.000006pt;}
.wsa8{word-spacing:4.000008pt;}
.ws6f{word-spacing:4.000010pt;}
.ws3a{word-spacing:4.000016pt;}
.wsbf{word-spacing:4.000024pt;}
.ws61{word-spacing:4.000028pt;}
.wsf4{word-spacing:4.000039pt;}
.wsd2{word-spacing:4.000045pt;}
.ws2c{word-spacing:4.000051pt;}
.wse1{word-spacing:4.000053pt;}
.wsa3{word-spacing:4.000057pt;}
.ws72{word-spacing:4.000059pt;}
.wsb{word-spacing:4.000063pt;}
.ws73{word-spacing:4.000065pt;}
.wse2{word-spacing:4.000071pt;}
.wsc0{word-spacing:4.000073pt;}
.ws5c{word-spacing:4.000099pt;}
.wsce{word-spacing:4.000102pt;}
.wsee{word-spacing:4.000104pt;}
.wsa{word-spacing:4.000107pt;}
.ws3d{word-spacing:4.000114pt;}
.ws8d{word-spacing:4.000117pt;}
.wse{word-spacing:4.000118pt;}
.ws11{word-spacing:4.000120pt;}
.ws94{word-spacing:4.000121pt;}
.ws1b{word-spacing:4.000122pt;}
.ws74{word-spacing:4.000126pt;}
.wsd6{word-spacing:4.000130pt;}
.wsd{word-spacing:4.000135pt;}
.wsc7{word-spacing:4.000137pt;}
.ws57{word-spacing:4.000138pt;}
.wsac{word-spacing:4.000142pt;}
.ws87{word-spacing:4.000146pt;}
.wsa1{word-spacing:4.000150pt;}
.ws30{word-spacing:4.000162pt;}
.wsab{word-spacing:4.000179pt;}
.wsf1{word-spacing:4.000187pt;}
.ws110{word-spacing:5.375805pt;}
.wsf{word-spacing:6.387410pt;}
.wsb2{word-spacing:6.393076pt;}
.ws63{word-spacing:7.999939pt;}
.wsb7{word-spacing:7.999960pt;}
.wsf9{word-spacing:7.999977pt;}
.wsae{word-spacing:7.999983pt;}
.wsea{word-spacing:7.999984pt;}
.wsc{word-spacing:7.999992pt;}
.ws97{word-spacing:7.999996pt;}
.ws8c{word-spacing:7.999998pt;}
.ws5{word-spacing:8.000000pt;}
.wsdb{word-spacing:8.000020pt;}
.wsf7{word-spacing:8.000027pt;}
.wscb{word-spacing:8.000031pt;}
.ws93{word-spacing:8.000041pt;}
.ws9c{word-spacing:8.000044pt;}
.ws7c{word-spacing:8.000046pt;}
.wse9{word-spacing:8.000048pt;}
.wse6{word-spacing:8.000053pt;}
.ws66{word-spacing:8.000057pt;}
.ws43{word-spacing:8.000059pt;}
.ws40{word-spacing:8.000061pt;}
.wsbc{word-spacing:8.000065pt;}
.ws41{word-spacing:8.000067pt;}
.ws58{word-spacing:8.000081pt;}
.ws42{word-spacing:8.000086pt;}
.wsde{word-spacing:8.000087pt;}
.wscf{word-spacing:8.000089pt;}
.wsd0{word-spacing:8.000104pt;}
.ws44{word-spacing:8.000105pt;}
.ws45{word-spacing:8.000110pt;}
.ws3f{word-spacing:8.000113pt;}
.ws78{word-spacing:8.000114pt;}
.ws85{word-spacing:8.000119pt;}
.ws37{word-spacing:8.000121pt;}
.ws2f{word-spacing:8.000123pt;}
.ws19{word-spacing:8.000125pt;}
.ws59{word-spacing:8.000131pt;}
.ws36{word-spacing:8.000134pt;}
.ws15{word-spacing:8.000135pt;}
.ws17{word-spacing:8.000138pt;}
.ws7f{word-spacing:8.000147pt;}
.wsb6{word-spacing:8.000176pt;}
.wse7{word-spacing:8.000179pt;}
.wsd7{word-spacing:10.387440pt;}
.wsf2{word-spacing:10.387501pt;}
.wsc8{word-spacing:10.387504pt;}
.wsa5{word-spacing:10.387616pt;}
.ws83{word-spacing:11.981169pt;}
.ws81{word-spacing:11.981189pt;}
.wse4{word-spacing:11.999939pt;}
.ws3e{word-spacing:11.999971pt;}
.ws86{word-spacing:11.999984pt;}
.wsaa{word-spacing:11.999988pt;}
.ws82{word-spacing:11.999994pt;}
.ws80{word-spacing:11.999998pt;}
.ws7{word-spacing:12.000000pt;}
.ws5b{word-spacing:12.000019pt;}
.wsf5{word-spacing:12.000030pt;}
.wsb9{word-spacing:12.000046pt;}
.wsdc{word-spacing:12.000050pt;}
.ws9a{word-spacing:12.000055pt;}
.ws4f{word-spacing:12.000059pt;}
.ws6a{word-spacing:12.000061pt;}
.wsd1{word-spacing:12.000065pt;}
.ws50{word-spacing:12.000067pt;}
.wsca{word-spacing:12.000084pt;}
.ws27{word-spacing:12.000085pt;}
.wscd{word-spacing:12.000096pt;}
.ws12{word-spacing:12.000108pt;}
.wsb5{word-spacing:12.000109pt;}
.ws9b{word-spacing:12.000114pt;}
.ws89{word-spacing:12.000116pt;}
.ws7a{word-spacing:12.000118pt;}
.ws62{word-spacing:12.000119pt;}
.ws29{word-spacing:12.000120pt;}
.ws4d{word-spacing:12.000121pt;}
.ws79{word-spacing:12.000123pt;}
.wse3{word-spacing:12.000125pt;}
.wsa7{word-spacing:12.000128pt;}
.ws32{word-spacing:12.000132pt;}
.ws47{word-spacing:12.000135pt;}
.wsad{word-spacing:12.000137pt;}
.wsc1{word-spacing:12.000147pt;}
.ws84{word-spacing:12.000166pt;}
.wse0{word-spacing:12.000179pt;}
.ws51{word-spacing:12.000186pt;}
.wsba{word-spacing:12.000190pt;}
.ws2a{word-spacing:12.000240pt;}
.wse5{word-spacing:14.387440pt;}
.ws2b{word-spacing:14.387500pt;}
.ws7d{word-spacing:14.387569pt;}
.ws7e{word-spacing:14.392948pt;}
.ws7b{word-spacing:14.393068pt;}
.ws1f{word-spacing:15.999947pt;}
.ws14{word-spacing:15.999971pt;}
.ws35{word-spacing:16.000012pt;}
.ws65{word-spacing:16.000034pt;}
.ws3b{word-spacing:16.000039pt;}
.wsda{word-spacing:16.000043pt;}
.wsf6{word-spacing:16.000049pt;}
.ws98{word-spacing:16.000057pt;}
.wsd9{word-spacing:16.000107pt;}
.ws1a{word-spacing:16.000112pt;}
.ws5a{word-spacing:16.000121pt;}
.ws20{word-spacing:16.000123pt;}
.wseb{word-spacing:16.000126pt;}
.ws6c{word-spacing:16.000128pt;}
.ws1e{word-spacing:16.000137pt;}
.ws56{word-spacing:16.000144pt;}
.ws2{word-spacing:16.000384pt;}
.ws96{word-spacing:18.387425pt;}
.ws28{word-spacing:18.387452pt;}
.ws92{word-spacing:18.387484pt;}
.ws53{word-spacing:19.999907pt;}
.ws88{word-spacing:19.999939pt;}
.ws4{word-spacing:20.000000pt;}
.ws70{word-spacing:20.000056pt;}
.ws64{word-spacing:20.000065pt;}
.ws46{word-spacing:20.000093pt;}
.ws55{word-spacing:20.000116pt;}
.ws4c{word-spacing:20.000119pt;}
.wsb8{word-spacing:20.000120pt;}
.ws8a{word-spacing:20.000123pt;}
.ws54{word-spacing:20.000126pt;}
.wsd3{word-spacing:20.000130pt;}
.wsdf{word-spacing:20.000137pt;}
.ws9e{word-spacing:20.000187pt;}
.ws21{word-spacing:23.999939pt;}
.ws6d{word-spacing:23.999946pt;}
.wsa9{word-spacing:23.999996pt;}
.ws22{word-spacing:24.000038pt;}
.ws2d{word-spacing:24.000049pt;}
.wsb4{word-spacing:24.000112pt;}
.ws31{word-spacing:24.000115pt;}
.ws8{word-spacing:24.000119pt;}
.ws6e{word-spacing:24.000124pt;}
.wsc9{word-spacing:24.000131pt;}
.wsd4{word-spacing:28.000012pt;}
.wsa0{word-spacing:28.000045pt;}
.ws5f{word-spacing:28.000067pt;}
.ws90{word-spacing:28.000114pt;}
.wsf8{word-spacing:28.000118pt;}
.ws76{word-spacing:28.000121pt;}
.ws16{word-spacing:28.000123pt;}
.ws68{word-spacing:32.000000pt;}
.ws8e{word-spacing:32.000093pt;}
.ws9f{word-spacing:32.000118pt;}
.wsd8{word-spacing:32.000123pt;}
.wscc{word-spacing:32.000136pt;}
.ws8f{word-spacing:32.000240pt;}
.ws24{word-spacing:36.000056pt;}
.ws67{word-spacing:36.000119pt;}
.ws23{word-spacing:36.000126pt;}
.wsf0{word-spacing:44.000080pt;}
.ws71{word-spacing:44.000099pt;}
.wsef{word-spacing:44.000123pt;}
.ws49{word-spacing:76.000040pt;}
.ws48{word-spacing:80.000138pt;}
._21{margin-left:-9.084635pt;}
._12{margin-left:-8.100762pt;}
._1a{margin-left:-6.933240pt;}
._9{margin-left:-5.875232pt;}
._3{margin-left:-4.580000pt;}
._d{margin-left:-3.625754pt;}
._0{margin-left:-2.496000pt;}
._1{margin-left:-1.100000pt;}
._2{width:1.088000pt;}
._4{width:2.368000pt;}
._b{width:16.001536pt;}
._17{width:17.475320pt;}
._22{width:18.370192pt;}
._5{width:19.336384pt;}
._a{width:20.664384pt;}
._1c{width:21.606512pt;}
._20{width:23.041884pt;}
._7{width:24.000384pt;}
._1e{width:25.669690pt;}
._1d{width:26.980262pt;}
._c{width:28.000384pt;}
._1f{width:30.444669pt;}
._e{width:32.000376pt;}
._6{width:36.000000pt;}
._8{width:40.000384pt;}
._f{width:43.692584pt;}
._14{width:44.819784pt;}
._13{width:48.000424pt;}
._16{width:52.000620pt;}
._1b{width:53.376000pt;}
._10{width:56.000192pt;}
._15{width:64.000560pt;}
._11{width:95.976020pt;}
._18{width:291.950755pt;}
._19{width:332.001152pt;}
.fs2{font-size:38.400000pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:66.666664pt;}
.fs6{font-size:74.666664pt;}
.fs0{font-size:117.332000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:10.460935pt;}
.ycf{bottom:12.069917pt;}
.ybd{bottom:12.069918pt;}
.y90{bottom:12.071213pt;}
.yb2{bottom:12.071214pt;}
.ya9{bottom:12.071218pt;}
.y87{bottom:12.071220pt;}
.y92{bottom:12.072518pt;}
.y95{bottom:12.072520pt;}
.y82{bottom:12.072521pt;}
.ye0{bottom:12.073820pt;}
.ya0{bottom:28.072517pt;}
.yc4{bottom:28.072518pt;}
.ycd{bottom:28.072520pt;}
.yd2{bottom:31.270437pt;}
.y85{bottom:31.270438pt;}
.y8f{bottom:31.271733pt;}
.ya8{bottom:31.271738pt;}
.yac{bottom:31.271740pt;}
.yb1{bottom:31.272132pt;}
.ya2{bottom:31.273038pt;}
.y94{bottom:31.273040pt;}
.y8a{bottom:31.273041pt;}
.ycc{bottom:47.270437pt;}
.yc3{bottom:47.270438pt;}
.y9f{bottom:47.271744pt;}
.yb0{bottom:50.436199pt;}
.yd1{bottom:50.470957pt;}
.y84{bottom:50.470958pt;}
.y8e{bottom:50.470960pt;}
.ya7{bottom:50.472258pt;}
.yab{bottom:50.472260pt;}
.ydb{bottom:50.473560pt;}
.y9b{bottom:50.473561pt;}
.yd6{bottom:50.473562pt;}
.ycb{bottom:66.470957pt;}
.yc2{bottom:66.470958pt;}
.y9e{bottom:66.472264pt;}
.y89{bottom:69.671478pt;}
.y8d{bottom:69.671480pt;}
.yc9{bottom:69.671481pt;}
.ya6{bottom:69.672778pt;}
.ydf{bottom:69.672780pt;}
.yda{bottom:69.674080pt;}
.y9a{bottom:69.674081pt;}
.yd5{bottom:69.674082pt;}
.yaf{bottom:71.068614pt;}
.y9d{bottom:83.879343pt;}
.yc1{bottom:85.671477pt;}
.y8c{bottom:87.078560pt;}
.yba{bottom:88.871998pt;}
.ybf{bottom:88.872000pt;}
.y99{bottom:88.872001pt;}
.ya5{bottom:88.873298pt;}
.yde{bottom:88.873300pt;}
.y4f{bottom:103.738866pt;}
.y14f{bottom:104.270440pt;}
.yef{bottom:104.739186pt;}
.y12{bottom:106.427200pt;}
.ya4{bottom:108.071218pt;}
.yb9{bottom:108.072518pt;}
.yd4{bottom:108.072520pt;}
.y98{bottom:108.072521pt;}
.ydd{bottom:108.073820pt;}
.y174{bottom:110.137626pt;}
.y80{bottom:111.666266pt;}
.yff{bottom:113.133720pt;}
.y6b{bottom:113.338146pt;}
.y2d{bottom:113.338800pt;}
.y10a{bottom:113.339453pt;}
.yc8{bottom:119.466145pt;}
.y43{bottom:119.738533pt;}
.y5d{bottom:119.739186pt;}
.y14e{bottom:123.470960pt;}
.yc0{bottom:125.867188pt;}
.y129{bottom:127.127610pt;}
.yb8{bottom:127.273038pt;}
.y97{bottom:127.273041pt;}
.y173{bottom:129.340746pt;}
.y4e{bottom:142.138933pt;}
.y14d{bottom:142.671480pt;}
.yee{bottom:143.137626pt;}
.yb7{bottom:146.470958pt;}
.y172{bottom:148.538666pt;}
.y7f{bottom:150.067306pt;}
.yfe{bottom:151.533453pt;}
.y109{bottom:151.737880pt;}
.y2c{bottom:151.738533pt;}
.y6a{bottom:151.739186pt;}
.yc7{bottom:157.867188pt;}
.y42{bottom:158.138933pt;}
.y11{bottom:158.160200pt;}
.yc5{bottom:158.703125pt;}
.y14c{bottom:161.872000pt;}
.yb6{bottom:165.671478pt;}
.y171{bottom:167.736586pt;}
.y128{bottom:170.619400pt;}
.y120{bottom:178.122000pt;}
.y4d{bottom:180.538666pt;}
.y14b{bottom:181.072520pt;}
.yed{bottom:181.538666pt;}
.y170{bottom:186.939706pt;}
.y108{bottom:190.137626pt;}
.y79{bottom:190.138280pt;}
.y2b{bottom:190.138760pt;}
.y69{bottom:190.138933pt;}
.y41{bottom:196.538666pt;}
.y10{bottom:196.560200pt;}
.y14a{bottom:200.270440pt;}
.yfd{bottom:203.266533pt;}
.y16f{bottom:206.137626pt;}
.y72{bottom:212.538666pt;}
.y11f{bottom:216.523040pt;}
.y4c{bottom:218.938400pt;}
.y149{bottom:219.470960pt;}
.yec{bottom:219.939706pt;}
.y127{bottom:220.406250pt;}
.y16e{bottom:225.340746pt;}
.y2a{bottom:228.538666pt;}
.y40{bottom:234.938400pt;}
.y148{bottom:238.671480pt;}
.yfc{bottom:241.666266pt;}
.y16d{bottom:244.538666pt;}
.ybe{bottom:249.666667pt;}
.y71{bottom:250.938400pt;}
.y11e{bottom:254.924080pt;}
.y4b{bottom:257.338466pt;}
.y147{bottom:257.872000pt;}
.yeb{bottom:258.338146pt;}
.y7e{bottom:258.866786pt;}
.y16c{bottom:263.736586pt;}
.y68{bottom:266.938400pt;}
.y29{bottom:266.938733pt;}
.y78{bottom:266.939053pt;}
.y107{bottom:266.939706pt;}
.ybb{bottom:268.867188pt;}
.y126{bottom:271.287757pt;}
.y175{bottom:271.882416pt;}
.y5c{bottom:273.338466pt;}
.y3f{bottom:273.338800pt;}
.yf{bottom:273.360200pt;}
.y146{bottom:277.072520pt;}
.yfb{bottom:280.067306pt;}
.y16b{bottom:282.939706pt;}
.ybc{bottom:288.067708pt;}
.y70{bottom:289.338146pt;}
.y11d{bottom:293.322520pt;}
.y145{bottom:296.270440pt;}
.yea{bottom:296.739186pt;}
.y7d{bottom:297.266533pt;}
.y16a{bottom:302.137626pt;}
.y67{bottom:305.338146pt;}
.y28{bottom:305.338800pt;}
.y106{bottom:305.339453pt;}
.y3e{bottom:311.738533pt;}
.y4a{bottom:311.738866pt;}
.ye{bottom:311.760200pt;}
.y144{bottom:315.470960pt;}
.yfa{bottom:318.465746pt;}
.y169{bottom:321.340746pt;}
.y125{bottom:322.169277pt;}
.y6f{bottom:327.739186pt;}
.y143{bottom:334.671480pt;}
.ye9{bottom:335.137626pt;}
.y11c{bottom:335.767334pt;}
.y168{bottom:340.538666pt;}
.y105{bottom:343.737878pt;}
.y115{bottom:343.737880pt;}
.y27{bottom:343.738533pt;}
.y66{bottom:343.739186pt;}
.y3d{bottom:350.138933pt;}
.yd{bottom:350.160200pt;}
.y142{bottom:353.872000pt;}
.yf9{bottom:356.866786pt;}
.y167{bottom:359.736586pt;}
.yb5{bottom:360.666668pt;}
.y5b{bottom:366.138933pt;}
.y124{bottom:373.046877pt;}
.y141{bottom:373.072520pt;}
.ye8{bottom:373.538666pt;}
.y11b{bottom:376.523040pt;}
.y166{bottom:378.939706pt;}
.y114{bottom:382.137626pt;}
.y77{bottom:382.138280pt;}
.y26{bottom:382.138600pt;}
.y65{bottom:382.138933pt;}
.y3c{bottom:388.538666pt;}
.yc{bottom:388.560200pt;}
.y140{bottom:392.270440pt;}
.yf8{bottom:395.266533pt;}
.y104{bottom:398.137626pt;}
.y5a{bottom:404.538666pt;}
.y13f{bottom:411.470960pt;}
.ye7{bottom:411.939706pt;}
.y11a{bottom:414.924080pt;}
.y123{bottom:416.538666pt;}
.y165{bottom:417.340746pt;}
.y25{bottom:420.538666pt;}
.y3b{bottom:426.938400pt;}
.yb{bottom:426.960200pt;}
.y13e{bottom:430.671480pt;}
.y103{bottom:436.538666pt;}
.y59{bottom:442.938400pt;}
.y13d{bottom:449.872000pt;}
.ye6{bottom:450.338146pt;}
.y119{bottom:453.322520pt;}
.yae{bottom:455.269532pt;}
.y164{bottom:455.736586pt;}
.y64{bottom:458.938400pt;}
.y24{bottom:458.938733pt;}
.y76{bottom:458.939053pt;}
.y113{bottom:458.939706pt;}
.ya{bottom:465.360200pt;}
.y13c{bottom:469.072520pt;}
.y122{bottom:469.275707pt;}
.y102{bottom:474.939706pt;}
.yb4{bottom:475.867188pt;}
.y6e{bottom:481.338146pt;}
.y58{bottom:481.338466pt;}
.y3a{bottom:481.338800pt;}
.y13b{bottom:488.270440pt;}
.ye5{bottom:488.739186pt;}
.y118{bottom:491.722266pt;}
.y163{bottom:494.137626pt;}
.yb3{bottom:495.066407pt;}
.y63{bottom:497.338146pt;}
.y23{bottom:497.338800pt;}
.y112{bottom:497.339453pt;}
.y9{bottom:503.760200pt;}
.y121{bottom:505.339453pt;}
.y13a{bottom:507.470960pt;}
.y101{bottom:513.339453pt;}
.y162{bottom:513.340746pt;}
.y39{bottom:519.738533pt;}
.y139{bottom:526.671480pt;}
.ye4{bottom:527.137626pt;}
.y117{bottom:530.122400pt;}
.y161{bottom:532.538666pt;}
.y111{bottom:535.737880pt;}
.y57{bottom:535.738866pt;}
.y62{bottom:535.739186pt;}
.y8{bottom:542.160200pt;}
.y138{bottom:545.872000pt;}
.yaa{bottom:548.467447pt;}
.y160{bottom:551.736586pt;}
.y100{bottom:551.737880pt;}
.y22{bottom:551.738533pt;}
.yf7{bottom:551.739186pt;}
.y38{bottom:558.138933pt;}
.y137{bottom:565.072520pt;}
.ye3{bottom:565.538666pt;}
.yad{bottom:567.666665pt;}
.y15f{bottom:570.939706pt;}
.y110{bottom:574.137626pt;}
.y75{bottom:574.138280pt;}
.y56{bottom:574.138933pt;}
.y116{bottom:580.395827pt;}
.y7{bottom:580.560200pt;}
.y136{bottom:584.270440pt;}
.yf6{bottom:590.137626pt;}
.y21{bottom:590.138600pt;}
.y37{bottom:596.538666pt;}
.y135{bottom:603.470960pt;}
.ye2{bottom:603.939706pt;}
.y15e{bottom:609.340746pt;}
.y55{bottom:612.538666pt;}
.ya3{bottom:621.066408pt;}
.y134{bottom:622.671480pt;}
.y20{bottom:628.538666pt;}
.y9c{bottom:631.738283pt;}
.y36{bottom:634.938400pt;}
.y133{bottom:641.872000pt;}
.ye1{bottom:642.338146pt;}
.y6{bottom:642.960200pt;}
.y15d{bottom:647.736586pt;}
.y54{bottom:650.938400pt;}
.y74{bottom:650.939053pt;}
.y10f{bottom:650.939706pt;}
.y132{bottom:661.072519pt;}
.y1f{bottom:666.938733pt;}
.yf5{bottom:666.939706pt;}
.y35{bottom:673.338800pt;}
.ya1{bottom:678.666668pt;}
.y15c{bottom:686.137626pt;}
.y61{bottom:689.338146pt;}
.y53{bottom:689.338466pt;}
.y49{bottom:689.338800pt;}
.yf4{bottom:705.338146pt;}
.y1e{bottom:705.338800pt;}
.y10e{bottom:705.339453pt;}
.y15b{bottom:705.340746pt;}
.y5{bottom:711.696200pt;}
.y34{bottom:711.738533pt;}
.y131{bottom:715.470960pt;}
.y15a{bottom:724.538666pt;}
.y48{bottom:727.738533pt;}
.y52{bottom:727.738866pt;}
.y60{bottom:727.739186pt;}
.ydc{bottom:727.865887pt;}
.y159{bottom:743.736586pt;}
.y10d{bottom:743.737880pt;}
.y1d{bottom:743.738533pt;}
.yf3{bottom:743.739186pt;}
.y130{bottom:748.004813pt;}
.y33{bottom:750.138760pt;}
.y96{bottom:751.265625pt;}
.yd7{bottom:757.738283pt;}
.y158{bottom:762.939706pt;}
.y8b{bottom:764.083333pt;}
.y4{bottom:766.096200pt;}
.y73{bottom:766.138280pt;}
.y47{bottom:766.138933pt;}
.yd9{bottom:766.265627pt;}
.y12f{bottom:767.205333pt;}
.yf2{bottom:782.137626pt;}
.y1c{bottom:782.138600pt;}
.y32{bottom:788.538665pt;}
.y93{bottom:789.666667pt;}
.y12e{bottom:799.737880pt;}
.y157{bottom:801.340746pt;}
.y46{bottom:804.538666pt;}
.yd8{bottom:804.666668pt;}
.y3{bottom:808.096200pt;}
.y91{bottom:808.867188pt;}
.y1b{bottom:820.538666pt;}
.y156{bottom:839.736586pt;}
.y6d{bottom:842.938400pt;}
.y31{bottom:842.938573pt;}
.y7c{bottom:842.939053pt;}
.y12d{bottom:851.472266pt;}
.y45{bottom:858.938400pt;}
.y1a{bottom:858.938733pt;}
.yf1{bottom:858.939706pt;}
.yd3{bottom:877.265625pt;}
.y155{bottom:878.137626pt;}
.y6c{bottom:881.338146pt;}
.y2{bottom:883.820200pt;}
.y12c{bottom:889.872000pt;}
.y5f{bottom:897.338145pt;}
.y51{bottom:897.338472pt;}
.y19{bottom:897.338716pt;}
.y30{bottom:897.338797pt;}
.y10c{bottom:897.339448pt;}
.y154{bottom:897.340749pt;}
.y88{bottom:900.666667pt;}
.yca{bottom:902.867188pt;}
.y153{bottom:916.538666pt;}
.y7b{bottom:919.739188pt;}
.y83{bottom:919.867187pt;}
.y12b{bottom:928.271740pt;}
.yd0{bottom:934.867188pt;}
.y152{bottom:935.736582pt;}
.y10b{bottom:935.737885pt;}
.y2f{bottom:935.738536pt;}
.y18{bottom:935.738617pt;}
.y50{bottom:935.738861pt;}
.y5e{bottom:935.739188pt;}
.y86{bottom:939.066405pt;}
.y1{bottom:951.281200pt;}
.yce{bottom:954.067708pt;}
.y151{bottom:954.939708pt;}
.yf0{bottom:974.137625pt;}
.y7a{bottom:974.138276pt;}
.y17{bottom:974.138601pt;}
.y2e{bottom:974.138764pt;}
.y44{bottom:974.138926pt;}
.y12a{bottom:980.004812pt;}
.y81{bottom:992.466145pt;}
.y150{bottom:993.340749pt;}
.y16{bottom:1012.538666pt;}
.y15{bottom:1079.109333pt;}
.y14{bottom:1095.109333pt;}
.y13{bottom:1111.109333pt;}
.h7{height:33.200521pt;}
.h3{height:34.521600pt;}
.h1d{height:34.521601pt;}
.h5{height:37.057292pt;}
.hc{height:43.904000pt;}
.h1c{height:44.224000pt;}
.h18{height:44.437500pt;}
.h1e{height:45.062500pt;}
.h2{height:46.046400pt;}
.h14{height:46.289061pt;}
.h9{height:52.399740pt;}
.h12{height:52.401041pt;}
.h4{height:57.536000pt;}
.h6{height:59.865603pt;}
.h1b{height:67.125331pt;}
.h8{height:71.598959pt;}
.h11{height:71.600260pt;}
.h1{height:81.467824pt;}
.h17{height:89.963541pt;}
.ha{height:90.799479pt;}
.h13{height:92.196615pt;}
.hd{height:110.000000pt;}
.hf{height:118.527344pt;}
.h16{height:122.799479pt;}
.h10{height:129.199219pt;}
.h19{height:129.200521pt;}
.hb{height:135.583333pt;}
.h1a{height:148.399740pt;}
.he{height:148.401041pt;}
.h15{height:186.799479pt;}
.h0{height:1122.666667pt;}
.w3{width:88.000000pt;}
.w5{width:135.000000pt;}
.w2{width:141.000000pt;}
.w6{width:148.000000pt;}
.w4{width:158.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x19{left:7.343864pt;}
.x20{left:8.283859pt;}
.x1c{left:9.459847pt;}
.xa{left:10.835930pt;}
.x14{left:12.063873pt;}
.x10{left:13.555862pt;}
.x26{left:14.619858pt;}
.x1b{left:15.571854pt;}
.x2c{left:17.099876pt;}
.x18{left:18.063889pt;}
.x13{left:19.843880pt;}
.x21{left:20.993385pt;}
.x23{left:22.171967pt;}
.x1f{left:23.291870pt;}
.x16{left:24.775917pt;}
.x8{left:26.839897pt;}
.x29{left:27.915886pt;}
.x25{left:28.847908pt;}
.x1e{left:30.499901pt;}
.x1a{left:31.663933pt;}
.x11{left:33.431915pt;}
.x27{left:34.487923pt;}
.xe{left:35.455933pt;}
.x17{left:37.751930pt;}
.x15{left:40.559937pt;}
.x28{left:42.895943pt;}
.x24{left:43.887947pt;}
.xc{left:46.051926pt;}
.x22{left:47.807961pt;}
.x2b{left:51.283951pt;}
.x12{left:53.999969pt;}
.x2a{left:56.275963pt;}
.x1d{left:60.171967pt;}
.x7{left:75.000000pt;}
.x6{left:96.000467pt;}
.x1{left:99.967467pt;}
.x2d{left:109.000000pt;}
.x3{left:128.118467pt;}
.x5{left:144.251467pt;}
.x4{left:202.699467pt;}
.x9{left:217.000000pt;}
.xb{left:306.000000pt;}
.x2{left:334.936467pt;}
.xd{left:465.000000pt;}
.xf{left:601.000000pt;}
}




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