
    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_c028e724e99b663cbd034b71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c37d93422a2ecc5153200eeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.503000;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_ff0b9b74fa044f132b81f4e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_e1698aafdfe5066c91abf46a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.694000;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_8d3ca4a35f5225e3020cc95f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_b146298fe84b0fb4806a36aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_8909c4e594e338bb72e0eab5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_9f6992cc7de198d85d9840aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_05a6a31737188fa9f73f0acf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_933279fa8c7271267fc72003.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b599ca1d1b1b1103fda85d94.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_40f3f97a19fe4cb3e0d5f29e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5467536c005bf09583588b13.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.442000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4ace9d63bc1bd798f6a0fdf4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c71137016a403d459126262d.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_99323ea1f55096fe92fb727b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.v1{vertical-align:31.236000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000557px;}
.ls2{letter-spacing:0.001002px;}
.lse{letter-spacing:0.002338px;}
.lsa{letter-spacing:0.004200px;}
.lsd{letter-spacing:0.004466px;}
.ls1{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.990525px;}
.ls8{letter-spacing:19.969084px;}
.ls3{letter-spacing:21.419468px;}
.ls9{letter-spacing:21.420532px;}
.ls7{letter-spacing:21.872525px;}
.ls5{letter-spacing:22.934525px;}
.lsb{letter-spacing:25.208525px;}
.ls6{letter-spacing:32.552525px;}
.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;}
}
.ws8b{word-spacing:-16.605662px;}
.ws9d{word-spacing:-15.359443px;}
.wsa3{word-spacing:-3.335478px;}
.ws55{word-spacing:-2.917049px;}
.wsbd{word-spacing:-2.737722px;}
.ws18{word-spacing:-2.498620px;}
.wsab{word-spacing:-2.379069px;}
.ws68{word-spacing:-2.259518px;}
.ws89{word-spacing:-2.199742px;}
.ws52{word-spacing:-2.020415px;}
.ws5c{word-spacing:-1.900864px;}
.ws59{word-spacing:-1.661762px;}
.ws36{word-spacing:-1.542210px;}
.ws2e{word-spacing:-1.362884px;}
.ws17{word-spacing:-1.303108px;}
.ws43{word-spacing:-1.183557px;}
.ws4b{word-spacing:-1.123781px;}
.ws14{word-spacing:-1.102867px;}
.ws29{word-spacing:-1.064006px;}
.ws2f{word-spacing:-0.944454px;}
.ws22{word-spacing:-0.941472px;}
.ws1d{word-spacing:-0.884679px;}
.wsdc{word-spacing:-0.672480px;}
.ws30{word-spacing:-0.585801px;}
.ws71{word-spacing:-0.526025px;}
.ws5d{word-spacing:-0.346698px;}
.wse6{word-spacing:-0.295891px;}
.wsf{word-spacing:-0.242093px;}
.ws5a{word-spacing:-0.227147px;}
.ws28{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws54{word-spacing:-0.047820px;}
.ws23{word-spacing:0.000000px;}
.wsdb{word-spacing:0.026899px;}
.wsd5{word-spacing:0.080698px;}
.ws25{word-spacing:0.251058px;}
.ws3f{word-spacing:0.310833px;}
.ws9f{word-spacing:0.370609px;}
.wscb{word-spacing:0.403488px;}
.ws84{word-spacing:0.430384px;}
.ws77{word-spacing:0.490160px;}
.ws9{word-spacing:0.511085px;}
.wsa8{word-spacing:0.549936px;}
.wsa{word-spacing:0.618682px;}
.ws61{word-spacing:0.669487px;}
.ws3d{word-spacing:0.729262px;}
.wsd8{word-spacing:0.833875px;}
.ws8d{word-spacing:0.848814px;}
.ws67{word-spacing:0.908589px;}
.wsbc{word-spacing:0.941472px;}
.ws8{word-spacing:0.995270px;}
.ws4f{word-spacing:1.028140px;}
.wseb{word-spacing:1.049069px;}
.ws1a{word-spacing:1.087916px;}
.ws2a{word-spacing:1.147692px;}
.ws19{word-spacing:1.207467px;}
.ws33{word-spacing:1.267243px;}
.ws26{word-spacing:1.327018px;}
.wsc7{word-spacing:1.386794px;}
.ws9b{word-spacing:1.446570px;}
.wsd6{word-spacing:1.479456px;}
.wse9{word-spacing:1.533254px;}
.wsc2{word-spacing:1.566121px;}
.wsa9{word-spacing:1.625896px;}
.ws74{word-spacing:1.685672px;}
.wsd3{word-spacing:1.694650px;}
.wsa2{word-spacing:1.805223px;}
.wsda{word-spacing:1.909843px;}
.ws7a{word-spacing:1.984550px;}
.ws16{word-spacing:2.044326px;}
.wsbb{word-spacing:2.071238px;}
.ws6d{word-spacing:2.163877px;}
.ws65{word-spacing:2.223652px;}
.ws8e{word-spacing:2.283428px;}
.ws2d{word-spacing:2.343204px;}
.ws3a{word-spacing:2.402979px;}
.wse2{word-spacing:2.447827px;}
.wsc1{word-spacing:2.462755px;}
.wse{word-spacing:2.501626px;}
.ws1b{word-spacing:2.522530px;}
.ws2c{word-spacing:2.582306px;}
.ws88{word-spacing:2.642082px;}
.ws70{word-spacing:2.701857px;}
.wsaa{word-spacing:2.761633px;}
.wsce{word-spacing:2.878214px;}
.ws4c{word-spacing:3.000735px;}
.ws12{word-spacing:3.039610px;}
.ws75{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.ws3e{word-spacing:3.120286px;}
.wsd1{word-spacing:3.147206px;}
.wsb9{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws32{word-spacing:3.359389px;}
.wse1{word-spacing:3.362400px;}
.ws5{word-spacing:3.469997px;}
.wsb2{word-spacing:3.478940px;}
.ws8a{word-spacing:3.538716px;}
.ws38{word-spacing:3.598491px;}
.ws31{word-spacing:3.658267px;}
.wse3{word-spacing:3.685190px;}
.ws69{word-spacing:3.718042px;}
.ws1f{word-spacing:3.738989px;}
.ws78{word-spacing:3.777818px;}
.ws7c{word-spacing:3.837594px;}
.ws21{word-spacing:3.846586px;}
.ws42{word-spacing:3.897369px;}
.wse8{word-spacing:3.954182px;}
.wsa7{word-spacing:3.957145px;}
.ws51{word-spacing:4.016920px;}
.ws40{word-spacing:4.076696px;}
.ws76{word-spacing:4.196247px;}
.ws2b{word-spacing:4.256023px;}
.ws73{word-spacing:4.315798px;}
.ws3b{word-spacing:4.375574px;}
.ws4a{word-spacing:4.483200px;}
.ws39{word-spacing:4.554901px;}
.ws9e{word-spacing:4.569661px;}
.wsbf{word-spacing:4.614676px;}
.ws53{word-spacing:4.734228px;}
.wsae{word-spacing:4.794003px;}
.ws49{word-spacing:4.853779px;}
.wsd{word-spacing:4.868755px;}
.ws37{word-spacing:4.913554px;}
.ws24{word-spacing:4.973330px;}
.ws6c{word-spacing:5.033106px;}
.ws5e{word-spacing:5.092881px;}
.wsb5{word-spacing:5.152657px;}
.wsca{word-spacing:5.272208px;}
.ws90{word-spacing:5.331984px;}
.wsa6{word-spacing:5.363793px;}
.ws0{word-spacing:5.379825px;}
.ws34{word-spacing:5.391759px;}
.wse0{word-spacing:5.406739px;}
.ws7d{word-spacing:5.511310px;}
.ws66{word-spacing:5.571086px;}
.wsad{word-spacing:5.630862px;}
.ws10{word-spacing:5.729530px;}
.ws1e{word-spacing:5.750413px;}
.wsb1{word-spacing:5.869964px;}
.ws1c{word-spacing:5.929740px;}
.wsaf{word-spacing:5.989515px;}
.ws4e{word-spacing:6.049291px;}
.ws98{word-spacing:6.109066px;}
.ws7{word-spacing:6.159917px;}
.ws35{word-spacing:6.168842px;}
.wsd4{word-spacing:6.213715px;}
.wsb7{word-spacing:6.228618px;}
.ws80{word-spacing:6.288393px;}
.wsb6{word-spacing:6.348169px;}
.ws79{word-spacing:6.407944px;}
.ws91{word-spacing:6.467720px;}
.wse4{word-spacing:6.482707px;}
.ws85{word-spacing:6.587271px;}
.ws9c{word-spacing:6.647047px;}
.wsc5{word-spacing:6.826374px;}
.wsc8{word-spacing:6.886149px;}
.wsd0{word-spacing:6.913094px;}
.ws83{word-spacing:6.945925px;}
.ws11{word-spacing:6.966893px;}
.ws7f{word-spacing:7.065476px;}
.ws4d{word-spacing:7.125252px;}
.ws6{word-spacing:7.128288px;}
.wsdf{word-spacing:7.182086px;}
.ws58{word-spacing:7.185027px;}
.ws45{word-spacing:7.244803px;}
.wsba{word-spacing:7.451078px;}
.ws7b{word-spacing:7.483905px;}
.wscc{word-spacing:7.504877px;}
.ws7e{word-spacing:7.543681px;}
.wsb{word-spacing:7.666272px;}
.ws5b{word-spacing:7.782783px;}
.wsc3{word-spacing:8.021886px;}
.wsfd{word-spacing:8.081661px;}
.wsc{word-spacing:8.258054px;}
.ws86{word-spacing:8.260988px;}
.wsec{word-spacing:8.311853px;}
.ws41{word-spacing:8.320764px;}
.wsea{word-spacing:8.365651px;}
.wsb0{word-spacing:8.440315px;}
.wse7{word-spacing:8.473248px;}
.wsde{word-spacing:8.527046px;}
.ws57{word-spacing:8.559866px;}
.wsa0{word-spacing:8.619642px;}
.wsb4{word-spacing:8.679417px;}
.ws3c{word-spacing:8.798968px;}
.ws44{word-spacing:8.858744px;}
.wsc0{word-spacing:8.918520px;}
.wsdd{word-spacing:9.011232px;}
.wsa1{word-spacing:9.097846px;}
.wsac{word-spacing:9.217398px;}
.ws56{word-spacing:9.277173px;}
.ws97{word-spacing:9.396724px;}
.ws20{word-spacing:9.495418px;}
.ws8f{word-spacing:9.635827px;}
.ws96{word-spacing:9.815154px;}
.wsc6{word-spacing:9.874929px;}
.ws46{word-spacing:9.994480px;}
.wsd7{word-spacing:10.087200px;}
.ws47{word-spacing:10.114032px;}
.ws64{word-spacing:10.233583px;}
.ws6b{word-spacing:10.293358px;}
.wsc9{word-spacing:10.472685px;}
.ws60{word-spacing:10.532461px;}
.ws87{word-spacing:10.544486px;}
.ws9a{word-spacing:10.592236px;}
.ws82{word-spacing:10.711788px;}
.wscd{word-spacing:10.732781px;}
.ws63{word-spacing:10.771563px;}
.wse5{word-spacing:10.786579px;}
.ws48{word-spacing:10.891114px;}
.ws72{word-spacing:11.249768px;}
.wsc4{word-spacing:11.369319px;}
.ws6a{word-spacing:11.548646px;}
.wsbe{word-spacing:11.608422px;}
.ws5f{word-spacing:11.668197px;}
.wsb8{word-spacing:12.146402px;}
.wscf{word-spacing:12.346733px;}
.ws50{word-spacing:12.385504px;}
.wsd2{word-spacing:12.400531px;}
.ws6f{word-spacing:12.624607px;}
.ws62{word-spacing:12.684382px;}
.ws8c{word-spacing:12.983260px;}
.ws99{word-spacing:13.102812px;}
.wsa4{word-spacing:13.282138px;}
.ws81{word-spacing:13.760343px;}
.wsa5{word-spacing:15.194958px;}
.ws27{word-spacing:19.486846px;}
.ws6e{word-spacing:22.834279px;}
.wsd9{word-spacing:25.742534px;}
.wsfc{word-spacing:25.796333px;}
.ws13{word-spacing:27.592038px;}
.ws4{word-spacing:29.829450px;}
.wsf4{word-spacing:33.349175px;}
.wsf5{word-spacing:33.355175px;}
.wsf3{word-spacing:33.902561px;}
.wsf9{word-spacing:33.908561px;}
.ws15{word-spacing:58.281600px;}
.wsb3{word-spacing:68.682164px;}
.wsfb{word-spacing:71.094586px;}
.ws95{word-spacing:118.221984px;}
.wsed{word-spacing:121.234694px;}
.wsfa{word-spacing:124.086010px;}
.wsf2{word-spacing:126.399341px;}
.wsf7{word-spacing:131.026003px;}
.wsf6{word-spacing:135.598867px;}
.wsf8{word-spacing:138.665376px;}
.ws94{word-spacing:163.520237px;}
.ws93{word-spacing:196.283462px;}
.wsf1{word-spacing:198.236673px;}
.ws92{word-spacing:198.865786px;}
.wsee{word-spacing:207.830890px;}
.wsef{word-spacing:208.436673px;}
.wsf0{word-spacing:223.745403px;}
._20{margin-left:-28.622954px;}
._f{margin-left:-6.742733px;}
._5{margin-left:-4.923997px;}
._c{margin-left:-3.801605px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.613941px;}
._2{width:1.013661px;}
._1{width:2.668393px;}
._8{width:3.881972px;}
._1e{width:14.922391px;}
._6{width:16.847397px;}
._a{width:17.911171px;}
._7{width:19.685455px;}
._4{width:20.959215px;}
._10{width:22.752995px;}
._b{width:23.809971px;}
._13{width:25.203794px;}
._14{width:26.937287px;}
._1f{width:29.268535px;}
._12{width:30.284720px;}
._15{width:31.803363px;}
._11{width:68.741940px;}
._e{width:80.697600px;}
._21{width:142.996147px;}
._9{width:170.648525px;}
._d{width:190.065216px;}
._22{width:194.559271px;}
._1a{width:214.225229px;}
._18{width:225.469094px;}
._1d{width:231.871104px;}
._16{width:234.238223px;}
._17{width:236.712960px;}
._1b{width:238.864885px;}
._19{width:243.383962px;}
._1c{width:246.450470px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.yc7{bottom:199.330500px;}
.y25{bottom:210.055500px;}
.y52{bottom:211.549500px;}
.yc6{bottom:215.769000px;}
.y24{bottom:226.492500px;}
.y12b{bottom:226.494000px;}
.y152{bottom:227.313000px;}
.y51{bottom:229.482000px;}
.yc5{bottom:232.207500px;}
.yaf{bottom:242.641500px;}
.y23{bottom:242.931000px;}
.y12a{bottom:244.032000px;}
.y151{bottom:245.245500px;}
.y50{bottom:247.414500px;}
.yc4{bottom:254.850000px;}
.yea{bottom:255.769500px;}
.y129{bottom:260.470500px;}
.y22{bottom:265.083000px;}
.y79{bottom:265.347000px;}
.y4f{bottom:272.262000px;}
.yc3{bottom:272.782500px;}
.ye9{bottom:273.702000px;}
.y128{bottom:276.909000px;}
.y78{bottom:283.279500px;}
.y21{bottom:286.824000px;}
.y103{bottom:286.872000px;}
.y4e{bottom:290.196000px;}
.yc2{bottom:290.715000px;}
.y150{bottom:291.040500px;}
.ye8{bottom:291.988500px;}
.y127{bottom:294.447000px;}
.y77{bottom:301.212000px;}
.y20{bottom:304.756500px;}
.y102{bottom:304.806000px;}
.y14f{bottom:307.479000px;}
.y4d{bottom:308.128500px;}
.yc1{bottom:308.647500px;}
.ye7{bottom:309.921000px;}
.y126{bottom:310.885500px;}
.yae{bottom:317.026500px;}
.y9c{bottom:319.146000px;}
.y1f{bottom:322.689000px;}
.y101{bottom:322.738500px;}
.y76{bottom:322.987500px;}
.y14e{bottom:323.917500px;}
.y4c{bottom:326.061000px;}
.yc0{bottom:326.580000px;}
.ye6{bottom:327.853500px;}
.y125{bottom:328.423500px;}
.y9b{bottom:337.078500px;}
.y14d{bottom:340.356000px;}
.y1e{bottom:340.621500px;}
.y75{bottom:340.920000px;}
.y4b{bottom:343.993500px;}
.y100{bottom:344.263500px;}
.ybf{bottom:344.512500px;}
.y124{bottom:344.862000px;}
.ye5{bottom:345.786000px;}
.y27{bottom:348.000000px;}
.y9a{bottom:355.011000px;}
.y14c{bottom:356.794500px;}
.y1d{bottom:358.554000px;}
.y74{bottom:358.852500px;}
.y123{bottom:361.300500px;}
.y4a{bottom:361.926000px;}
.yff{bottom:362.196000px;}
.ybe{bottom:362.446500px;}
.ye4{bottom:363.718500px;}
.y99{bottom:372.943500px;}
.y14b{bottom:373.233000px;}
.y1c{bottom:376.488000px;}
.y73{bottom:376.785000px;}
.y122{bottom:378.838500px;}
.y49{bottom:379.860000px;}
.yfe{bottom:380.128500px;}
.ybd{bottom:380.379000px;}
.ye3{bottom:381.652500px;}
.y14a{bottom:389.670000px;}
.y98{bottom:390.876000px;}
.y1b{bottom:394.420500px;}
.y72{bottom:394.719000px;}
.y121{bottom:395.277000px;}
.yfd{bottom:398.061000px;}
.ybc{bottom:398.311500px;}
.y48{bottom:404.707500px;}
.y97{bottom:408.810000px;}
.y1a{bottom:412.353000px;}
.y120{bottom:412.815000px;}
.ye2{bottom:413.307000px;}
.yfc{bottom:415.995000px;}
.ybb{bottom:416.244000px;}
.y71{bottom:416.493000px;}
.y47{bottom:422.640000px;}
.y149{bottom:423.145500px;}
.y96{bottom:426.742500px;}
.y11f{bottom:429.253500px;}
.y19{bottom:430.285500px;}
.yfb{bottom:433.927500px;}
.yba{bottom:434.176500px;}
.y70{bottom:434.425500px;}
.y46{bottom:440.572500px;}
.y95{bottom:444.675000px;}
.y11e{bottom:445.692000px;}
.y18{bottom:448.218000px;}
.yfa{bottom:451.860000px;}
.yb9{bottom:452.110500px;}
.y6f{bottom:452.358000px;}
.y45{bottom:458.506500px;}
.ye1{bottom:459.906000px;}
.y94{bottom:462.607500px;}
.y11d{bottom:463.230000px;}
.y17{bottom:466.150500px;}
.y6e{bottom:470.292000px;}
.y148{bottom:472.681500px;}
.ye0{bottom:477.838500px;}
.y11c{bottom:479.668500px;}
.y93{bottom:480.540000px;}
.y44{bottom:483.354000px;}
.y6d{bottom:488.224500px;}
.y147{bottom:490.615500px;}
.ydf{bottom:495.771000px;}
.y11b{bottom:496.107000px;}
.y92{bottom:498.472500px;}
.y16{bottom:501.199500px;}
.y43{bottom:501.286500px;}
.yb8{bottom:503.722500px;}
.yf9{bottom:505.687500px;}
.y6c{bottom:506.157000px;}
.y11a{bottom:512.545500px;}
.yde{bottom:513.705000px;}
.y91{bottom:516.406500px;}
.y42{bottom:519.220500px;}
.y6b{bottom:524.089500px;}
.y146{bottom:525.841500px;}
.y119{bottom:530.083500px;}
.ydd{bottom:531.990000px;}
.y90{bottom:534.339000px;}
.y41{bottom:537.153000px;}
.y6a{bottom:542.022000px;}
.y118{bottom:546.522000px;}
.yb7{bottom:549.517500px;}
.ydc{bottom:549.924000px;}
.y15{bottom:550.926000px;}
.y8f{bottom:552.271500px;}
.y40{bottom:555.085500px;}
.y69{bottom:559.956000px;}
.y117{bottom:564.060000px;}
.yb6{bottom:565.956000px;}
.y14{bottom:567.364500px;}
.ydb{bottom:567.856500px;}
.y8e{bottom:570.204000px;}
.yf8{bottom:571.470000px;}
.y3f{bottom:573.018000px;}
.y145{bottom:573.024000px;}
.y68{bottom:577.888500px;}
.y116{bottom:580.498500px;}
.yb5{bottom:582.393000px;}
.yda{bottom:585.789000px;}
.y8d{bottom:588.136500px;}
.yf7{bottom:589.402500px;}
.y144{bottom:589.462500px;}
.y3e{bottom:590.950500px;}
.y67{bottom:595.821000px;}
.y115{bottom:596.937000px;}
.yb4{bottom:598.831500px;}
.y13{bottom:600.036000px;}
.yd9{bottom:603.721500px;}
.y143{bottom:605.899500px;}
.y8c{bottom:606.069000px;}
.yf6{bottom:607.335000px;}
.y3d{bottom:608.883000px;}
.y66{bottom:613.753500px;}
.y114{bottom:614.475000px;}
.yb3{bottom:615.270000px;}
.y12{bottom:616.474500px;}
.yd8{bottom:621.654000px;}
.y142{bottom:622.179000px;}
.yf5{bottom:625.269000px;}
.y3c{bottom:626.817000px;}
.y113{bottom:630.913500px;}
.y65{bottom:631.686000px;}
.yb2{bottom:631.708500px;}
.y11{bottom:632.913000px;}
.y8b{bottom:634.531500px;}
.y141{bottom:638.617500px;}
.yd7{bottom:639.586500px;}
.yf4{bottom:643.201500px;}
.y3b{bottom:644.749500px;}
.y112{bottom:647.352000px;}
.yb1{bottom:648.147000px;}
.y10{bottom:649.351500px;}
.y64{bottom:653.461500px;}
.y140{bottom:655.056000px;}
.yd6{bottom:657.520500px;}
.yad{bottom:658.579500px;}
.yf3{bottom:661.134000px;}
.y3a{bottom:662.682000px;}
.yf{bottom:665.790000px;}
.y13f{bottom:671.334000px;}
.y63{bottom:671.394000px;}
.yd5{bottom:675.453000px;}
.yac{bottom:676.513500px;}
.y8a{bottom:677.938500px;}
.yf2{bottom:679.066500px;}
.y39{bottom:680.614500px;}
.yb0{bottom:681.621000px;}
.ye{bottom:682.228500px;}
.y111{bottom:687.223500px;}
.y13e{bottom:687.772500px;}
.y62{bottom:689.326500px;}
.yd4{bottom:693.739500px;}
.yab{bottom:694.446000px;}
.y89{bottom:695.871000px;}
.yf1{bottom:696.999000px;}
.y38{bottom:698.547000px;}
.yd{bottom:698.667000px;}
.y13d{bottom:704.211000px;}
.y61{bottom:707.259000px;}
.yd3{bottom:711.672000px;}
.yaa{bottom:712.378500px;}
.y88{bottom:713.803500px;}
.yf0{bottom:714.931500px;}
.yc{bottom:715.105500px;}
.y13c{bottom:720.489000px;}
.y37{bottom:723.396000px;}
.y60{bottom:725.191500px;}
.yd2{bottom:729.604500px;}
.ya9{bottom:730.311000px;}
.yb{bottom:731.542500px;}
.y87{bottom:731.736000px;}
.yef{bottom:732.865500px;}
.y13b{bottom:736.927500px;}
.y110{bottom:740.544000px;}
.y36{bottom:741.328500px;}
.y5f{bottom:743.125500px;}
.yd1{bottom:747.537000px;}
.ya{bottom:747.981000px;}
.ya8{bottom:748.243500px;}
.y86{bottom:749.670000px;}
.y13a{bottom:753.366000px;}
.y10f{bottom:758.476500px;}
.y35{bottom:759.261000px;}
.y5e{bottom:761.058000px;}
.y9{bottom:764.419500px;}
.yd0{bottom:765.469500px;}
.ya7{bottom:766.176000px;}
.y85{bottom:767.602500px;}
.y139{bottom:769.804500px;}
.y10e{bottom:776.409000px;}
.y34{bottom:777.193500px;}
.y5d{bottom:778.990500px;}
.y8{bottom:780.858000px;}
.ycf{bottom:783.402000px;}
.ya6{bottom:784.110000px;}
.y84{bottom:785.535000px;}
.y138{bottom:786.082500px;}
.yee{bottom:792.372000px;}
.y33{bottom:795.126000px;}
.y10d{bottom:795.442500px;}
.y5c{bottom:796.923000px;}
.y7{bottom:797.296500px;}
.yce{bottom:801.688500px;}
.ya5{bottom:802.042500px;}
.y137{bottom:802.521000px;}
.y83{bottom:803.467500px;}
.yed{bottom:808.810500px;}
.y32{bottom:813.060000px;}
.y10c{bottom:813.375000px;}
.y6{bottom:813.735000px;}
.y5b{bottom:814.855500px;}
.y136{bottom:818.959500px;}
.ycd{bottom:819.621000px;}
.ya4{bottom:819.975000px;}
.y82{bottom:821.400000px;}
.yec{bottom:825.249000px;}
.y31{bottom:830.992500px;}
.y10b{bottom:831.307500px;}
.y5a{bottom:832.788000px;}
.y135{bottom:835.239000px;}
.ycc{bottom:837.555000px;}
.ya3{bottom:837.907500px;}
.y81{bottom:839.334000px;}
.yeb{bottom:841.687500px;}
.y30{bottom:848.925000px;}
.y10a{bottom:849.240000px;}
.y134{bottom:851.677500px;}
.y59{bottom:854.563500px;}
.ycb{bottom:855.487500px;}
.ya2{bottom:855.840000px;}
.y80{bottom:857.266500px;}
.y2f{bottom:866.857500px;}
.y133{bottom:868.116000px;}
.y109{bottom:868.273500px;}
.y58{bottom:872.496000px;}
.y5{bottom:872.695500px;}
.yca{bottom:873.420000px;}
.ya1{bottom:873.774000px;}
.y7f{bottom:875.199000px;}
.y132{bottom:884.394000px;}
.y2e{bottom:884.790000px;}
.y108{bottom:886.206000px;}
.y4{bottom:889.134000px;}
.y57{bottom:890.428500px;}
.yc9{bottom:891.352500px;}
.ya0{bottom:891.706500px;}
.y7e{bottom:893.131500px;}
.y131{bottom:900.832500px;}
.y2d{bottom:902.724000px;}
.y107{bottom:904.138500px;}
.y56{bottom:908.361000px;}
.yc8{bottom:909.285000px;}
.y9f{bottom:909.639000px;}
.y7d{bottom:911.064000px;}
.y130{bottom:917.271000px;}
.y3{bottom:920.455500px;}
.y2c{bottom:920.656500px;}
.y106{bottom:922.071000px;}
.y55{bottom:926.295000px;}
.y9e{bottom:927.571500px;}
.y7c{bottom:928.996500px;}
.y12f{bottom:933.709500px;}
.y2b{bottom:938.589000px;}
.y105{bottom:940.005000px;}
.y54{bottom:944.227500px;}
.y9d{bottom:945.504000px;}
.y7b{bottom:946.930500px;}
.y12e{bottom:949.987500px;}
.y104{bottom:957.937500px;}
.y2a{bottom:963.436500px;}
.y7a{bottom:964.863000px;}
.y12d{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.y29{bottom:981.370500px;}
.y12c{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.y28{bottom:1038.157500px;}
.h7{height:17.645875px;}
.ha{height:24.209280px;}
.h4{height:40.348800px;}
.h9{height:41.842920px;}
.h6{height:44.831700px;}
.h3{height:49.892047px;}
.h5{height:50.211840px;}
.h1{height:60.254040px;}
.h2{height:61.303127px;}
.h8{height:117.773438px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:48.000000px;}
.x7{left:202.147500px;}
.x9{left:206.007000px;}
.x3{left:207.562500px;}
.x11{left:209.058000px;}
.x13{left:214.255500px;}
.xa{left:217.090500px;}
.xd{left:221.347500px;}
.x8{left:224.563500px;}
.x12{left:227.281500px;}
.xc{left:236.076000px;}
.x1{left:240.174000px;}
.x6{left:244.666500px;}
.x10{left:247.611000px;}
.xf{left:267.190500px;}
.xe{left:270.835500px;}
.x4{left:293.769000px;}
.x2{left:299.361000px;}
.x5{left:306.325500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.v1{vertical-align:27.765333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000495pt;}
.ls2{letter-spacing:0.000891pt;}
.lse{letter-spacing:0.002079pt;}
.lsa{letter-spacing:0.003733pt;}
.lsd{letter-spacing:0.003970pt;}
.ls1{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.658245pt;}
.ls8{letter-spacing:17.750297pt;}
.ls3{letter-spacing:19.039527pt;}
.ls9{letter-spacing:19.040473pt;}
.ls7{letter-spacing:19.442245pt;}
.ls5{letter-spacing:20.386245pt;}
.lsb{letter-spacing:22.407578pt;}
.ls6{letter-spacing:28.935578pt;}
.ws8b{word-spacing:-14.760588pt;}
.ws9d{word-spacing:-13.652838pt;}
.wsa3{word-spacing:-2.964870pt;}
.ws55{word-spacing:-2.592933pt;}
.wsbd{word-spacing:-2.433531pt;}
.ws18{word-spacing:-2.220996pt;}
.wsab{word-spacing:-2.114728pt;}
.ws68{word-spacing:-2.008460pt;}
.ws89{word-spacing:-1.955326pt;}
.ws52{word-spacing:-1.795925pt;}
.ws5c{word-spacing:-1.689657pt;}
.ws59{word-spacing:-1.477121pt;}
.ws36{word-spacing:-1.370854pt;}
.ws2e{word-spacing:-1.211452pt;}
.ws17{word-spacing:-1.158318pt;}
.ws43{word-spacing:-1.052051pt;}
.ws4b{word-spacing:-0.998917pt;}
.ws14{word-spacing:-0.980326pt;}
.ws29{word-spacing:-0.945783pt;}
.ws2f{word-spacing:-0.839515pt;}
.ws22{word-spacing:-0.836864pt;}
.ws1d{word-spacing:-0.786381pt;}
.wsdc{word-spacing:-0.597760pt;}
.ws30{word-spacing:-0.520712pt;}
.ws71{word-spacing:-0.467578pt;}
.ws5d{word-spacing:-0.308176pt;}
.wse6{word-spacing:-0.263014pt;}
.wsf{word-spacing:-0.215194pt;}
.ws5a{word-spacing:-0.201909pt;}
.ws28{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws54{word-spacing:-0.042507pt;}
.ws23{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.023910pt;}
.wsd5{word-spacing:0.071731pt;}
.ws25{word-spacing:0.223162pt;}
.ws3f{word-spacing:0.276296pt;}
.ws9f{word-spacing:0.329430pt;}
.wscb{word-spacing:0.358656pt;}
.ws84{word-spacing:0.382564pt;}
.ws77{word-spacing:0.435698pt;}
.ws9{word-spacing:0.454298pt;}
.wsa8{word-spacing:0.488832pt;}
.wsa{word-spacing:0.549939pt;}
.ws61{word-spacing:0.595099pt;}
.ws3d{word-spacing:0.648233pt;}
.wsd8{word-spacing:0.741222pt;}
.ws8d{word-spacing:0.754501pt;}
.ws67{word-spacing:0.807635pt;}
.wsbc{word-spacing:0.836864pt;}
.ws8{word-spacing:0.884685pt;}
.ws4f{word-spacing:0.913903pt;}
.wseb{word-spacing:0.932506pt;}
.ws1a{word-spacing:0.967036pt;}
.ws2a{word-spacing:1.020170pt;}
.ws19{word-spacing:1.073304pt;}
.ws33{word-spacing:1.126438pt;}
.ws26{word-spacing:1.179572pt;}
.wsc7{word-spacing:1.232706pt;}
.ws9b{word-spacing:1.285840pt;}
.wsd6{word-spacing:1.315072pt;}
.wse9{word-spacing:1.362893pt;}
.wsc2{word-spacing:1.392107pt;}
.wsa9{word-spacing:1.445241pt;}
.ws74{word-spacing:1.498375pt;}
.wsd3{word-spacing:1.506355pt;}
.wsa2{word-spacing:1.604643pt;}
.wsda{word-spacing:1.697638pt;}
.ws7a{word-spacing:1.764044pt;}
.ws16{word-spacing:1.817178pt;}
.wsbb{word-spacing:1.841101pt;}
.ws6d{word-spacing:1.923446pt;}
.ws65{word-spacing:1.976580pt;}
.ws8e{word-spacing:2.029714pt;}
.ws2d{word-spacing:2.082848pt;}
.ws3a{word-spacing:2.135981pt;}
.wse2{word-spacing:2.175846pt;}
.wsc1{word-spacing:2.189115pt;}
.wse{word-spacing:2.223667pt;}
.ws1b{word-spacing:2.242249pt;}
.ws2c{word-spacing:2.295383pt;}
.ws88{word-spacing:2.348517pt;}
.ws70{word-spacing:2.401651pt;}
.wsaa{word-spacing:2.454785pt;}
.wsce{word-spacing:2.558413pt;}
.ws4c{word-spacing:2.667320pt;}
.ws12{word-spacing:2.701875pt;}
.ws75{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.ws3e{word-spacing:2.773588pt;}
.wsd1{word-spacing:2.797517pt;}
.wsb9{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws32{word-spacing:2.986123pt;}
.wse1{word-spacing:2.988800pt;}
.ws5{word-spacing:3.084442pt;}
.wsb2{word-spacing:3.092391pt;}
.ws8a{word-spacing:3.145525pt;}
.ws38{word-spacing:3.198659pt;}
.ws31{word-spacing:3.251793pt;}
.wse3{word-spacing:3.275725pt;}
.ws69{word-spacing:3.304927pt;}
.ws1f{word-spacing:3.323546pt;}
.ws78{word-spacing:3.358060pt;}
.ws7c{word-spacing:3.411194pt;}
.ws21{word-spacing:3.419187pt;}
.ws42{word-spacing:3.464328pt;}
.wse8{word-spacing:3.514829pt;}
.wsa7{word-spacing:3.517462pt;}
.ws51{word-spacing:3.570596pt;}
.ws40{word-spacing:3.623730pt;}
.ws76{word-spacing:3.729997pt;}
.ws2b{word-spacing:3.783131pt;}
.ws73{word-spacing:3.836265pt;}
.ws3b{word-spacing:3.889399pt;}
.ws4a{word-spacing:3.985067pt;}
.ws39{word-spacing:4.048801pt;}
.ws9e{word-spacing:4.061921pt;}
.wsbf{word-spacing:4.101935pt;}
.ws53{word-spacing:4.208202pt;}
.wsae{word-spacing:4.261336pt;}
.ws49{word-spacing:4.314470pt;}
.wsd{word-spacing:4.327782pt;}
.ws37{word-spacing:4.367604pt;}
.ws24{word-spacing:4.420738pt;}
.ws6c{word-spacing:4.473872pt;}
.ws5e{word-spacing:4.527005pt;}
.wsb5{word-spacing:4.580139pt;}
.wsca{word-spacing:4.686407pt;}
.ws90{word-spacing:4.739541pt;}
.wsa6{word-spacing:4.767816pt;}
.ws0{word-spacing:4.782067pt;}
.ws34{word-spacing:4.792675pt;}
.wse0{word-spacing:4.805990pt;}
.ws7d{word-spacing:4.898943pt;}
.ws66{word-spacing:4.952076pt;}
.wsad{word-spacing:5.005210pt;}
.ws10{word-spacing:5.092915pt;}
.ws1e{word-spacing:5.111478pt;}
.wsb1{word-spacing:5.217746pt;}
.ws1c{word-spacing:5.270880pt;}
.wsaf{word-spacing:5.324013pt;}
.ws4e{word-spacing:5.377147pt;}
.ws98{word-spacing:5.430281pt;}
.ws7{word-spacing:5.475482pt;}
.ws35{word-spacing:5.483415pt;}
.wsd4{word-spacing:5.523302pt;}
.wsb7{word-spacing:5.536549pt;}
.ws80{word-spacing:5.589683pt;}
.wsb6{word-spacing:5.642817pt;}
.ws79{word-spacing:5.695951pt;}
.ws91{word-spacing:5.749084pt;}
.wse4{word-spacing:5.762406pt;}
.ws85{word-spacing:5.855352pt;}
.ws9c{word-spacing:5.908486pt;}
.wsc5{word-spacing:6.067888pt;}
.wsc8{word-spacing:6.121021pt;}
.wsd0{word-spacing:6.144973pt;}
.ws83{word-spacing:6.174155pt;}
.ws11{word-spacing:6.192794pt;}
.ws7f{word-spacing:6.280423pt;}
.ws4d{word-spacing:6.333557pt;}
.ws6{word-spacing:6.336256pt;}
.wsdf{word-spacing:6.384077pt;}
.ws58{word-spacing:6.386691pt;}
.ws45{word-spacing:6.439825pt;}
.wsba{word-spacing:6.623181pt;}
.ws7b{word-spacing:6.652360pt;}
.wscc{word-spacing:6.671002pt;}
.ws7e{word-spacing:6.705494pt;}
.wsb{word-spacing:6.814464pt;}
.ws5b{word-spacing:6.918029pt;}
.wsc3{word-spacing:7.130565pt;}
.wsfd{word-spacing:7.183699pt;}
.wsc{word-spacing:7.340493pt;}
.ws86{word-spacing:7.343100pt;}
.wsec{word-spacing:7.388314pt;}
.ws41{word-spacing:7.396234pt;}
.wsea{word-spacing:7.436134pt;}
.wsb0{word-spacing:7.502502pt;}
.wse7{word-spacing:7.531776pt;}
.wsde{word-spacing:7.579597pt;}
.ws57{word-spacing:7.608770pt;}
.wsa0{word-spacing:7.661904pt;}
.wsb4{word-spacing:7.715037pt;}
.ws3c{word-spacing:7.821305pt;}
.ws44{word-spacing:7.874439pt;}
.wsc0{word-spacing:7.927573pt;}
.wsdd{word-spacing:8.009984pt;}
.wsa1{word-spacing:8.086975pt;}
.wsac{word-spacing:8.193242pt;}
.ws56{word-spacing:8.246376pt;}
.ws97{word-spacing:8.352644pt;}
.ws20{word-spacing:8.440371pt;}
.ws8f{word-spacing:8.565179pt;}
.ws96{word-spacing:8.724581pt;}
.wsc6{word-spacing:8.777715pt;}
.ws46{word-spacing:8.883983pt;}
.wsd7{word-spacing:8.966400pt;}
.ws47{word-spacing:8.990250pt;}
.ws64{word-spacing:9.096518pt;}
.ws6b{word-spacing:9.149652pt;}
.wsc9{word-spacing:9.309053pt;}
.ws60{word-spacing:9.362187pt;}
.ws87{word-spacing:9.372877pt;}
.ws9a{word-spacing:9.415321pt;}
.ws82{word-spacing:9.521589pt;}
.wscd{word-spacing:9.540250pt;}
.ws63{word-spacing:9.574723pt;}
.wse5{word-spacing:9.588070pt;}
.ws48{word-spacing:9.680991pt;}
.ws72{word-spacing:9.999794pt;}
.wsc4{word-spacing:10.106061pt;}
.ws6a{word-spacing:10.265463pt;}
.wsbe{word-spacing:10.318597pt;}
.ws5f{word-spacing:10.371731pt;}
.wsb8{word-spacing:10.796802pt;}
.wscf{word-spacing:10.974874pt;}
.ws50{word-spacing:11.009337pt;}
.wsd2{word-spacing:11.022694pt;}
.ws6f{word-spacing:11.221873pt;}
.ws62{word-spacing:11.275007pt;}
.ws8c{word-spacing:11.540676pt;}
.ws99{word-spacing:11.646944pt;}
.wsa4{word-spacing:11.806345pt;}
.ws81{word-spacing:12.231416pt;}
.wsa5{word-spacing:13.506629pt;}
.ws27{word-spacing:17.321641pt;}
.ws6e{word-spacing:20.297137pt;}
.wsd9{word-spacing:22.882253pt;}
.wsfc{word-spacing:22.930074pt;}
.ws13{word-spacing:24.526256pt;}
.ws4{word-spacing:26.515067pt;}
.wsf4{word-spacing:29.643711pt;}
.wsf5{word-spacing:29.649044pt;}
.wsf3{word-spacing:30.135610pt;}
.wsf9{word-spacing:30.140943pt;}
.ws15{word-spacing:51.805867pt;}
.wsb3{word-spacing:61.050813pt;}
.wsfb{word-spacing:63.195187pt;}
.ws95{word-spacing:105.086208pt;}
.wsed{word-spacing:107.764173pt;}
.wsfa{word-spacing:110.298675pt;}
.wsf2{word-spacing:112.354970pt;}
.wsf7{word-spacing:116.467558pt;}
.wsf6{word-spacing:120.532326pt;}
.wsf8{word-spacing:123.258112pt;}
.ws94{word-spacing:145.351322pt;}
.ws93{word-spacing:174.474189pt;}
.wsf1{word-spacing:176.210376pt;}
.ws92{word-spacing:176.769587pt;}
.wsee{word-spacing:184.738569pt;}
.wsef{word-spacing:185.277042pt;}
.wsf0{word-spacing:198.884803pt;}
._20{margin-left:-25.442626pt;}
._f{margin-left:-5.993540pt;}
._5{margin-left:-4.376886pt;}
._c{margin-left:-3.379205pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-1.434614pt;}
._2{width:0.901032pt;}
._1{width:2.371905pt;}
._8{width:3.450642pt;}
._1e{width:13.264348pt;}
._6{width:14.975464pt;}
._a{width:15.921041pt;}
._7{width:17.498182pt;}
._4{width:18.630413pt;}
._10{width:20.224884pt;}
._b{width:21.164419pt;}
._13{width:22.403373pt;}
._14{width:23.944255pt;}
._1f{width:26.016476pt;}
._12{width:26.919751pt;}
._15{width:28.269656pt;}
._11{width:61.103947pt;}
._e{width:71.731200pt;}
._21{width:127.107686pt;}
._9{width:151.687578pt;}
._d{width:168.946859pt;}
._22{width:172.941574pt;}
._1a{width:190.422426pt;}
._18{width:200.416973pt;}
._1d{width:206.107648pt;}
._16{width:208.211754pt;}
._17{width:210.411520pt;}
._1b{width:212.324342pt;}
._19{width:216.341299pt;}
._1c{width:219.067085pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.yc7{bottom:177.182667pt;}
.y25{bottom:186.716000pt;}
.y52{bottom:188.044000pt;}
.yc6{bottom:191.794667pt;}
.y24{bottom:201.326667pt;}
.y12b{bottom:201.328000pt;}
.y152{bottom:202.056000pt;}
.y51{bottom:203.984000pt;}
.yc5{bottom:206.406667pt;}
.yaf{bottom:215.681333pt;}
.y23{bottom:215.938667pt;}
.y12a{bottom:216.917333pt;}
.y151{bottom:217.996000pt;}
.y50{bottom:219.924000pt;}
.yc4{bottom:226.533333pt;}
.yea{bottom:227.350667pt;}
.y129{bottom:231.529333pt;}
.y22{bottom:235.629333pt;}
.y79{bottom:235.864000pt;}
.y4f{bottom:242.010667pt;}
.yc3{bottom:242.473333pt;}
.ye9{bottom:243.290667pt;}
.y128{bottom:246.141333pt;}
.y78{bottom:251.804000pt;}
.y21{bottom:254.954667pt;}
.y103{bottom:254.997333pt;}
.y4e{bottom:257.952000pt;}
.yc2{bottom:258.413333pt;}
.y150{bottom:258.702667pt;}
.ye8{bottom:259.545333pt;}
.y127{bottom:261.730667pt;}
.y77{bottom:267.744000pt;}
.y20{bottom:270.894667pt;}
.y102{bottom:270.938667pt;}
.y14f{bottom:273.314667pt;}
.y4d{bottom:273.892000pt;}
.yc1{bottom:274.353333pt;}
.ye7{bottom:275.485333pt;}
.y126{bottom:276.342667pt;}
.yae{bottom:281.801333pt;}
.y9c{bottom:283.685333pt;}
.y1f{bottom:286.834667pt;}
.y101{bottom:286.878667pt;}
.y76{bottom:287.100000pt;}
.y14e{bottom:287.926667pt;}
.y4c{bottom:289.832000pt;}
.yc0{bottom:290.293333pt;}
.ye6{bottom:291.425333pt;}
.y125{bottom:291.932000pt;}
.y9b{bottom:299.625333pt;}
.y14d{bottom:302.538667pt;}
.y1e{bottom:302.774667pt;}
.y75{bottom:303.040000pt;}
.y4b{bottom:305.772000pt;}
.y100{bottom:306.012000pt;}
.ybf{bottom:306.233333pt;}
.y124{bottom:306.544000pt;}
.ye5{bottom:307.365333pt;}
.y27{bottom:309.333333pt;}
.y9a{bottom:315.565333pt;}
.y14c{bottom:317.150667pt;}
.y1d{bottom:318.714667pt;}
.y74{bottom:318.980000pt;}
.y123{bottom:321.156000pt;}
.y4a{bottom:321.712000pt;}
.yff{bottom:321.952000pt;}
.ybe{bottom:322.174667pt;}
.ye4{bottom:323.305333pt;}
.y99{bottom:331.505333pt;}
.y14b{bottom:331.762667pt;}
.y1c{bottom:334.656000pt;}
.y73{bottom:334.920000pt;}
.y122{bottom:336.745333pt;}
.y49{bottom:337.653333pt;}
.yfe{bottom:337.892000pt;}
.ybd{bottom:338.114667pt;}
.ye3{bottom:339.246667pt;}
.y14a{bottom:346.373333pt;}
.y98{bottom:347.445333pt;}
.y1b{bottom:350.596000pt;}
.y72{bottom:350.861333pt;}
.y121{bottom:351.357333pt;}
.yfd{bottom:353.832000pt;}
.ybc{bottom:354.054667pt;}
.y48{bottom:359.740000pt;}
.y97{bottom:363.386667pt;}
.y1a{bottom:366.536000pt;}
.y120{bottom:366.946667pt;}
.ye2{bottom:367.384000pt;}
.yfc{bottom:369.773333pt;}
.ybb{bottom:369.994667pt;}
.y71{bottom:370.216000pt;}
.y47{bottom:375.680000pt;}
.y149{bottom:376.129333pt;}
.y96{bottom:379.326667pt;}
.y11f{bottom:381.558667pt;}
.y19{bottom:382.476000pt;}
.yfb{bottom:385.713333pt;}
.yba{bottom:385.934667pt;}
.y70{bottom:386.156000pt;}
.y46{bottom:391.620000pt;}
.y95{bottom:395.266667pt;}
.y11e{bottom:396.170667pt;}
.y18{bottom:398.416000pt;}
.yfa{bottom:401.653333pt;}
.yb9{bottom:401.876000pt;}
.y6f{bottom:402.096000pt;}
.y45{bottom:407.561333pt;}
.ye1{bottom:408.805333pt;}
.y94{bottom:411.206667pt;}
.y11d{bottom:411.760000pt;}
.y17{bottom:414.356000pt;}
.y6e{bottom:418.037333pt;}
.y148{bottom:420.161333pt;}
.ye0{bottom:424.745333pt;}
.y11c{bottom:426.372000pt;}
.y93{bottom:427.146667pt;}
.y44{bottom:429.648000pt;}
.y6d{bottom:433.977333pt;}
.y147{bottom:436.102667pt;}
.ydf{bottom:440.685333pt;}
.y11b{bottom:440.984000pt;}
.y92{bottom:443.086667pt;}
.y16{bottom:445.510667pt;}
.y43{bottom:445.588000pt;}
.yb8{bottom:447.753333pt;}
.yf9{bottom:449.500000pt;}
.y6c{bottom:449.917333pt;}
.y11a{bottom:455.596000pt;}
.yde{bottom:456.626667pt;}
.y91{bottom:459.028000pt;}
.y42{bottom:461.529333pt;}
.y6b{bottom:465.857333pt;}
.y146{bottom:467.414667pt;}
.y119{bottom:471.185333pt;}
.ydd{bottom:472.880000pt;}
.y90{bottom:474.968000pt;}
.y41{bottom:477.469333pt;}
.y6a{bottom:481.797333pt;}
.y118{bottom:485.797333pt;}
.yb7{bottom:488.460000pt;}
.ydc{bottom:488.821333pt;}
.y15{bottom:489.712000pt;}
.y8f{bottom:490.908000pt;}
.y40{bottom:493.409333pt;}
.y69{bottom:497.738667pt;}
.y117{bottom:501.386667pt;}
.yb6{bottom:503.072000pt;}
.y14{bottom:504.324000pt;}
.ydb{bottom:504.761333pt;}
.y8e{bottom:506.848000pt;}
.yf8{bottom:507.973333pt;}
.y3f{bottom:509.349333pt;}
.y145{bottom:509.354667pt;}
.y68{bottom:513.678667pt;}
.y116{bottom:515.998667pt;}
.yb5{bottom:517.682667pt;}
.yda{bottom:520.701333pt;}
.y8d{bottom:522.788000pt;}
.yf7{bottom:523.913333pt;}
.y144{bottom:523.966667pt;}
.y3e{bottom:525.289333pt;}
.y67{bottom:529.618667pt;}
.y115{bottom:530.610667pt;}
.yb4{bottom:532.294667pt;}
.y13{bottom:533.365333pt;}
.yd9{bottom:536.641333pt;}
.y143{bottom:538.577333pt;}
.y8c{bottom:538.728000pt;}
.yf6{bottom:539.853333pt;}
.y3d{bottom:541.229333pt;}
.y66{bottom:545.558667pt;}
.y114{bottom:546.200000pt;}
.yb3{bottom:546.906667pt;}
.y12{bottom:547.977333pt;}
.yd8{bottom:552.581333pt;}
.y142{bottom:553.048000pt;}
.yf5{bottom:555.794667pt;}
.y3c{bottom:557.170667pt;}
.y113{bottom:560.812000pt;}
.y65{bottom:561.498667pt;}
.yb2{bottom:561.518667pt;}
.y11{bottom:562.589333pt;}
.y8b{bottom:564.028000pt;}
.y141{bottom:567.660000pt;}
.yd7{bottom:568.521333pt;}
.yf4{bottom:571.734667pt;}
.y3b{bottom:573.110667pt;}
.y112{bottom:575.424000pt;}
.yb1{bottom:576.130667pt;}
.y10{bottom:577.201333pt;}
.y64{bottom:580.854667pt;}
.y140{bottom:582.272000pt;}
.yd6{bottom:584.462667pt;}
.yad{bottom:585.404000pt;}
.yf3{bottom:587.674667pt;}
.y3a{bottom:589.050667pt;}
.yf{bottom:591.813333pt;}
.y13f{bottom:596.741333pt;}
.y63{bottom:596.794667pt;}
.yd5{bottom:600.402667pt;}
.yac{bottom:601.345333pt;}
.y8a{bottom:602.612000pt;}
.yf2{bottom:603.614667pt;}
.y39{bottom:604.990667pt;}
.yb0{bottom:605.885333pt;}
.ye{bottom:606.425333pt;}
.y111{bottom:610.865333pt;}
.y13e{bottom:611.353333pt;}
.y62{bottom:612.734667pt;}
.yd4{bottom:616.657333pt;}
.yab{bottom:617.285333pt;}
.y89{bottom:618.552000pt;}
.yf1{bottom:619.554667pt;}
.y38{bottom:620.930667pt;}
.yd{bottom:621.037333pt;}
.y13d{bottom:625.965333pt;}
.y61{bottom:628.674667pt;}
.yd3{bottom:632.597333pt;}
.yaa{bottom:633.225333pt;}
.y88{bottom:634.492000pt;}
.yf0{bottom:635.494667pt;}
.yc{bottom:635.649333pt;}
.y13c{bottom:640.434667pt;}
.y37{bottom:643.018667pt;}
.y60{bottom:644.614667pt;}
.yd2{bottom:648.537333pt;}
.ya9{bottom:649.165333pt;}
.yb{bottom:650.260000pt;}
.y87{bottom:650.432000pt;}
.yef{bottom:651.436000pt;}
.y13b{bottom:655.046667pt;}
.y110{bottom:658.261333pt;}
.y36{bottom:658.958667pt;}
.y5f{bottom:660.556000pt;}
.yd1{bottom:664.477333pt;}
.ya{bottom:664.872000pt;}
.ya8{bottom:665.105333pt;}
.y86{bottom:666.373333pt;}
.y13a{bottom:669.658667pt;}
.y10f{bottom:674.201333pt;}
.y35{bottom:674.898667pt;}
.y5e{bottom:676.496000pt;}
.y9{bottom:679.484000pt;}
.yd0{bottom:680.417333pt;}
.ya7{bottom:681.045333pt;}
.y85{bottom:682.313333pt;}
.y139{bottom:684.270667pt;}
.y10e{bottom:690.141333pt;}
.y34{bottom:690.838667pt;}
.y5d{bottom:692.436000pt;}
.y8{bottom:694.096000pt;}
.ycf{bottom:696.357333pt;}
.ya6{bottom:696.986667pt;}
.y84{bottom:698.253333pt;}
.y138{bottom:698.740000pt;}
.yee{bottom:704.330667pt;}
.y33{bottom:706.778667pt;}
.y10d{bottom:707.060000pt;}
.y5c{bottom:708.376000pt;}
.y7{bottom:708.708000pt;}
.yce{bottom:712.612000pt;}
.ya5{bottom:712.926667pt;}
.y137{bottom:713.352000pt;}
.y83{bottom:714.193333pt;}
.yed{bottom:718.942667pt;}
.y32{bottom:722.720000pt;}
.y10c{bottom:723.000000pt;}
.y6{bottom:723.320000pt;}
.y5b{bottom:724.316000pt;}
.y136{bottom:727.964000pt;}
.ycd{bottom:728.552000pt;}
.ya4{bottom:728.866667pt;}
.y82{bottom:730.133333pt;}
.yec{bottom:733.554667pt;}
.y31{bottom:738.660000pt;}
.y10b{bottom:738.940000pt;}
.y5a{bottom:740.256000pt;}
.y135{bottom:742.434667pt;}
.ycc{bottom:744.493333pt;}
.ya3{bottom:744.806667pt;}
.y81{bottom:746.074667pt;}
.yeb{bottom:748.166667pt;}
.y30{bottom:754.600000pt;}
.y10a{bottom:754.880000pt;}
.y134{bottom:757.046667pt;}
.y59{bottom:759.612000pt;}
.ycb{bottom:760.433333pt;}
.ya2{bottom:760.746667pt;}
.y80{bottom:762.014667pt;}
.y2f{bottom:770.540000pt;}
.y133{bottom:771.658667pt;}
.y109{bottom:771.798667pt;}
.y58{bottom:775.552000pt;}
.y5{bottom:775.729333pt;}
.yca{bottom:776.373333pt;}
.ya1{bottom:776.688000pt;}
.y7f{bottom:777.954667pt;}
.y132{bottom:786.128000pt;}
.y2e{bottom:786.480000pt;}
.y108{bottom:787.738667pt;}
.y4{bottom:790.341333pt;}
.y57{bottom:791.492000pt;}
.yc9{bottom:792.313333pt;}
.ya0{bottom:792.628000pt;}
.y7e{bottom:793.894667pt;}
.y131{bottom:800.740000pt;}
.y2d{bottom:802.421333pt;}
.y107{bottom:803.678667pt;}
.y56{bottom:807.432000pt;}
.yc8{bottom:808.253333pt;}
.y9f{bottom:808.568000pt;}
.y7d{bottom:809.834667pt;}
.y130{bottom:815.352000pt;}
.y3{bottom:818.182667pt;}
.y2c{bottom:818.361333pt;}
.y106{bottom:819.618667pt;}
.y55{bottom:823.373333pt;}
.y9e{bottom:824.508000pt;}
.y7c{bottom:825.774667pt;}
.y12f{bottom:829.964000pt;}
.y2b{bottom:834.301333pt;}
.y105{bottom:835.560000pt;}
.y54{bottom:839.313333pt;}
.y9d{bottom:840.448000pt;}
.y7b{bottom:841.716000pt;}
.y12e{bottom:844.433333pt;}
.y104{bottom:851.500000pt;}
.y2a{bottom:856.388000pt;}
.y7a{bottom:857.656000pt;}
.y12d{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.y29{bottom:872.329333pt;}
.y12c{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.y28{bottom:922.806667pt;}
.h7{height:15.685222pt;}
.ha{height:21.519360pt;}
.h4{height:35.865600pt;}
.h9{height:37.193707pt;}
.h6{height:39.850400pt;}
.h3{height:44.348486pt;}
.h5{height:44.632747pt;}
.h1{height:53.559147pt;}
.h2{height:54.491668pt;}
.h8{height:104.687500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:42.666667pt;}
.x7{left:179.686667pt;}
.x9{left:183.117333pt;}
.x3{left:184.500000pt;}
.x11{left:185.829333pt;}
.x13{left:190.449333pt;}
.xa{left:192.969333pt;}
.xd{left:196.753333pt;}
.x8{left:199.612000pt;}
.x12{left:202.028000pt;}
.xc{left:209.845333pt;}
.x1{left:213.488000pt;}
.x6{left:217.481333pt;}
.x10{left:220.098667pt;}
.xf{left:237.502667pt;}
.xe{left:240.742667pt;}
.x4{left:261.128000pt;}
.x2{left:266.098667pt;}
.x5{left:272.289333pt;}
}




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