
    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_42df678a1ea9532d952f68b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_03134ae9cfcfd084b41b0958.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_3331c125a447d1f5db1d1564.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_d6423de1e3bc008c92c191f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_0ef7f374f9d42bbbab9d0795.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_d48e4e512662469987b8be4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_1fa9cb9f9abb986223a65389.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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_5dfc0bbaf368f6c76c4e8b4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.580000;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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls31{letter-spacing:4.296107px;}
.ls30{letter-spacing:4.329636px;}
.lsd{letter-spacing:4.878824px;}
.lsc{letter-spacing:4.916901px;}
.ls36{letter-spacing:4.927589px;}
.ls33{letter-spacing:4.949655px;}
.ls32{letter-spacing:4.987714px;}
.ls34{letter-spacing:4.989559px;}
.ls35{letter-spacing:4.991763px;}
.ls19{letter-spacing:5.072575px;}
.ls16{letter-spacing:5.095290px;}
.ls12{letter-spacing:5.100380px;}
.lsf{letter-spacing:5.123219px;}
.ls1f{letter-spacing:5.129247px;}
.ls15{letter-spacing:5.134469px;}
.ls17{letter-spacing:5.136368px;}
.ls18{letter-spacing:5.138636px;}
.ls1c{letter-spacing:5.152215px;}
.ls3c{letter-spacing:5.156048px;}
.lse{letter-spacing:5.162612px;}
.ls10{letter-spacing:5.164522px;}
.ls11{letter-spacing:5.166803px;}
.ls2e{letter-spacing:5.170777px;}
.ls39{letter-spacing:5.179136px;}
.ls1b{letter-spacing:5.191832px;}
.ls1d{letter-spacing:5.193752px;}
.ls2b{letter-spacing:5.193931px;}
.ls1e{letter-spacing:5.196046px;}
.ls38{letter-spacing:5.218960px;}
.ls7{letter-spacing:5.219627px;}
.ls3a{letter-spacing:5.220891px;}
.ls3b{letter-spacing:5.223196px;}
.ls25{letter-spacing:5.226037px;}
.ls2a{letter-spacing:5.233868px;}
.ls2c{letter-spacing:5.235805px;}
.ls2d{letter-spacing:5.238117px;}
.ls22{letter-spacing:5.238790px;}
.ls4{letter-spacing:5.243000px;}
.ls24{letter-spacing:5.272755px;}
.ls21{letter-spacing:5.279072px;}
.ls23{letter-spacing:5.281025px;}
.ls3{letter-spacing:5.283314px;}
.ls5{letter-spacing:5.285269px;}
.ls6{letter-spacing:5.287603px;}
.ls28{letter-spacing:9.912538px;}
.ls29{letter-spacing:11.310538px;}
.ls27{letter-spacing:11.356200px;}
.lsa{letter-spacing:13.230538px;}
.ls14{letter-spacing:13.236538px;}
.lsb{letter-spacing:14.898538px;}
.ls9{letter-spacing:14.944200px;}
.ls37{letter-spacing:29.862118px;}
.ls1a{letter-spacing:30.730447px;}
.ls13{letter-spacing:30.909259px;}
.ls20{letter-spacing:31.084200px;}
.ls3d{letter-spacing:31.236139px;}
.ls2f{letter-spacing:31.335879px;}
.ls26{letter-spacing:31.606518px;}
.ls8{letter-spacing:31.631919px;}
.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;}
}
.ws3c{word-spacing:-31.711613px;}
.ws88{word-spacing:-31.686149px;}
.ws9a{word-spacing:-31.414827px;}
.wsb4{word-spacing:-31.325343px;}
.ws77{word-spacing:-31.162515px;}
.ws52{word-spacing:-30.987133px;}
.ws65{word-spacing:-30.818207px;}
.wsa5{word-spacing:-29.937354px;}
.wsba{word-spacing:-21.519300px;}
.ws41{word-spacing:-14.943900px;}
.ws39{word-spacing:-5.285269px;}
.ws84{word-spacing:-5.281025px;}
.ws95{word-spacing:-5.237335px;}
.ws97{word-spacing:-5.235805px;}
.wsb2{word-spacing:-5.231908px;}
.wsae{word-spacing:-5.221427px;}
.wsb0{word-spacing:-5.220891px;}
.ws72{word-spacing:-5.195047px;}
.ws74{word-spacing:-5.193752px;}
.ws4d{word-spacing:-5.164628px;}
.ws4f{word-spacing:-5.164522px;}
.ws63{word-spacing:-5.144838px;}
.ws61{word-spacing:-5.136368px;}
.ws5f{word-spacing:-5.134526px;}
.wsa2{word-spacing:-4.989559px;}
.ws2a{word-spacing:-3.586536px;}
.ws15{word-spacing:-3.287658px;}
.ws7a{word-spacing:-3.227882px;}
.ws12{word-spacing:-3.108331px;}
.ws93{word-spacing:-2.749678px;}
.ws47{word-spacing:-2.630126px;}
.ws7e{word-spacing:-2.450800px;}
.wsc2{word-spacing:-2.385040px;}
.wsc4{word-spacing:-2.175826px;}
.ws6{word-spacing:-2.092146px;}
.ws35{word-spacing:-2.032370px;}
.ws6f{word-spacing:-1.912819px;}
.wsa9{word-spacing:-1.793268px;}
.ws2e{word-spacing:-1.673717px;}
.wsb{word-spacing:-1.613941px;}
.ws24{word-spacing:-1.434614px;}
.ws8b{word-spacing:-1.374839px;}
.ws22{word-spacing:-1.255288px;}
.ws4{word-spacing:-1.195512px;}
.ws91{word-spacing:-1.016185px;}
.wsbd{word-spacing:-0.795013px;}
.ws23{word-spacing:-0.777083px;}
.wsb8{word-spacing:-0.717307px;}
.wsbb{word-spacing:-0.669485px;}
.ws31{word-spacing:-0.657532px;}
.ws18{word-spacing:-0.418429px;}
.ws90{word-spacing:-0.358654px;}
.wsca{word-spacing:-0.334742px;}
.ws9{word-spacing:-0.239102px;}
.ws92{word-spacing:-0.179327px;}
.ws28{word-spacing:-0.059776px;}
.ws3a{word-spacing:-0.004605px;}
.ws85{word-spacing:-0.004601px;}
.ws98{word-spacing:-0.004562px;}
.wsb1{word-spacing:-0.004549px;}
.ws75{word-spacing:-0.004525px;}
.ws50{word-spacing:-0.004500px;}
.ws62{word-spacing:-0.004475px;}
.wsa3{word-spacing:-0.004347px;}
.ws40{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws9f{word-spacing:0.013196px;}
.ws5e{word-spacing:0.013584px;}
.ws4c{word-spacing:0.013659px;}
.ws71{word-spacing:0.013736px;}
.wsad{word-spacing:0.013808px;}
.ws94{word-spacing:0.013847px;}
.ws81{word-spacing:0.013967px;}
.ws36{word-spacing:0.013978px;}
.ws7f{word-spacing:0.119551px;}
.ws7{word-spacing:0.179327px;}
.wscc{word-spacing:0.334742px;}
.ws46{word-spacing:0.358654px;}
.ws14{word-spacing:0.382565px;}
.wsac{word-spacing:0.418429px;}
.ws1d{word-spacing:0.478205px;}
.wsb9{word-spacing:0.537980px;}
.wsc{word-spacing:0.597756px;}
.wsbc{word-spacing:0.711328px;}
.wsc5{word-spacing:0.753170px;}
.wsc0{word-spacing:0.836856px;}
.ws27{word-spacing:0.896634px;}
.ws2f{word-spacing:1.016185px;}
.ws11{word-spacing:1.075961px;}
.ws4a{word-spacing:1.135736px;}
.ws5d{word-spacing:1.195512px;}
.wsab{word-spacing:1.315063px;}
.ws3{word-spacing:1.494390px;}
.ws57{word-spacing:1.554166px;}
.ws5{word-spacing:1.613941px;}
.wsbf{word-spacing:1.673712px;}
.ws26{word-spacing:1.673717px;}
.ws32{word-spacing:1.733492px;}
.ws43{word-spacing:1.853044px;}
.ws5a{word-spacing:1.912819px;}
.ws2b{word-spacing:1.972595px;}
.ws33{word-spacing:2.151922px;}
.wscb{word-spacing:2.175826px;}
.ws5c{word-spacing:2.211697px;}
.ws6e{word-spacing:2.271473px;}
.ws16{word-spacing:2.331248px;}
.ws9d{word-spacing:2.450800px;}
.ws70{word-spacing:2.630126px;}
.wsd{word-spacing:2.689902px;}
.ws58{word-spacing:2.749678px;}
.ws8a{word-spacing:2.809453px;}
.ws59{word-spacing:2.869229px;}
.wsc9{word-spacing:3.096367px;}
.ws20{word-spacing:3.227882px;}
.ws6c{word-spacing:3.287658px;}
.wsc7{word-spacing:3.305581px;}
.wsa8{word-spacing:3.466985px;}
.wsc3{word-spacing:3.514795px;}
.ws1a{word-spacing:3.765863px;}
.wsa{word-spacing:3.825638px;}
.wsc6{word-spacing:3.933223px;}
.ws25{word-spacing:3.945190px;}
.ws5b{word-spacing:4.124516px;}
.ws80{word-spacing:4.184292px;}
.ws48{word-spacing:4.244068px;}
.ws1f{word-spacing:4.303843px;}
.ws2{word-spacing:4.602721px;}
.ws7d{word-spacing:4.662497px;}
.wsc8{word-spacing:4.686394px;}
.ws4b{word-spacing:4.782048px;}
.ws17{word-spacing:4.841824px;}
.wsa0{word-spacing:4.992203px;}
.ws55{word-spacing:5.021150px;}
.wsbe{word-spacing:5.272193px;}
.ws86{word-spacing:5.276875px;}
.ws37{word-spacing:5.284583px;}
.ws82{word-spacing:5.287477px;}
.ws34{word-spacing:5.499355px;}
.ws9e{word-spacing:5.559131px;}
.ws8f{word-spacing:5.618906px;}
.ws30{word-spacing:5.917784px;}
.ws68{word-spacing:5.977560px;}
.wsc1{word-spacing:6.067206px;}
.ws6a{word-spacing:6.097111px;}
.ws1b{word-spacing:6.515540px;}
.ws19{word-spacing:6.575316px;}
.ws2c{word-spacing:6.635092px;}
.ws45{word-spacing:6.694867px;}
.ws8e{word-spacing:6.754643px;}
.ws1c{word-spacing:6.933970px;}
.ws21{word-spacing:6.993745px;}
.ws7c{word-spacing:7.113296px;}
.ws2d{word-spacing:7.232848px;}
.ws44{word-spacing:7.531726px;}
.ws69{word-spacing:7.591501px;}
.ws8d{word-spacing:7.711052px;}
.ws1e{word-spacing:7.890379px;}
.ws7b{word-spacing:8.129482px;}
.ws3f{word-spacing:8.189257px;}
.ws56{word-spacing:8.308808px;}
.ws6d{word-spacing:8.547911px;}
.ws8c{word-spacing:8.906564px;}
.wsa4{word-spacing:9.899310px;}
.wsa1{word-spacing:9.917299px;}
.ws64{word-spacing:10.190579px;}
.ws60{word-spacing:10.209097px;}
.ws51{word-spacing:10.246438px;}
.ws4e{word-spacing:10.265057px;}
.ws76{word-spacing:10.304431px;}
.ws73{word-spacing:10.323156px;}
.wsb3{word-spacing:10.358273px;}
.wsaf{word-spacing:10.377096px;}
.ws99{word-spacing:10.387862px;}
.ws96{word-spacing:10.406739px;}
.ws87{word-spacing:10.477580px;}
.ws3b{word-spacing:10.486000px;}
.ws83{word-spacing:10.486017px;}
.ws38{word-spacing:10.505055px;}
.ws6b{word-spacing:10.759608px;}
.ws13{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws3e{word-spacing:16.772534px;}
.ws10{word-spacing:17.932800px;}
.wsb7{word-spacing:19.507966px;}
.ws29{word-spacing:20.185966px;}
.ws49{word-spacing:20.191966px;}
.ws8{word-spacing:20.401966px;}
.wsf{word-spacing:21.519300px;}
.wsaa{word-spacing:24.163966px;}
.wse{word-spacing:37.003661px;}
.ws9c{word-spacing:82.284102px;}
.wsa6{word-spacing:94.801621px;}
.ws66{word-spacing:97.590990px;}
.ws53{word-spacing:98.125921px;}
.ws78{word-spacing:98.681296px;}
.wsb5{word-spacing:99.196921px;}
.ws9b{word-spacing:99.480287px;}
.ws89{word-spacing:100.339472px;}
.ws3d{word-spacing:100.420109px;}
.wsa7{word-spacing:499.586392px;}
.ws42{word-spacing:597.851170px;}
.ws79{word-spacing:696.214311px;}
.ws54{word-spacing:865.694002px;}
.wsb6{word-spacing:942.220526px;}
.ws67{word-spacing:1024.157022px;}
._2f{margin-left:-11.723875px;}
._1d{margin-left:-9.094790px;}
._3{margin-left:-6.706807px;}
._2c{margin-left:-5.702588px;}
._4{margin-left:-4.542946px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._13{width:3.298008px;}
._14{width:5.285269px;}
._49{width:10.962730px;}
._32{width:13.329958px;}
._7{width:14.346143px;}
._9{width:15.679416px;}
._47{width:16.856719px;}
._5{width:18.112007px;}
._b{width:20.084602px;}
._2{width:21.339889px;}
._8{width:23.312484px;}
._c{width:24.806874px;}
._12{width:26.098032px;}
._4a{width:27.867221px;}
._6{width:29.290044px;}
._2d{width:30.437720px;}
._e{width:31.441966px;}
._48{width:33.396360px;}
._f{width:35.865600px;}
._27{width:37.395620px;}
._11{width:38.495486px;}
._d{width:41.579911px;}
._10{width:43.038600px;}
._28{width:44.090487px;}
._26{width:50.988587px;}
._43{width:147.391573px;}
._40{width:161.362338px;}
._21{width:166.917357px;}
._46{width:167.960430px;}
._3e{width:169.517936px;}
._17{width:170.819890px;}
._35{width:177.179627px;}
._15{width:184.878706px;}
._42{width:186.210342px;}
._24{width:191.689249px;}
._1f{width:192.739968px;}
._29{width:193.830841px;}
._36{width:195.182087px;}
._1a{width:196.506297px;}
._1c{width:197.973664px;}
._16{width:200.827709px;}
._3a{width:203.794930px;}
._3b{width:207.023713px;}
._2a{width:210.035349px;}
._39{width:212.783098px;}
._34{width:221.579250px;}
._2e{width:225.816621px;}
._38{width:229.755813px;}
._3f{width:233.202736px;}
._18{width:249.358986px;}
._3c{width:255.934836px;}
._19{width:259.599899px;}
._1e{width:260.705079px;}
._30{width:263.565664px;}
._25{width:270.583859px;}
._1b{width:280.212448px;}
._37{width:282.628731px;}
._23{width:284.965689px;}
._20{width:297.889639px;}
._31{width:299.750969px;}
._33{width:308.807754px;}
._3d{width:334.986777px;}
._2b{width:346.838788px;}
._22{width:349.534861px;}
._44{width:372.473026px;}
._41{width:380.755694px;}
._45{width:405.703489px;}
._a{width:1147.359649px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs1a{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs15{font-size:69.292049px;}
.fs4{font-size:71.731200px;}
.fs9{font-size:78.690710px;}
.fs17{font-size:79.833144px;}
.fsd{font-size:82.182092px;}
.fsb{font-size:82.632562px;}
.fsf{font-size:83.100248px;}
.fs19{font-size:83.534459px;}
.fs13{font-size:83.773083px;}
.fs11{font-size:84.496609px;}
.fs7{font-size:84.564514px;}
.fs0{font-size:86.077200px;}
.fs14{font-size:86.614844px;}
.fs8{font-size:98.363141px;}
.fs16{font-size:99.791180px;}
.fsc{font-size:102.727357px;}
.fsa{font-size:103.290444px;}
.fse{font-size:103.875049px;}
.fs18{font-size:104.417811px;}
.fs12{font-size:104.716092px;}
.fs10{font-size:105.620496px;}
.fs6{font-size:105.705378px;}
.y0{bottom:0.000000px;}
.y21{bottom:134.047500px;}
.yd0{bottom:178.879500px;}
.ye9{bottom:179.848500px;}
.y91{bottom:180.348000px;}
.y100{bottom:183.810000px;}
.yab{bottom:187.563000px;}
.y5f{bottom:189.147000px;}
.y77{bottom:189.412500px;}
.y116{bottom:191.830500px;}
.y20{bottom:193.149000px;}
.y13a{bottom:193.972500px;}
.ycf{bottom:196.812000px;}
.ye8{bottom:197.781000px;}
.y90{bottom:198.280500px;}
.y46{bottom:198.343500px;}
.yff{bottom:201.744000px;}
.yaa{bottom:205.495500px;}
.y5e{bottom:207.079500px;}
.y76{bottom:207.345000px;}
.y139{bottom:207.423000px;}
.y115{bottom:209.764500px;}
.y1f{bottom:211.686000px;}
.yce{bottom:214.744500px;}
.y8f{bottom:216.213000px;}
.y45{bottom:216.276000px;}
.yfe{bottom:219.676500px;}
.y1e{bottom:222.060000px;}
.ya9{bottom:223.428000px;}
.y5d{bottom:225.012000px;}
.y75{bottom:225.277500px;}
.ycd{bottom:232.677000px;}
.y138{bottom:232.827000px;}
.y8e{bottom:234.147000px;}
.y44{bottom:234.210000px;}
.yfd{bottom:237.609000px;}
.y1d{bottom:240.597000px;}
.y5c{bottom:242.944500px;}
.y114{bottom:243.163500px;}
.y74{bottom:243.211500px;}
.ye7{bottom:245.202000px;}
.y137{bottom:246.277500px;}
.ycc{bottom:250.609500px;}
.ya8{bottom:251.448000px;}
.y8d{bottom:252.079500px;}
.y43{bottom:252.142500px;}
.yfc{bottom:255.541500px;}
.y5b{bottom:260.877000px;}
.y73{bottom:261.144000px;}
.ycb{bottom:268.542000px;}
.y8c{bottom:270.012000px;}
.y42{bottom:270.075000px;}
.y136{bottom:271.681500px;}
.yfb{bottom:273.474000px;}
.y5a{bottom:278.809500px;}
.y72{bottom:279.076500px;}
.y135{bottom:285.130500px;}
.y1c{bottom:286.045500px;}
.yca{bottom:286.476000px;}
.y8b{bottom:287.944500px;}
.y41{bottom:288.007500px;}
.ya7{bottom:291.235500px;}
.yfa{bottom:291.408000px;}
.y113{bottom:293.599500px;}
.ye6{bottom:295.757484px;}
.y59{bottom:296.743500px;}
.y71{bottom:297.009000px;}
.y134{bottom:298.581000px;}
.y1b{bottom:303.978000px;}
.y8a{bottom:305.877000px;}
.y40{bottom:305.940000px;}
.ya6{bottom:309.169500px;}
.yf9{bottom:309.340500px;}
.yc9{bottom:314.496000px;}
.y58{bottom:314.676000px;}
.y70{bottom:314.941500px;}
.ye5{bottom:321.743850px;}
.y1a{bottom:321.910500px;}
.y89{bottom:323.809500px;}
.y3f{bottom:323.872500px;}
.y133{bottom:323.985000px;}
.y112{bottom:326.998500px;}
.ya5{bottom:327.102000px;}
.y57{bottom:332.608500px;}
.y6f{bottom:332.874000px;}
.yf8{bottom:337.360500px;}
.y132{bottom:337.435500px;}
.y19{bottom:339.843000px;}
.y88{bottom:341.743500px;}
.y3e{bottom:341.806500px;}
.ya4{bottom:345.034500px;}
.ye4{bottom:348.593096px;}
.y56{bottom:350.541000px;}
.y6e{bottom:350.808000px;}
.y131{bottom:350.884500px;}
.yc8{bottom:354.207000px;}
.y87{bottom:359.676000px;}
.y3d{bottom:359.739000px;}
.ya3{bottom:362.967000px;}
.y18{bottom:367.863000px;}
.yc7{bottom:372.139500px;}
.y130{bottom:376.288500px;}
.y111{bottom:377.434500px;}
.y86{bottom:377.608500px;}
.y3c{bottom:377.671500px;}
.y55{bottom:378.561000px;}
.y6d{bottom:378.828000px;}
.ya2{bottom:380.899500px;}
.ye3{bottom:388.798500px;}
.y12f{bottom:389.739000px;}
.yc6{bottom:390.072000px;}
.y110{bottom:395.367000px;}
.y85{bottom:395.541000px;}
.y3b{bottom:395.604000px;}
.yf7{bottom:396.429000px;}
.ya1{bottom:398.833500px;}
.y17{bottom:404.251500px;}
.yc5{bottom:408.004500px;}
.y10f{bottom:413.301000px;}
.y84{bottom:413.473500px;}
.y12e{bottom:415.143000px;}
.ya0{bottom:416.766000px;}
.y3a{bottom:423.624000px;}
.yc4{bottom:425.938500px;}
.y12d{bottom:428.593500px;}
.y10e{bottom:431.233500px;}
.y9f{bottom:434.698500px;}
.y54{bottom:437.629500px;}
.y6c{bottom:437.896500px;}
.ye2{bottom:441.165560px;}
.y83{bottom:441.493500px;}
.yc3{bottom:443.871000px;}
.yf6{bottom:448.161185px;}
.y10d{bottom:449.166000px;}
.y39{bottom:451.644000px;}
.y12c{bottom:453.997500px;}
.y16{bottom:461.392500px;}
.yc2{bottom:461.803500px;}
.y9e{bottom:462.718500px;}
.y12b{bottom:467.448000px;}
.ye1{bottom:472.580072px;}
.yf5{bottom:477.669831px;}
.y15{bottom:479.325000px;}
.yc1{bottom:479.736000px;}
.y10c{bottom:482.565000px;}
.y38{bottom:488.032500px;}
.y53{bottom:489.360717px;}
.y6b{bottom:489.628685px;}
.y12a{bottom:492.852000px;}
.yc0{bottom:497.668500px;}
.y82{bottom:500.562000px;}
.ye0{bottom:503.994584px;}
.y129{bottom:506.301000px;}
.y14{bottom:507.733500px;}
.yf4{bottom:508.163333px;}
.ybf{bottom:515.602500px;}
.y52{bottom:518.869363px;}
.y6a{bottom:519.137331px;}
.y9d{bottom:521.787000px;}
.y13{bottom:525.666000px;}
.y128{bottom:531.706500px;}
.ybe{bottom:533.535000px;}
.ydf{bottom:535.409096px;}
.y37{bottom:538.468500px;}
.y12{bottom:543.598500px;}
.y127{bottom:545.155500px;}
.yf3{bottom:547.992000px;}
.y51{bottom:549.362864px;}
.y69{bottom:549.630833px;}
.ybd{bottom:551.467500px;}
.y10b{bottom:552.282000px;}
.y81{bottom:552.293217px;}
.y36{bottom:556.401000px;}
.y11{bottom:561.531000px;}
.yf2{bottom:565.924500px;}
.yde{bottom:566.823608px;}
.ybc{bottom:569.400000px;}
.y126{bottom:570.561000px;}
.y9c{bottom:573.519185px;}
.y35{bottom:574.333500px;}
.y10{bottom:579.463500px;}
.y80{bottom:581.804331px;}
.y125{bottom:584.010000px;}
.ybb{bottom:587.332500px;}
.y50{bottom:589.192500px;}
.y68{bottom:589.458000px;}
.y34{bottom:592.266000px;}
.yf{bottom:597.397500px;}
.y124{bottom:597.460500px;}
.ydd{bottom:598.238121px;}
.yf1{bottom:601.143000px;}
.y9b{bottom:603.027831px;}
.y10a{bottom:604.013217px;}
.yba{bottom:605.265000px;}
.y4f{bottom:607.125000px;}
.y67{bottom:607.392000px;}
.y33{bottom:610.200000px;}
.y7f{bottom:612.295364px;}
.ye{bottom:615.330000px;}
.y123{bottom:622.864500px;}
.yb9{bottom:623.199000px;}
.y32{bottom:628.132500px;}
.ydc{bottom:629.655260px;}
.yd{bottom:633.262500px;}
.y9a{bottom:633.521333px;}
.y109{bottom:633.521863px;}
.y122{bottom:636.313500px;}
.yb8{bottom:641.131500px;}
.y4e{bottom:642.343500px;}
.y66{bottom:642.610500px;}
.y31{bottom:646.065000px;}
.yc{bottom:651.195000px;}
.y7e{bottom:652.125000px;}
.yf0{bottom:653.017425px;}
.yb7{bottom:659.064000px;}
.ydb{bottom:661.069773px;}
.y121{bottom:661.719000px;}
.y108{bottom:664.015364px;}
.yb{bottom:669.127500px;}
.y7d{bottom:670.057500px;}
.y99{bottom:673.350000px;}
.y30{bottom:674.085000px;}
.y120{bottom:675.168000px;}
.yb6{bottom:676.996500px;}
.yef{bottom:682.954479px;}
.ya{bottom:687.060000px;}
.y98{bottom:691.282500px;}
.yda{bottom:692.484285px;}
.y4d{bottom:694.809859px;}
.y65{bottom:694.835045px;}
.yb5{bottom:694.929000px;}
.y11f{bottom:700.573500px;}
.y107{bottom:703.845000px;}
.y9{bottom:704.994000px;}
.y7c{bottom:708.340500px;}
.yb4{bottom:712.861500px;}
.yee{bottom:712.891532px;}
.y11e{bottom:714.022500px;}
.y2f{bottom:716.862000px;}
.y106{bottom:721.777500px;}
.y8{bottom:722.926500px;}
.yd9{bottom:723.898797px;}
.y64{bottom:725.821867px;}
.y4c{bottom:726.521154px;}
.y11d{bottom:727.473000px;}
.y97{bottom:729.564000px;}
.yb3{bottom:730.795500px;}
.y2e{bottom:734.794500px;}
.y7{bottom:740.859000px;}
.yed{bottom:742.828585px;}
.yb2{bottom:748.728000px;}
.y2d{bottom:752.727000px;}
.yd8{bottom:755.313309px;}
.y63{bottom:756.808689px;}
.y11c{bottom:757.882500px;}
.y4b{bottom:758.232449px;}
.y105{bottom:760.059000px;}
.y7b{bottom:760.509160px;}
.y6{bottom:767.758500px;}
.y2c{bottom:770.659500px;}
.yec{bottom:773.764793px;}
.y96{bottom:781.847434px;}
.yd7{bottom:786.727821px;}
.y2b{bottom:788.592000px;}
.y62{bottom:788.829702px;}
.y4a{bottom:789.943744px;}
.y7a{bottom:792.353032px;}
.yb1{bottom:795.807000px;}
.y11b{bottom:800.250000px;}
.yeb{bottom:803.701846px;}
.y2a{bottom:806.526000px;}
.y104{bottom:812.397242px;}
.y95{bottom:813.009636px;}
.yd6{bottom:818.144961px;}
.y61{bottom:819.816524px;}
.y49{bottom:822.713409px;}
.y79{bottom:823.170930px;}
.y29{bottom:824.458500px;}
.yea{bottom:834.638054px;}
.y28{bottom:842.391000px;}
.y103{bottom:844.765129px;}
.y94{bottom:845.211881px;}
.yb0{bottom:848.264296px;}
.yd5{bottom:849.559473px;}
.y11a{bottom:850.684500px;}
.y60{bottom:851.837536px;}
.y48{bottom:854.424704px;}
.y78{bottom:855.017380px;}
.y27{bottom:860.323500px;}
.y5{bottom:867.796500px;}
.y102{bottom:876.092778px;}
.y93{bottom:876.374083px;}
.y26{bottom:878.256000px;}
.yaf{bottom:879.950127px;}
.yd4{bottom:880.973985px;}
.y119{bottom:884.085000px;}
.y47{bottom:887.194368px;}
.y4{bottom:890.959500px;}
.y13f{bottom:894.694500px;}
.y25{bottom:896.188500px;}
.y13e{bottom:908.145000px;}
.y101{bottom:908.460664px;}
.y92{bottom:908.573721px;}
.yae{bottom:912.693477px;}
.yd3{bottom:913.436962px;}
.y3{bottom:914.122500px;}
.y24{bottom:932.055000px;}
.y13d{bottom:933.549000px;}
.y118{bottom:934.521000px;}
.yad{bottom:944.379308px;}
.yd2{bottom:944.851474px;}
.y13c{bottom:946.998000px;}
.y23{bottom:949.987500px;}
.y117{bottom:952.453500px;}
.y2{bottom:958.954500px;}
.y22{bottom:967.920000px;}
.y13b{bottom:972.403500px;}
.yac{bottom:977.122658px;}
.yd1{bottom:977.311823px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h19{height:28.787846px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hb{height:41.484266px;}
.he{height:41.961802px;}
.h12{height:41.967802px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.hc{height:52.046387px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h16{height:59.591013px;}
.hf{height:67.673841px;}
.h17{height:68.656332px;}
.h11{height:70.676422px;}
.h10{height:71.063825px;}
.h13{height:71.466034px;}
.h18{height:71.839454px;}
.h15{height:72.044671px;}
.h14{height:72.666902px;}
.hd{height:72.725300px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x18{left:206.066188px;}
.xc{left:207.259515px;}
.x7{left:214.045500px;}
.x8{left:216.942000px;}
.x1{left:222.888000px;}
.x1d{left:233.020500px;}
.x1a{left:235.817708px;}
.x17{left:250.414282px;}
.xf{left:254.712405px;}
.xa{left:255.976340px;}
.x19{left:257.761500px;}
.x12{left:259.428000px;}
.xe{left:261.855000px;}
.x2{left:266.614500px;}
.x16{left:274.665000px;}
.x11{left:276.333000px;}
.xd{left:278.760000px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x3{left:405.975000px;}
.x1c{left:415.441343px;}
.x10{left:417.380909px;}
.x14{left:431.090551px;}
.x13{left:447.512421px;}
.x15{left:449.484892px;}
.xb{left:451.360888px;}
.x9{left:454.699500px;}
.x1b{left:472.807487px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls31{letter-spacing:3.818762pt;}
.ls30{letter-spacing:3.848566pt;}
.lsd{letter-spacing:4.336732pt;}
.lsc{letter-spacing:4.370579pt;}
.ls36{letter-spacing:4.380079pt;}
.ls33{letter-spacing:4.399693pt;}
.ls32{letter-spacing:4.433524pt;}
.ls34{letter-spacing:4.435164pt;}
.ls35{letter-spacing:4.437122pt;}
.ls19{letter-spacing:4.508956pt;}
.ls16{letter-spacing:4.529146pt;}
.ls12{letter-spacing:4.533671pt;}
.lsf{letter-spacing:4.553972pt;}
.ls1f{letter-spacing:4.559331pt;}
.ls15{letter-spacing:4.563972pt;}
.ls17{letter-spacing:4.565660pt;}
.ls18{letter-spacing:4.567677pt;}
.ls1c{letter-spacing:4.579747pt;}
.ls3c{letter-spacing:4.583154pt;}
.lse{letter-spacing:4.588989pt;}
.ls10{letter-spacing:4.590686pt;}
.ls11{letter-spacing:4.592714pt;}
.ls2e{letter-spacing:4.596246pt;}
.ls39{letter-spacing:4.603677pt;}
.ls1b{letter-spacing:4.614962pt;}
.ls1d{letter-spacing:4.616669pt;}
.ls2b{letter-spacing:4.616828pt;}
.ls1e{letter-spacing:4.618708pt;}
.ls38{letter-spacing:4.639076pt;}
.ls7{letter-spacing:4.639668pt;}
.ls3a{letter-spacing:4.640792pt;}
.ls3b{letter-spacing:4.642841pt;}
.ls25{letter-spacing:4.645366pt;}
.ls2a{letter-spacing:4.652328pt;}
.ls2c{letter-spacing:4.654049pt;}
.ls2d{letter-spacing:4.656104pt;}
.ls22{letter-spacing:4.656702pt;}
.ls4{letter-spacing:4.660444pt;}
.ls24{letter-spacing:4.686894pt;}
.ls21{letter-spacing:4.692508pt;}
.ls23{letter-spacing:4.694244pt;}
.ls3{letter-spacing:4.696280pt;}
.ls5{letter-spacing:4.698017pt;}
.ls6{letter-spacing:4.700092pt;}
.ls28{letter-spacing:8.811145pt;}
.ls29{letter-spacing:10.053812pt;}
.ls27{letter-spacing:10.094400pt;}
.lsa{letter-spacing:11.760479pt;}
.ls14{letter-spacing:11.765812pt;}
.lsb{letter-spacing:13.243145pt;}
.ls9{letter-spacing:13.283733pt;}
.ls37{letter-spacing:26.544105pt;}
.ls1a{letter-spacing:27.315953pt;}
.ls13{letter-spacing:27.474897pt;}
.ls20{letter-spacing:27.630400pt;}
.ls3d{letter-spacing:27.765457pt;}
.ls2f{letter-spacing:27.854115pt;}
.ls26{letter-spacing:28.094683pt;}
.ls8{letter-spacing:28.117261pt;}
.ws3c{word-spacing:-28.188101pt;}
.ws88{word-spacing:-28.165466pt;}
.ws9a{word-spacing:-27.924291pt;}
.wsb4{word-spacing:-27.844750pt;}
.ws77{word-spacing:-27.700013pt;}
.ws52{word-spacing:-27.544118pt;}
.ws65{word-spacing:-27.393962pt;}
.wsa5{word-spacing:-26.610981pt;}
.wsba{word-spacing:-19.128267pt;}
.ws41{word-spacing:-13.283467pt;}
.ws39{word-spacing:-4.698017pt;}
.ws84{word-spacing:-4.694244pt;}
.ws95{word-spacing:-4.655409pt;}
.ws97{word-spacing:-4.654049pt;}
.wsb2{word-spacing:-4.650585pt;}
.wsae{word-spacing:-4.641269pt;}
.wsb0{word-spacing:-4.640792pt;}
.ws72{word-spacing:-4.617820pt;}
.ws74{word-spacing:-4.616669pt;}
.ws4d{word-spacing:-4.590780pt;}
.ws4f{word-spacing:-4.590686pt;}
.ws63{word-spacing:-4.573189pt;}
.ws61{word-spacing:-4.565660pt;}
.ws5f{word-spacing:-4.564023pt;}
.wsa2{word-spacing:-4.435164pt;}
.ws2a{word-spacing:-3.188032pt;}
.ws15{word-spacing:-2.922363pt;}
.ws7a{word-spacing:-2.869229pt;}
.ws12{word-spacing:-2.762961pt;}
.ws93{word-spacing:-2.444158pt;}
.ws47{word-spacing:-2.337890pt;}
.ws7e{word-spacing:-2.178489pt;}
.wsc2{word-spacing:-2.120035pt;}
.wsc4{word-spacing:-1.934067pt;}
.ws6{word-spacing:-1.859685pt;}
.ws35{word-spacing:-1.806551pt;}
.ws6f{word-spacing:-1.700284pt;}
.wsa9{word-spacing:-1.594016pt;}
.ws2e{word-spacing:-1.487748pt;}
.wsb{word-spacing:-1.434614pt;}
.ws24{word-spacing:-1.275213pt;}
.ws8b{word-spacing:-1.222079pt;}
.ws22{word-spacing:-1.115811pt;}
.ws4{word-spacing:-1.062677pt;}
.ws91{word-spacing:-0.903276pt;}
.wsbd{word-spacing:-0.706678pt;}
.ws23{word-spacing:-0.690740pt;}
.wsb8{word-spacing:-0.637606pt;}
.wsbb{word-spacing:-0.595098pt;}
.ws31{word-spacing:-0.584473pt;}
.ws18{word-spacing:-0.371937pt;}
.ws90{word-spacing:-0.318803pt;}
.wsca{word-spacing:-0.297549pt;}
.ws9{word-spacing:-0.212535pt;}
.ws92{word-spacing:-0.159402pt;}
.ws28{word-spacing:-0.053134pt;}
.ws3a{word-spacing:-0.004093pt;}
.ws85{word-spacing:-0.004090pt;}
.ws98{word-spacing:-0.004055pt;}
.wsb1{word-spacing:-0.004043pt;}
.ws75{word-spacing:-0.004022pt;}
.ws50{word-spacing:-0.004000pt;}
.ws62{word-spacing:-0.003978pt;}
.wsa3{word-spacing:-0.003864pt;}
.ws40{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.011730pt;}
.ws5e{word-spacing:0.012075pt;}
.ws4c{word-spacing:0.012141pt;}
.ws71{word-spacing:0.012210pt;}
.wsad{word-spacing:0.012273pt;}
.ws94{word-spacing:0.012309pt;}
.ws81{word-spacing:0.012415pt;}
.ws36{word-spacing:0.012425pt;}
.ws7f{word-spacing:0.106268pt;}
.ws7{word-spacing:0.159402pt;}
.wscc{word-spacing:0.297549pt;}
.ws46{word-spacing:0.318803pt;}
.ws14{word-spacing:0.340058pt;}
.wsac{word-spacing:0.371937pt;}
.ws1d{word-spacing:0.425071pt;}
.wsb9{word-spacing:0.478205pt;}
.wsc{word-spacing:0.531339pt;}
.wsbc{word-spacing:0.632291pt;}
.wsc5{word-spacing:0.669485pt;}
.wsc0{word-spacing:0.743872pt;}
.ws27{word-spacing:0.797008pt;}
.ws2f{word-spacing:0.903276pt;}
.ws11{word-spacing:0.956410pt;}
.ws4a{word-spacing:1.009543pt;}
.ws5d{word-spacing:1.062677pt;}
.wsab{word-spacing:1.168945pt;}
.ws3{word-spacing:1.328347pt;}
.ws57{word-spacing:1.381481pt;}
.ws5{word-spacing:1.434614pt;}
.wsbf{word-spacing:1.487744pt;}
.ws26{word-spacing:1.487748pt;}
.ws32{word-spacing:1.540882pt;}
.ws43{word-spacing:1.647150pt;}
.ws5a{word-spacing:1.700284pt;}
.ws2b{word-spacing:1.753418pt;}
.ws33{word-spacing:1.912819pt;}
.wscb{word-spacing:1.934067pt;}
.ws5c{word-spacing:1.965953pt;}
.ws6e{word-spacing:2.019087pt;}
.ws16{word-spacing:2.072221pt;}
.ws9d{word-spacing:2.178489pt;}
.ws70{word-spacing:2.337890pt;}
.wsd{word-spacing:2.391024pt;}
.ws58{word-spacing:2.444158pt;}
.ws8a{word-spacing:2.497292pt;}
.ws59{word-spacing:2.550426pt;}
.wsc9{word-spacing:2.752326pt;}
.ws20{word-spacing:2.869229pt;}
.ws6c{word-spacing:2.922363pt;}
.wsc7{word-spacing:2.938294pt;}
.wsa8{word-spacing:3.081764pt;}
.wsc3{word-spacing:3.124262pt;}
.ws1a{word-spacing:3.347434pt;}
.wsa{word-spacing:3.400567pt;}
.wsc6{word-spacing:3.496198pt;}
.ws25{word-spacing:3.506835pt;}
.ws5b{word-spacing:3.666237pt;}
.ws80{word-spacing:3.719371pt;}
.ws48{word-spacing:3.772505pt;}
.ws1f{word-spacing:3.825638pt;}
.ws2{word-spacing:4.091308pt;}
.ws7d{word-spacing:4.144442pt;}
.wsc8{word-spacing:4.165683pt;}
.ws4b{word-spacing:4.250709pt;}
.ws17{word-spacing:4.303843pt;}
.wsa0{word-spacing:4.437514pt;}
.ws55{word-spacing:4.463245pt;}
.wsbe{word-spacing:4.686394pt;}
.ws86{word-spacing:4.690556pt;}
.ws37{word-spacing:4.697408pt;}
.ws82{word-spacing:4.699980pt;}
.ws34{word-spacing:4.888316pt;}
.ws9e{word-spacing:4.941450pt;}
.ws8f{word-spacing:4.994583pt;}
.ws30{word-spacing:5.260253pt;}
.ws68{word-spacing:5.313387pt;}
.wsc1{word-spacing:5.393072pt;}
.ws6a{word-spacing:5.419654pt;}
.ws1b{word-spacing:5.791591pt;}
.ws19{word-spacing:5.844725pt;}
.ws2c{word-spacing:5.897859pt;}
.ws45{word-spacing:5.950993pt;}
.ws8e{word-spacing:6.004127pt;}
.ws1c{word-spacing:6.163529pt;}
.ws21{word-spacing:6.216662pt;}
.ws7c{word-spacing:6.322930pt;}
.ws2d{word-spacing:6.429198pt;}
.ws44{word-spacing:6.694867pt;}
.ws69{word-spacing:6.748001pt;}
.ws8d{word-spacing:6.854269pt;}
.ws1e{word-spacing:7.013670pt;}
.ws7b{word-spacing:7.226206pt;}
.ws3f{word-spacing:7.279340pt;}
.ws56{word-spacing:7.385607pt;}
.ws6d{word-spacing:7.598143pt;}
.ws8c{word-spacing:7.916946pt;}
.wsa4{word-spacing:8.799387pt;}
.wsa1{word-spacing:8.815377pt;}
.ws64{word-spacing:9.058293pt;}
.ws60{word-spacing:9.074753pt;}
.ws51{word-spacing:9.107945pt;}
.ws4e{word-spacing:9.124495pt;}
.ws76{word-spacing:9.159494pt;}
.ws73{word-spacing:9.176138pt;}
.wsb3{word-spacing:9.207354pt;}
.wsaf{word-spacing:9.224085pt;}
.ws99{word-spacing:9.233655pt;}
.ws96{word-spacing:9.250435pt;}
.ws87{word-spacing:9.313404pt;}
.ws3b{word-spacing:9.320889pt;}
.ws83{word-spacing:9.320904pt;}
.ws38{word-spacing:9.337826pt;}
.ws6b{word-spacing:9.564096pt;}
.ws13{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws3e{word-spacing:14.908919pt;}
.ws10{word-spacing:15.940267pt;}
.wsb7{word-spacing:17.340414pt;}
.ws29{word-spacing:17.943081pt;}
.ws49{word-spacing:17.948414pt;}
.ws8{word-spacing:18.135081pt;}
.wsf{word-spacing:19.128267pt;}
.wsaa{word-spacing:21.479081pt;}
.wse{word-spacing:32.892143pt;}
.ws9c{word-spacing:73.141424pt;}
.wsa6{word-spacing:84.268107pt;}
.ws66{word-spacing:86.747546pt;}
.ws53{word-spacing:87.223041pt;}
.ws78{word-spacing:87.716708pt;}
.wsb5{word-spacing:88.175041pt;}
.ws9b{word-spacing:88.426922pt;}
.ws89{word-spacing:89.190641pt;}
.ws3d{word-spacing:89.262319pt;}
.wsa7{word-spacing:444.076793pt;}
.ws42{word-spacing:531.423262pt;}
.ws79{word-spacing:618.857165pt;}
.ws54{word-spacing:769.505780pt;}
.wsb6{word-spacing:837.529356pt;}
.ws67{word-spacing:910.361798pt;}
._2f{margin-left:-10.421222pt;}
._1d{margin-left:-8.084258pt;}
._3{margin-left:-5.961606pt;}
._2c{margin-left:-5.068967pt;}
._4{margin-left:-4.038174pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._13{width:2.931562pt;}
._14{width:4.698017pt;}
._49{width:9.744649pt;}
._32{width:11.848852pt;}
._7{width:12.752127pt;}
._9{width:13.937259pt;}
._47{width:14.983750pt;}
._5{width:16.099562pt;}
._b{width:17.852979pt;}
._2{width:18.968790pt;}
._8{width:20.722208pt;}
._c{width:22.050555pt;}
._12{width:23.198251pt;}
._4a{width:24.770863pt;}
._6{width:26.035595pt;}
._2d{width:27.055751pt;}
._e{width:27.948414pt;}
._48{width:29.685653pt;}
._f{width:31.880533pt;}
._27{width:33.240551pt;}
._11{width:34.218210pt;}
._d{width:36.959921pt;}
._10{width:38.256533pt;}
._28{width:39.191544pt;}
._26{width:45.323188pt;}
._43{width:131.014731pt;}
._40{width:143.433189pt;}
._21{width:148.370984pt;}
._46{width:149.298160pt;}
._3e{width:150.682610pt;}
._17{width:151.839903pt;}
._35{width:157.493002pt;}
._15{width:164.336627pt;}
._42{width:165.520304pt;}
._24{width:170.390443pt;}
._1f{width:171.324416pt;}
._29{width:172.294081pt;}
._36{width:173.495188pt;}
._1a{width:174.672264pt;}
._1c{width:175.976590pt;}
._16{width:178.513519pt;}
._3a{width:181.151049pt;}
._3b{width:184.021078pt;}
._2a{width:186.698088pt;}
._39{width:189.140532pt;}
._34{width:196.959333pt;}
._2e{width:200.725886pt;}
._38{width:204.227389pt;}
._3f{width:207.291321pt;}
._18{width:221.652432pt;}
._3c{width:227.497632pt;}
._19{width:230.755466pt;}
._1e{width:231.737848pt;}
._30{width:234.280590pt;}
._25{width:240.518986pt;}
._1b{width:249.077731pt;}
._37{width:251.225539pt;}
._23{width:253.302835pt;}
._20{width:264.790790pt;}
._31{width:266.445306pt;}
._33{width:274.495781pt;}
._3d{width:297.766024pt;}
._2b{width:308.301145pt;}
._22{width:310.697654pt;}
._44{width:331.087134pt;}
._41{width:338.449506pt;}
._45{width:360.625323pt;}
._a{width:1019.875243pt;}
.fs5{font-size:31.880533pt;}
.fs1a{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs15{font-size:61.592933pt;}
.fs4{font-size:63.761067pt;}
.fs9{font-size:69.947298pt;}
.fs17{font-size:70.962795pt;}
.fsd{font-size:73.050749pt;}
.fsb{font-size:73.451166pt;}
.fsf{font-size:73.866887pt;}
.fs19{font-size:74.252852pt;}
.fs13{font-size:74.464963pt;}
.fs11{font-size:75.108097pt;}
.fs7{font-size:75.168457pt;}
.fs0{font-size:76.513067pt;}
.fs14{font-size:76.990973pt;}
.fs8{font-size:87.433903pt;}
.fs16{font-size:88.703271pt;}
.fsc{font-size:91.313207pt;}
.fsa{font-size:91.813728pt;}
.fse{font-size:92.333377pt;}
.fs18{font-size:92.815832pt;}
.fs12{font-size:93.080970pt;}
.fs10{font-size:93.884886pt;}
.fs6{font-size:93.960336pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:119.153333pt;}
.yd0{bottom:159.004000pt;}
.ye9{bottom:159.865333pt;}
.y91{bottom:160.309333pt;}
.y100{bottom:163.386667pt;}
.yab{bottom:166.722667pt;}
.y5f{bottom:168.130667pt;}
.y77{bottom:168.366667pt;}
.y116{bottom:170.516000pt;}
.y20{bottom:171.688000pt;}
.y13a{bottom:172.420000pt;}
.ycf{bottom:174.944000pt;}
.ye8{bottom:175.805333pt;}
.y90{bottom:176.249333pt;}
.y46{bottom:176.305333pt;}
.yff{bottom:179.328000pt;}
.yaa{bottom:182.662667pt;}
.y5e{bottom:184.070667pt;}
.y76{bottom:184.306667pt;}
.y139{bottom:184.376000pt;}
.y115{bottom:186.457333pt;}
.y1f{bottom:188.165333pt;}
.yce{bottom:190.884000pt;}
.y8f{bottom:192.189333pt;}
.y45{bottom:192.245333pt;}
.yfe{bottom:195.268000pt;}
.y1e{bottom:197.386667pt;}
.ya9{bottom:198.602667pt;}
.y5d{bottom:200.010667pt;}
.y75{bottom:200.246667pt;}
.ycd{bottom:206.824000pt;}
.y138{bottom:206.957333pt;}
.y8e{bottom:208.130667pt;}
.y44{bottom:208.186667pt;}
.yfd{bottom:211.208000pt;}
.y1d{bottom:213.864000pt;}
.y5c{bottom:215.950667pt;}
.y114{bottom:216.145333pt;}
.y74{bottom:216.188000pt;}
.ye7{bottom:217.957333pt;}
.y137{bottom:218.913333pt;}
.ycc{bottom:222.764000pt;}
.ya8{bottom:223.509333pt;}
.y8d{bottom:224.070667pt;}
.y43{bottom:224.126667pt;}
.yfc{bottom:227.148000pt;}
.y5b{bottom:231.890667pt;}
.y73{bottom:232.128000pt;}
.ycb{bottom:238.704000pt;}
.y8c{bottom:240.010667pt;}
.y42{bottom:240.066667pt;}
.y136{bottom:241.494667pt;}
.yfb{bottom:243.088000pt;}
.y5a{bottom:247.830667pt;}
.y72{bottom:248.068000pt;}
.y135{bottom:253.449333pt;}
.y1c{bottom:254.262667pt;}
.yca{bottom:254.645333pt;}
.y8b{bottom:255.950667pt;}
.y41{bottom:256.006667pt;}
.ya7{bottom:258.876000pt;}
.yfa{bottom:259.029333pt;}
.y113{bottom:260.977333pt;}
.ye6{bottom:262.895541pt;}
.y59{bottom:263.772000pt;}
.y71{bottom:264.008000pt;}
.y134{bottom:265.405333pt;}
.y1b{bottom:270.202667pt;}
.y8a{bottom:271.890667pt;}
.y40{bottom:271.946667pt;}
.ya6{bottom:274.817333pt;}
.yf9{bottom:274.969333pt;}
.yc9{bottom:279.552000pt;}
.y58{bottom:279.712000pt;}
.y70{bottom:279.948000pt;}
.ye5{bottom:285.994533pt;}
.y1a{bottom:286.142667pt;}
.y89{bottom:287.830667pt;}
.y3f{bottom:287.886667pt;}
.y133{bottom:287.986667pt;}
.y112{bottom:290.665333pt;}
.ya5{bottom:290.757333pt;}
.y57{bottom:295.652000pt;}
.y6f{bottom:295.888000pt;}
.yf8{bottom:299.876000pt;}
.y132{bottom:299.942667pt;}
.y19{bottom:302.082667pt;}
.y88{bottom:303.772000pt;}
.y3e{bottom:303.828000pt;}
.ya4{bottom:306.697333pt;}
.ye4{bottom:309.860529pt;}
.y56{bottom:311.592000pt;}
.y6e{bottom:311.829333pt;}
.y131{bottom:311.897333pt;}
.yc8{bottom:314.850667pt;}
.y87{bottom:319.712000pt;}
.y3d{bottom:319.768000pt;}
.ya3{bottom:322.637333pt;}
.y18{bottom:326.989333pt;}
.yc7{bottom:330.790667pt;}
.y130{bottom:334.478667pt;}
.y111{bottom:335.497333pt;}
.y86{bottom:335.652000pt;}
.y3c{bottom:335.708000pt;}
.y55{bottom:336.498667pt;}
.y6d{bottom:336.736000pt;}
.ya2{bottom:338.577333pt;}
.ye3{bottom:345.598667pt;}
.y12f{bottom:346.434667pt;}
.yc6{bottom:346.730667pt;}
.y110{bottom:351.437333pt;}
.y85{bottom:351.592000pt;}
.y3b{bottom:351.648000pt;}
.yf7{bottom:352.381333pt;}
.ya1{bottom:354.518667pt;}
.y17{bottom:359.334667pt;}
.yc5{bottom:362.670667pt;}
.y10f{bottom:367.378667pt;}
.y84{bottom:367.532000pt;}
.y12e{bottom:369.016000pt;}
.ya0{bottom:370.458667pt;}
.y3a{bottom:376.554667pt;}
.yc4{bottom:378.612000pt;}
.y12d{bottom:380.972000pt;}
.y10e{bottom:383.318667pt;}
.y9f{bottom:386.398667pt;}
.y54{bottom:389.004000pt;}
.y6c{bottom:389.241333pt;}
.ye2{bottom:392.147164pt;}
.y83{bottom:392.438667pt;}
.yc3{bottom:394.552000pt;}
.yf6{bottom:398.365498pt;}
.y10d{bottom:399.258667pt;}
.y39{bottom:401.461333pt;}
.y12c{bottom:403.553333pt;}
.y16{bottom:410.126667pt;}
.yc2{bottom:410.492000pt;}
.y9e{bottom:411.305333pt;}
.y12b{bottom:415.509333pt;}
.ye1{bottom:420.071175pt;}
.yf5{bottom:424.595405pt;}
.y15{bottom:426.066667pt;}
.yc1{bottom:426.432000pt;}
.y10c{bottom:428.946667pt;}
.y38{bottom:433.806667pt;}
.y53{bottom:434.987304pt;}
.y6b{bottom:435.225498pt;}
.y12a{bottom:438.090667pt;}
.yc0{bottom:442.372000pt;}
.y82{bottom:444.944000pt;}
.ye0{bottom:447.995186pt;}
.y129{bottom:450.045333pt;}
.y14{bottom:451.318667pt;}
.yf4{bottom:451.700740pt;}
.ybf{bottom:458.313333pt;}
.y52{bottom:461.217211pt;}
.y6a{bottom:461.455405pt;}
.y9d{bottom:463.810667pt;}
.y13{bottom:467.258667pt;}
.y128{bottom:472.628000pt;}
.ybe{bottom:474.253333pt;}
.ydf{bottom:475.919197pt;}
.y37{bottom:478.638667pt;}
.y12{bottom:483.198667pt;}
.y127{bottom:484.582667pt;}
.yf3{bottom:487.104000pt;}
.y51{bottom:488.322546pt;}
.y69{bottom:488.560740pt;}
.ybd{bottom:490.193333pt;}
.y10b{bottom:490.917333pt;}
.y81{bottom:490.927304pt;}
.y36{bottom:494.578667pt;}
.y11{bottom:499.138667pt;}
.yf2{bottom:503.044000pt;}
.yde{bottom:503.843208pt;}
.ybc{bottom:506.133333pt;}
.y126{bottom:507.165333pt;}
.y9c{bottom:509.794831pt;}
.y35{bottom:510.518667pt;}
.y10{bottom:515.078667pt;}
.y80{bottom:517.159405pt;}
.y125{bottom:519.120000pt;}
.ybb{bottom:522.073333pt;}
.y50{bottom:523.726667pt;}
.y68{bottom:523.962667pt;}
.y34{bottom:526.458667pt;}
.yf{bottom:531.020000pt;}
.y124{bottom:531.076000pt;}
.ydd{bottom:531.767218pt;}
.yf1{bottom:534.349333pt;}
.y9b{bottom:536.024739pt;}
.y10a{bottom:536.900637pt;}
.yba{bottom:538.013333pt;}
.y4f{bottom:539.666667pt;}
.y67{bottom:539.904000pt;}
.y33{bottom:542.400000pt;}
.y7f{bottom:544.262546pt;}
.ye{bottom:546.960000pt;}
.y123{bottom:553.657333pt;}
.yb9{bottom:553.954667pt;}
.y32{bottom:558.340000pt;}
.ydc{bottom:559.693565pt;}
.yd{bottom:562.900000pt;}
.y9a{bottom:563.130074pt;}
.y109{bottom:563.130545pt;}
.y122{bottom:565.612000pt;}
.yb8{bottom:569.894667pt;}
.y4e{bottom:570.972000pt;}
.y66{bottom:571.209333pt;}
.y31{bottom:574.280000pt;}
.yc{bottom:578.840000pt;}
.y7e{bottom:579.666667pt;}
.yf0{bottom:580.459933pt;}
.yb7{bottom:585.834667pt;}
.ydb{bottom:587.617576pt;}
.y121{bottom:588.194667pt;}
.y108{bottom:590.235879pt;}
.yb{bottom:594.780000pt;}
.y7d{bottom:595.606667pt;}
.y99{bottom:598.533333pt;}
.y30{bottom:599.186667pt;}
.y120{bottom:600.149333pt;}
.yb6{bottom:601.774667pt;}
.yef{bottom:607.070648pt;}
.ya{bottom:610.720000pt;}
.y98{bottom:614.473333pt;}
.yda{bottom:615.541586pt;}
.y4d{bottom:617.608764pt;}
.y65{bottom:617.631151pt;}
.yb5{bottom:617.714667pt;}
.y11f{bottom:622.732000pt;}
.y107{bottom:625.640000pt;}
.y9{bottom:626.661333pt;}
.y7c{bottom:629.636000pt;}
.yb4{bottom:633.654667pt;}
.yee{bottom:633.681362pt;}
.y11e{bottom:634.686667pt;}
.y2f{bottom:637.210667pt;}
.y106{bottom:641.580000pt;}
.y8{bottom:642.601333pt;}
.yd9{bottom:643.465597pt;}
.y64{bottom:645.174993pt;}
.y4c{bottom:645.796582pt;}
.y11d{bottom:646.642667pt;}
.y97{bottom:648.501333pt;}
.yb3{bottom:649.596000pt;}
.y2e{bottom:653.150667pt;}
.y7{bottom:658.541333pt;}
.yed{bottom:660.292076pt;}
.yb2{bottom:665.536000pt;}
.y2d{bottom:669.090667pt;}
.yd8{bottom:671.389608pt;}
.y63{bottom:672.718835pt;}
.y11c{bottom:673.673333pt;}
.y4b{bottom:673.984400pt;}
.y105{bottom:675.608000pt;}
.y7b{bottom:676.008142pt;}
.y6{bottom:682.452000pt;}
.y2c{bottom:685.030667pt;}
.yec{bottom:687.790927pt;}
.y96{bottom:694.975497pt;}
.yd7{bottom:699.313619pt;}
.y2b{bottom:700.970667pt;}
.y62{bottom:701.181957pt;}
.y4a{bottom:702.172217pt;}
.y7a{bottom:704.313806pt;}
.yb1{bottom:707.384000pt;}
.y11b{bottom:711.333333pt;}
.yeb{bottom:714.401641pt;}
.y2a{bottom:716.912000pt;}
.y104{bottom:722.130882pt;}
.y95{bottom:722.675232pt;}
.yd6{bottom:727.239965pt;}
.y61{bottom:728.725799pt;}
.y49{bottom:731.300808pt;}
.y79{bottom:731.707493pt;}
.y29{bottom:732.852000pt;}
.yea{bottom:741.900492pt;}
.y28{bottom:748.792000pt;}
.y103{bottom:750.902337pt;}
.y94{bottom:751.299450pt;}
.yb0{bottom:754.012707pt;}
.yd5{bottom:755.163976pt;}
.y11a{bottom:756.164000pt;}
.y60{bottom:757.188921pt;}
.y48{bottom:759.488626pt;}
.y78{bottom:760.015449pt;}
.y27{bottom:764.732000pt;}
.y5{bottom:771.374667pt;}
.y102{bottom:778.749136pt;}
.y93{bottom:778.999185pt;}
.y26{bottom:780.672000pt;}
.yaf{bottom:782.177890pt;}
.yd4{bottom:783.087987pt;}
.y119{bottom:785.853333pt;}
.y47{bottom:788.617216pt;}
.y4{bottom:791.964000pt;}
.y13f{bottom:795.284000pt;}
.y25{bottom:796.612000pt;}
.y13e{bottom:807.240000pt;}
.y101{bottom:807.520591pt;}
.y92{bottom:807.621086pt;}
.yae{bottom:811.283091pt;}
.yd3{bottom:811.943966pt;}
.y3{bottom:812.553333pt;}
.y24{bottom:828.493333pt;}
.y13d{bottom:829.821333pt;}
.y118{bottom:830.685333pt;}
.yad{bottom:839.448274pt;}
.yd2{bottom:839.867977pt;}
.y13c{bottom:841.776000pt;}
.y23{bottom:844.433333pt;}
.y117{bottom:846.625333pt;}
.y2{bottom:852.404000pt;}
.y22{bottom:860.373333pt;}
.y13b{bottom:864.358667pt;}
.yac{bottom:868.553474pt;}
.yd1{bottom:868.721620pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h19{height:25.589197pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hb{height:36.874903pt;}
.he{height:37.299379pt;}
.h12{height:37.304713pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.hc{height:46.263455pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h16{height:52.969789pt;}
.hf{height:60.154525pt;}
.h17{height:61.027850pt;}
.h11{height:62.823486pt;}
.h10{height:63.167845pt;}
.h13{height:63.525363pt;}
.h18{height:63.857293pt;}
.h15{height:64.039708pt;}
.h14{height:64.592801pt;}
.hd{height:64.644711pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x18{left:183.169945pt;}
.xc{left:184.230680pt;}
.x7{left:190.262667pt;}
.x8{left:192.837333pt;}
.x1{left:198.122667pt;}
.x1d{left:207.129333pt;}
.x1a{left:209.615741pt;}
.x17{left:222.590473pt;}
.xf{left:226.411027pt;}
.xa{left:227.534524pt;}
.x19{left:229.121333pt;}
.x12{left:230.602667pt;}
.xe{left:232.760000pt;}
.x2{left:236.990667pt;}
.x16{left:244.146667pt;}
.x11{left:245.629333pt;}
.xd{left:247.786667pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x3{left:360.866667pt;}
.x1c{left:369.281194pt;}
.x10{left:371.005253pt;}
.x14{left:383.191601pt;}
.x13{left:397.788818pt;}
.x15{left:399.542127pt;}
.xb{left:401.209679pt;}
.x9{left:404.177333pt;}
.x1b{left:420.273322pt;}
}




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