
    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_ca87e14ec34d7393673647bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_823e496cc7aa883fac331ee7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_88f01574fbe2a405d7ae8c73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_a875bea4404a48df751cd326.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_5f787d582a52c25ba542e063.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915000;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_a4fcb8314ada8b4f194ae0ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888000;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_9a1eca62824efbe65c66f42e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,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:-8.502457px;}
.v1{vertical-align:-2.379069px;}
.v2{vertical-align:-1.020964px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.032918px;}
.lsb{letter-spacing:-1.027538px;}
.lsd{letter-spacing:-1.022158px;}
.lse{letter-spacing:-1.000639px;}
.ls11{letter-spacing:-0.995259px;}
.lsc{letter-spacing:-0.984500px;}
.ls16{letter-spacing:-0.979120px;}
.lsf{letter-spacing:-0.973740px;}
.ls12{letter-spacing:-0.968360px;}
.ls15{letter-spacing:-0.946841px;}
.ls13{letter-spacing:-0.941462px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.003985px;}
.ls4{letter-spacing:0.004184px;}
.ls18{letter-spacing:0.167374px;}
.ls0{letter-spacing:0.304856px;}
.ls7{letter-spacing:3.351608px;}
.ls6{letter-spacing:3.690535px;}
.ls8{letter-spacing:4.029462px;}
.ls17{letter-spacing:5.393537px;}
.ls19{letter-spacing:5.968086px;}
.ls5{letter-spacing:6.820376px;}
.ls3{letter-spacing:7.163487px;}
.ls2{letter-spacing:9.498343px;}
.ls14{letter-spacing:22.223871px;}
.ls1{letter-spacing:27.526664px;}
.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;}
}
.ws4c{word-spacing:-22.277669px;}
.ws6{word-spacing:-13.031081px;}
.ws1d{word-spacing:-2.292985px;}
.ws20{word-spacing:-1.954059px;}
.wsa6{word-spacing:-0.047821px;}
.ws2d{word-spacing:-0.046027px;}
.ws16{word-spacing:-0.041843px;}
.ws7f{word-spacing:0.000000px;}
.wsa4{word-spacing:1.310301px;}
.ws107{word-spacing:4.275215px;}
.ws77{word-spacing:4.364204px;}
.wsdd{word-spacing:4.657104px;}
.wsee{word-spacing:4.791001px;}
.ws71{word-spacing:4.824475px;}
.wse8{word-spacing:4.991846px;}
.wsde{word-spacing:5.029505px;}
.ws6f{word-spacing:5.079716px;}
.wse5{word-spacing:5.129927px;}
.wse4{word-spacing:5.355878px;}
.ws7c{word-spacing:5.644594px;}
.wsdb{word-spacing:6.186747px;}
.ws37{word-spacing:6.718777px;}
.wsb6{word-spacing:6.766598px;}
.wscc{word-spacing:6.778553px;}
.wsa{word-spacing:6.802463px;}
.wsc{word-spacing:6.826374px;}
.ws3{word-spacing:6.886149px;}
.ws9{word-spacing:6.945925px;}
.ws8b{word-spacing:6.951902px;}
.ws11c{word-spacing:6.958458px;}
.ws8a{word-spacing:6.987768px;}
.ws5{word-spacing:6.999723px;}
.ws8{word-spacing:7.083409px;}
.ws53{word-spacing:7.095364px;}
.ws7{word-spacing:7.131229px;}
.wsb{word-spacing:7.196982px;}
.ws4{word-spacing:7.226870px;}
.ws124{word-spacing:7.234620px;}
.ws2{word-spacing:7.340444px;}
.wsd{word-spacing:7.388264px;}
.ws123{word-spacing:8.351823px;}
.ws75{word-spacing:10.025535px;}
.ws14{word-spacing:10.222196px;}
.wsf7{word-spacing:10.314250px;}
.ws125{word-spacing:10.531833px;}
.ws13{word-spacing:10.602966px;}
.ws33{word-spacing:10.782890px;}
.ws34{word-spacing:10.854022px;}
.wsf9{word-spacing:10.912602px;}
.ws113{word-spacing:11.003658px;}
.ws21{word-spacing:11.025578px;}
.ws73{word-spacing:11.092526px;}
.ws25{word-spacing:11.130185px;}
.ws1f{word-spacing:11.142738px;}
.wsfb{word-spacing:11.172028px;}
.ws24{word-spacing:11.230608px;}
.ws11b{word-spacing:11.268266px;}
.ws2b{word-spacing:11.276635px;}
.ws114{word-spacing:11.295367px;}
.ws23{word-spacing:11.305925px;}
.ws22{word-spacing:11.326846px;}
.ws110{word-spacing:11.333624px;}
.ws2c{word-spacing:11.448190px;}
.wsd1{word-spacing:11.609565px;}
.ws10f{word-spacing:11.716194px;}
.ws52{word-spacing:11.916213px;}
.wsa5{word-spacing:11.931389px;}
.ws6b{word-spacing:12.151149px;}
.wsd5{word-spacing:12.179822px;}
.wsfd{word-spacing:12.423127px;}
.ws12{word-spacing:12.464970px;}
.ws10{word-spacing:12.569577px;}
.ws102{word-spacing:12.573761px;}
.ws11{word-spacing:12.582130px;}
.ws5e{word-spacing:12.750079px;}
.ws9a{word-spacing:12.852294px;}
.ws79{word-spacing:12.912688px;}
.wsc0{word-spacing:12.981409px;}
.wsad{word-spacing:13.067486px;}
.ws9c{word-spacing:13.121283px;}
.ws78{word-spacing:13.142823px;}
.ws3d{word-spacing:13.153562px;}
.ws10c{word-spacing:13.184305px;}
.ws1e{word-spacing:13.193035px;}
.ws10e{word-spacing:13.198651px;}
.ws10d{word-spacing:13.284729px;}
.ws1c{word-spacing:13.326932px;}
.wsc7{word-spacing:13.600084px;}
.ws66{word-spacing:13.632363px;}
.wsbb{word-spacing:13.637742px;}
.wseb{word-spacing:13.686780px;}
.wsec{word-spacing:13.703517px;}
.wsf0{word-spacing:13.732807px;}
.ws7b{word-spacing:13.736991px;}
.ws122{word-spacing:13.770465px;}
.wse0{word-spacing:13.778834px;}
.ws103{word-spacing:13.808124px;}
.ws126{word-spacing:13.816493px;}
.ws101{word-spacing:13.829045px;}
.ws11f{word-spacing:13.833230px;}
.ws6e{word-spacing:13.845783px;}
.wsfe{word-spacing:13.866704px;}
.ws80{word-spacing:13.869073px;}
.ws72{word-spacing:13.870888px;}
.ws118{word-spacing:13.875072px;}
.wse1{word-spacing:13.879257px;}
.wsf6{word-spacing:13.891810px;}
.ws112{word-spacing:13.911187px;}
.wse6{word-spacing:13.912731px;}
.wsed{word-spacing:13.916915px;}
.wse7{word-spacing:13.946205px;}
.ws70{word-spacing:13.950390px;}
.ws11a{word-spacing:13.979679px;}
.wse2{word-spacing:14.000601px;}
.ws36{word-spacing:14.004785px;}
.ws117{word-spacing:14.008969px;}
.wse9{word-spacing:14.054997px;}
.ws76{word-spacing:14.067549px;}
.wsdf{word-spacing:14.134498px;}
.wsfa{word-spacing:14.147051px;}
.ws85{word-spacing:14.191860px;}
.ws59{word-spacing:14.197239px;}
.wsea{word-spacing:14.218183px;}
.ws35{word-spacing:14.230736px;}
.wsef{word-spacing:14.339528px;}
.ws32{word-spacing:14.460872px;}
.ws7d{word-spacing:14.494346px;}
.ws63{word-spacing:14.530786px;}
.ws31{word-spacing:14.544557px;}
.ws67{word-spacing:14.606103px;}
.wsb7{word-spacing:14.649141px;}
.ws69{word-spacing:14.735217px;}
.ws116{word-spacing:14.737034px;}
.ws58{word-spacing:14.837433px;}
.ws30{word-spacing:14.908590px;}
.ws121{word-spacing:14.983907px;}
.ws108{word-spacing:14.987164px;}
.wsa3{word-spacing:15.025726px;}
.ws49{word-spacing:15.165600px;}
.wsd3{word-spacing:15.214018px;}
.ws111{word-spacing:15.269309px;}
.ws5d{word-spacing:15.300094px;}
.ws6a{word-spacing:15.326993px;}
.ws74{word-spacing:15.373045px;}
.wsd7{word-spacing:15.558324px;}
.wsce{word-spacing:15.665919px;}
.ws115{word-spacing:15.694918px;}
.ws95{word-spacing:15.821933px;}
.ws46{word-spacing:15.961807px;}
.ws120{word-spacing:16.055082px;}
.ws86{word-spacing:16.064023px;}
.wse{word-spacing:16.239191px;}
.wsf{word-spacing:16.251744px;}
.wsf8{word-spacing:16.260112px;}
.wsd0{word-spacing:16.311493px;}
.ws119{word-spacing:16.339613px;}
.wsb9{word-spacing:16.349151px;}
.ws82{word-spacing:16.381430px;}
.ws29{word-spacing:16.456773px;}
.wsa8{word-spacing:16.521304px;}
.ws28{word-spacing:16.523722px;}
.wsd4{word-spacing:16.537444px;}
.ws5b{word-spacing:16.650419px;}
.ws2e{word-spacing:16.724567px;}
.wsc2{word-spacing:16.833332px;}
.ws2a{word-spacing:16.896123px;}
.ws61{word-spacing:16.914028px;}
.ws11d{word-spacing:16.925413px;}
.ws2f{word-spacing:16.971440px;}
.wsc5{word-spacing:17.027004px;}
.ws83{word-spacing:17.118460px;}
.ws10b{word-spacing:17.134336px;}
.wsc4{word-spacing:17.209916px;}
.ws10a{word-spacing:17.225196px;}
.wsc6{word-spacing:17.226056px;}
.wsa9{word-spacing:17.242195px;}
.wsf1{word-spacing:17.247575px;}
.ws8c{word-spacing:17.339031px;}
.ws27{word-spacing:17.448448px;}
.ws129{word-spacing:17.557239px;}
.ws84{word-spacing:17.570361px;}
.wsfc{word-spacing:17.632556px;}
.ws3a{word-spacing:17.710236px;}
.wsdc{word-spacing:17.726375px;}
.ws109{word-spacing:17.736883px;}
.wsb5{word-spacing:17.769413px;}
.wsf4{word-spacing:17.877009px;}
.ws89{word-spacing:17.893148px;}
.ws3f{word-spacing:17.903908px;}
.ws26{word-spacing:17.996588px;}
.wsf5{word-spacing:18.009141px;}
.wscb{word-spacing:18.022263px;}
.ws9d{word-spacing:18.076061px;}
.ws5a{word-spacing:18.119099px;}
.wsb0{word-spacing:18.135238px;}
.ws96{word-spacing:18.296632px;}
.ws88{word-spacing:18.302012px;}
.wsac{word-spacing:18.334290px;}
.ws91{word-spacing:18.388088px;}
.ws64{word-spacing:18.700115px;}
.ws51{word-spacing:18.829230px;}
.ws7a{word-spacing:18.850181px;}
.ws8e{word-spacing:18.915306px;}
.ws3e{word-spacing:18.952965px;}
.ws44{word-spacing:19.039041px;}
.ws56{word-spacing:19.297271px;}
.wsf3{word-spacing:19.345689px;}
.ws93{word-spacing:19.410246px;}
.ws3c{word-spacing:19.620058px;}
.ws17{word-spacing:19.703775px;}
.ws104{word-spacing:19.707959px;}
.ws15{word-spacing:19.787460px;}
.ws18{word-spacing:19.829303px;}
.ws68{word-spacing:19.975123px;}
.ws9f{word-spacing:20.093478px;}
.ws12d{word-spacing:20.172414px;}
.ws9e{word-spacing:20.179555px;}
.ws12a{word-spacing:20.398365px;}
.ws6c{word-spacing:20.666159px;}
.ws105{word-spacing:20.749845px;}
.wsc8{word-spacing:20.798229px;}
.wsc9{word-spacing:20.991902px;}
.wsb1{word-spacing:21.196333px;}
.ws39{word-spacing:21.346967px;}
.ws60{word-spacing:21.449183px;}
.wsae{word-spacing:21.599817px;}
.ws12b{word-spacing:21.678755px;}
.wsf2{word-spacing:21.960262px;}
.ws43{word-spacing:21.976401px;}
.ws57{word-spacing:21.987161px;}
.ws41{word-spacing:22.100136px;}
.ws42{word-spacing:22.363745px;}
.ws81{word-spacing:22.482101px;}
.wsa7{word-spacing:22.525139px;}
.ws54{word-spacing:22.702672px;}
.ws127{word-spacing:22.762483px;}
.wsb3{word-spacing:23.036218px;}
.ws11e{word-spacing:23.072120px;}
.ws62{word-spacing:23.122294px;}
.ws106{word-spacing:23.327361px;}
.ws100{word-spacing:23.477995px;}
.ws3b{word-spacing:23.853945px;}
.ws7e{word-spacing:23.901036px;}
.ws4b{word-spacing:23.929261px;}
.ws12c{word-spacing:23.929897px;}
.ws1b{word-spacing:24.063794px;}
.wsc3{word-spacing:24.090655px;}
.ws4a{word-spacing:24.106794px;}
.ws98{word-spacing:24.214390px;}
.ws19{word-spacing:24.231165px;}
.ws12e{word-spacing:24.264640px;}
.wsaa{word-spacing:24.332745px;}
.ws1a{word-spacing:24.436195px;}
.ws40{word-spacing:24.445720px;}
.ws99{word-spacing:24.456480px;}
.wsff{word-spacing:24.482222px;}
.wsbd{word-spacing:24.601734px;}
.wsab{word-spacing:25.091294px;}
.ws128{word-spacing:25.214471px;}
.wscd{word-spacing:25.252687px;}
.ws6d{word-spacing:25.340000px;}
.ws5f{word-spacing:25.414081px;}
.ws4d{word-spacing:26.565354px;}
.wsa2{word-spacing:26.672949px;}
.ws8d{word-spacing:26.737507px;}
.ws87{word-spacing:26.802064px;}
.wsca{word-spacing:27.958717px;}
.ws45{word-spacing:28.044793px;}
.wsd2{word-spacing:28.125490px;}
.wsd8{word-spacing:28.340681px;}
.ws38{word-spacing:28.448277px;}
.wsa0{word-spacing:28.636569px;}
.ws4f{word-spacing:28.787203px;}
.ws4e{word-spacing:28.824861px;}
.ws8f{word-spacing:28.932457px;}
.ws50{word-spacing:29.018533px;}
.wsba{word-spacing:29.615689px;}
.ws90{word-spacing:29.986894px;}
.ws9b{word-spacing:30.976773px;}
.wsb8{word-spacing:31.062850px;}
.wsd6{word-spacing:31.208104px;}
.ws92{word-spacing:32.294819px;}
.wsbf{word-spacing:32.402415px;}
.wsbe{word-spacing:34.156223px;}
.wsda{word-spacing:34.608125px;}
.ws5c{word-spacing:34.979330px;}
.wsaf{word-spacing:35.883133px;}
.wscf{word-spacing:36.647061px;}
.ws47{word-spacing:37.007507px;}
.wsc1{word-spacing:37.626181px;}
.ws94{word-spacing:37.776815px;}
.wsb2{word-spacing:38.298654px;}
.wsbc{word-spacing:38.492326px;}
.ws1{word-spacing:39.858570px;}
.ws0{word-spacing:39.942256px;}
.ws55{word-spacing:40.310692px;}
.wsd9{word-spacing:40.724935px;}
.wsa1{word-spacing:42.042981px;}
.wsb4{word-spacing:43.102797px;}
.ws48{word-spacing:43.780650px;}
.ws65{word-spacing:43.845207px;}
.ws97{word-spacing:44.404704px;}
.wse3{word-spacing:986.268270px;}
._d{margin-left:-23.810906px;}
._c{margin-left:-22.788748px;}
._29{margin-left:-2.341934px;}
._b{margin-left:-1.102263px;}
._1{width:1.285175px;}
._2a{width:8.818471px;}
._28{width:10.283933px;}
._6{width:12.264125px;}
._27{width:13.342972px;}
._5{width:14.465056px;}
._f{width:15.624054px;}
._2{width:17.385082px;}
._7{width:18.720469px;}
._15{width:19.891378px;}
._3{width:20.971611px;}
._9{width:22.810267px;}
._a{width:24.484563px;}
._4{width:25.540845px;}
._e{width:26.909660px;}
._13{width:28.292263px;}
._8{width:29.691006px;}
._14{width:31.089749px;}
._19{width:32.219502px;}
._16{width:33.785018px;}
._10{width:36.329654px;}
._17{width:39.051823px;}
._0{width:41.890951px;}
._1a{width:43.495521px;}
._18{width:45.706611px;}
._1d{width:136.603588px;}
._1e{width:196.903848px;}
._24{width:384.773235px;}
._12{width:522.924822px;}
._23{width:533.787998px;}
._1c{width:554.166043px;}
._11{width:592.071003px;}
._26{width:636.119351px;}
._22{width:825.562628px;}
._1b{width:844.626208px;}
._20{width:874.489414px;}
._21{width:937.571620px;}
._25{width:952.848426px;}
._1f{width:1020.303204px;}
.fc1{color:rgb(28,78,157);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:39.846000px;}
.fs4{font-size:41.842800px;}
.fs6{font-size:47.821200px;}
.fs5{font-size:53.797800px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:71.730600px;}
.fs1{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y111{bottom:46.087168px;}
.y97{bottom:46.089073px;}
.y6b{bottom:46.091400px;}
.y105{bottom:89.374571px;}
.y7e{bottom:89.374914px;}
.yfd{bottom:89.375617px;}
.yb3{bottom:89.376649px;}
.y6a{bottom:89.376952px;}
.yd0{bottom:89.379591px;}
.y93{bottom:89.381639px;}
.y49{bottom:89.459185px;}
.yfc{bottom:101.365671px;}
.ycf{bottom:105.111413px;}
.y92{bottom:105.113460px;}
.y7d{bottom:105.192812px;}
.y48{bottom:105.277083px;}
.yb2{bottom:105.364010px;}
.y69{bottom:108.085914px;}
.y104{bottom:113.356772px;}
.yfb{bottom:113.441503px;}
.y68{bottom:120.077014px;}
.yce{bottom:120.758503px;}
.y91{bottom:120.760551px;}
.y7c{bottom:121.010710px;}
.y47{bottom:121.179713px;}
.yb1{bottom:121.351371px;}
.yfa{bottom:125.432604px;}
.y90{bottom:136.492372px;}
.ycd{bottom:136.576401px;}
.y7b{bottom:136.742532px;}
.y46{bottom:137.082342px;}
.yb0{bottom:137.338733px;}
.yf9{bottom:137.423704px;}
.y67{bottom:138.700198px;}
.y103{bottom:149.329027px;}
.yf8{bottom:149.499536px;}
.y66{bottom:150.691299px;}
.y8f{bottom:152.139462px;}
.ycc{bottom:152.223491px;}
.y7a{bottom:152.560430px;}
.y45{bottom:152.900241px;}
.yaf{bottom:153.326094px;}
.y102{bottom:161.489590px;}
.yf7{bottom:161.490637px;}
.y65{bottom:162.682399px;}
.y8e{bottom:167.871284px;}
.ycb{bottom:167.955313px;}
.y79{bottom:168.378328px;}
.y44{bottom:168.802870px;}
.yae{bottom:169.313455px;}
.y101{bottom:173.394913px;}
.yf6{bottom:173.395959px;}
.y64{bottom:181.305584px;}
.yca{bottom:183.602403px;}
.y8d{bottom:183.603106px;}
.y78{bottom:184.110150px;}
.y43{bottom:184.705500px;}
.yad{bottom:185.300816px;}
.yf5{bottom:185.386014px;}
.y100{bottom:185.555477px;}
.y63{bottom:193.295638px;}
.yff{bottom:197.460800px;}
.yf4{bottom:197.461846px;}
.y8c{bottom:199.250196px;}
.yc9{bottom:199.334224px;}
.yac{bottom:201.288178px;}
.y62{bottom:205.200961px;}
.y77{bottom:209.366879px;}
.yfe{bottom:209.450854px;}
.yf3{bottom:209.451900px;}
.y42{bottom:209.962200px;}
.yc8{bottom:214.981315px;}
.y8b{bottom:215.408365px;}
.y61{bottom:217.191015px;}
.yab{bottom:217.275539px;}
.y76{bottom:227.395200px;}
.yf2{bottom:230.116500px;}
.yc7{bottom:230.713136px;}
.y8a{bottom:231.140187px;}
.yaa{bottom:233.262900px;}
.y60{bottom:235.899977px;}
.y41{bottom:244.140245px;}
.yc6{bottom:246.360226px;}
.y89{bottom:246.787277px;}
.y5f{bottom:254.523161px;}
.ya9{bottom:258.519238px;}
.y40{bottom:260.042875px;}
.y75{bottom:261.665023px;}
.yc5{bottom:262.092048px;}
.y88{bottom:262.519099px;}
.yee{bottom:264.047738px;}
.yf1{bottom:264.049083px;}
.y5e{bottom:273.232123px;}
.y3f{bottom:275.860773px;}
.ya8{bottom:276.803100px;}
.y74{bottom:277.396844px;}
.yc4{bottom:277.739138px;}
.y87{bottom:278.166189px;}
.yed{bottom:279.779560px;}
.yf0{bottom:279.780905px;}
.y5d{bottom:285.222177px;}
.y3e{bottom:291.763402px;}
.y73{bottom:293.214742px;}
.yc3{bottom:293.470960px;}
.y86{bottom:293.898010px;}
.yec{bottom:295.426650px;}
.yef{bottom:295.427995px;}
.y5c{bottom:297.127500px;}
.y3d{bottom:307.666032px;}
.y72{bottom:308.946564px;}
.yc2{bottom:309.118050px;}
.y85{bottom:309.629832px;}
.ya7{bottom:315.496092px;}
.y3c{bottom:323.483930px;}
.y71{bottom:324.764462px;}
.y84{bottom:325.276922px;}
.ya6{bottom:331.483453px;}
.y5b{bottom:333.777859px;}
.yc1{bottom:333.864450px;}
.y3b{bottom:339.386560px;}
.y70{bottom:340.582360px;}
.y83{bottom:341.008744px;}
.y110{bottom:341.770430px;}
.ya5{bottom:347.470815px;}
.y5a{bottom:349.680489px;}
.y3a{bottom:355.289190px;}
.y10f{bottom:355.291874px;}
.y6f{bottom:356.314182px;}
.y82{bottom:356.655834px;}
.ya4{bottom:363.458176px;}
.y59{bottom:365.667850px;}
.yc0{bottom:367.546244px;}
.y10e{bottom:368.728436px;}
.y39{bottom:371.107088px;}
.y6e{bottom:372.132080px;}
.y81{bottom:372.387656px;}
.ya3{bottom:379.445537px;}
.y58{bottom:381.995482px;}
.y10d{bottom:382.164997px;}
.ybf{bottom:383.278065px;}
.y38{bottom:387.009717px;}
.y6d{bottom:387.863902px;}
.y80{bottom:388.034746px;}
.ya2{bottom:395.432898px;}
.y10c{bottom:395.601559px;}
.y57{bottom:397.898112px;}
.ybe{bottom:398.925155px;}
.y37{bottom:402.912347px;}
.y6c{bottom:403.681800px;}
.y7f{bottom:403.766567px;}
.y10b{bottom:409.038121px;}
.ya1{bottom:411.420260px;}
.y56{bottom:413.885473px;}
.ybd{bottom:414.656977px;}
.y36{bottom:418.730245px;}
.y10a{bottom:422.474682px;}
.ya0{bottom:427.407621px;}
.y55{bottom:429.872834px;}
.ybc{bottom:430.304067px;}
.y35{bottom:434.632875px;}
.y108{bottom:435.911244px;}
.y109{bottom:436.165892px;}
.y9f{bottom:443.394982px;}
.y54{bottom:445.775464px;}
.ybb{bottom:446.035889px;}
.y107{bottom:449.432688px;}
.y96{bottom:450.027577px;}
.y34{bottom:450.535505px;}
.y9e{bottom:459.382343px;}
.yba{bottom:461.682979px;}
.y53{bottom:461.762825px;}
.y106{bottom:462.869250px;}
.y95{bottom:463.464138px;}
.y33{bottom:466.778405px;}
.y9d{bottom:475.369704px;}
.y94{bottom:476.900700px;}
.yb9{bottom:477.414801px;}
.y52{bottom:477.750186px;}
.y32{bottom:482.681035px;}
.y9c{bottom:491.612605px;}
.yb8{bottom:493.146622px;}
.y51{bottom:493.652816px;}
.y31{bottom:498.583665px;}
.y9b{bottom:507.599966px;}
.yb7{bottom:508.793712px;}
.y50{bottom:509.640177px;}
.y30{bottom:514.401563px;}
.y9a{bottom:523.587328px;}
.yb6{bottom:524.525534px;}
.y4f{bottom:525.627538px;}
.y2f{bottom:530.304192px;}
.y99{bottom:539.574689px;}
.yb5{bottom:540.172624px;}
.y4e{bottom:541.614900px;}
.y2e{bottom:546.206822px;}
.y98{bottom:555.562050px;}
.yb4{bottom:555.904446px;}
.y4d{bottom:557.517529px;}
.y2d{bottom:562.024720px;}
.y4c{bottom:573.504890px;}
.y2c{bottom:577.927350px;}
.y4b{bottom:589.492252px;}
.yeb{bottom:592.296401px;}
.y2b{bottom:603.184050px;}
.y4a{bottom:605.394881px;}
.yea{bottom:618.488947px;}
.ye9{bottom:637.112132px;}
.y2a{bottom:638.643991px;}
.y29{bottom:653.525383px;}
.ye8{bottom:655.821093px;}
.y28{bottom:668.492552px;}
.ye7{bottom:674.530055px;}
.y27{bottom:683.459722px;}
.ye6{bottom:693.153240px;}
.y26{bottom:698.341114px;}
.ye5{bottom:711.862202px;}
.y25{bottom:713.308283px;}
.y24{bottom:728.275453px;}
.ye4{bottom:730.571164px;}
.y21{bottom:743.242622px;}
.y22{bottom:743.497864px;}
.y23{bottom:745.368237px;}
.ye3{bottom:749.194348px;}
.y1f{bottom:758.125060px;}
.y20{bottom:758.465033px;}
.ye2{bottom:767.903310px;}
.y1e{bottom:773.092230px;}
.ye1{bottom:786.612272px;}
.y1d{bottom:788.059399px;}
.ye0{bottom:799.283318px;}
.y1b{bottom:803.026569px;}
.y1c{bottom:803.197078px;}
.ydf{bottom:811.954363px;}
.y1a{bottom:817.907961px;}
.yde{bottom:830.663325px;}
.y19{bottom:832.875130px;}
.ydd{bottom:843.334371px;}
.y18{bottom:847.842300px;}
.ydc{bottom:862.043333px;}
.y15{bottom:868.761684px;}
.y17{bottom:868.762050px;}
.y16{bottom:875.395050px;}
.ydb{bottom:880.752295px;}
.y12{bottom:889.681434px;}
.y14{bottom:889.681650px;}
.y13{bottom:896.314800px;}
.yda{bottom:899.375479px;}
.yf{bottom:910.601034px;}
.y11{bottom:910.601400px;}
.y10{bottom:917.234400px;}
.yd9{bottom:918.084441px;}
.y120{bottom:921.829587px;}
.y12f{bottom:921.833771px;}
.yc{bottom:931.520634px;}
.ye{bottom:931.521000px;}
.y11f{bottom:933.734910px;}
.y12e{bottom:933.739094px;}
.yd8{bottom:936.793403px;}
.yd{bottom:938.154150px;}
.y11e{bottom:945.724964px;}
.y12d{bottom:945.729148px;}
.y7{bottom:952.440384px;}
.ya{bottom:952.440600px;}
.y8{bottom:952.866286px;}
.yb{bottom:952.866501px;}
.yd7{bottom:955.416588px;}
.y11d{bottom:957.630287px;}
.y12c{bottom:957.634471px;}
.y9{bottom:959.073750px;}
.y11c{bottom:969.620341px;}
.y12b{bottom:969.624525px;}
.y4{bottom:973.360350px;}
.y6{bottom:973.955117px;}
.yd6{bottom:974.125550px;}
.y5{bottom:979.993500px;}
.y11b{bottom:981.525664px;}
.y12a{bottom:981.529848px;}
.yd4{bottom:992.834511px;}
.yd5{bottom:993.005021px;}
.y11a{bottom:993.515718px;}
.y129{bottom:993.519902px;}
.y119{bottom:1005.505772px;}
.y128{bottom:1005.509957px;}
.y3{bottom:1009.246265px;}
.yd3{bottom:1011.457696px;}
.y118{bottom:1017.411095px;}
.y127{bottom:1017.415279px;}
.y117{bottom:1029.402196px;}
.y126{bottom:1029.406380px;}
.yd2{bottom:1033.908450px;}
.y116{bottom:1041.307518px;}
.y125{bottom:1041.311703px;}
.y2{bottom:1042.072200px;}
.y115{bottom:1053.298619px;}
.y124{bottom:1053.301757px;}
.y114{bottom:1065.288673px;}
.y123{bottom:1065.291811px;}
.y113{bottom:1077.193996px;}
.y122{bottom:1077.197134px;}
.yd1{bottom:1079.489550px;}
.y112{bottom:1089.184050px;}
.y121{bottom:1089.187188px;}
.y1{bottom:1094.116200px;}
.hd{height:28.202047px;}
.h5{height:29.007888px;}
.hc{height:30.168659px;}
.hb{height:30.461558px;}
.h7{height:31.382100px;}
.h9{height:35.865900px;}
.h8{height:36.259717px;}
.ha{height:40.348350px;}
.h4{height:43.516637px;}
.h6{height:44.831700px;}
.h2{height:50.928726px;}
.h3{height:84.881778px;}
.h0{height:1186.299042px;}
.h1{height:1186.500000px;}
.w0{width:918.424530px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x1{left:87.080250px;}
.x41{left:92.352750px;}
.x3d{left:96.094500px;}
.x3a{left:100.516500px;}
.x3e{left:106.554154px;}
.x42{left:107.659892px;}
.x3f{left:128.154453px;}
.x21{left:171.014100px;}
.x37{left:173.140429px;}
.xd{left:176.459724px;}
.x38{left:181.814441px;}
.x22{left:184.365300px;}
.x2b{left:185.555850px;}
.x33{left:197.121300px;}
.x2c{left:198.822000px;}
.x17{left:202.393650px;}
.x18{left:209.026800px;}
.x2{left:219.826800px;}
.x3{left:226.459800px;}
.xe{left:254.777850px;}
.xf{left:261.411000px;}
.x34{left:308.947950px;}
.x19{left:330.377850px;}
.x23{left:333.099150px;}
.x1a{left:337.011000px;}
.x24{left:346.450350px;}
.x2d{left:350.617200px;}
.x39{left:355.039449px;}
.x4{left:373.067700px;}
.x5{left:379.700700px;}
.x40{left:390.162560px;}
.x10{left:413.631450px;}
.x11{left:420.264450px;}
.x3c{left:472.650677px;}
.x25{left:474.009300px;}
.x6{left:478.431450px;}
.x7{left:485.064450px;}
.x3b{left:486.086678px;}
.x26{left:487.275450px;}
.x1b{left:489.061350px;}
.x43{left:493.228741px;}
.x1c{left:495.694350px;}
.x2e{left:500.881800px;}
.x8{left:519.250116px;}
.x44{left:557.688679px;}
.x12{left:569.848406px;}
.x13{left:585.155850px;}
.x14{left:591.788850px;}
.x35{left:593.660569px;}
.x27{left:618.916500px;}
.x9{left:621.382500px;}
.x28{left:632.267550px;}
.xa{left:637.710150px;}
.x2f{left:645.703800px;}
.x1d{left:650.721150px;}
.x30{left:659.055000px;}
.x1e{left:664.072200px;}
.x15{left:727.936800px;}
.x16{left:734.569950px;}
.x29{left:741.288000px;}
.x31{left:748.856550px;}
.x2a{left:754.554150px;}
.x32{left:762.207750px;}
.xb{left:773.262750px;}
.xc{left:779.895900px;}
.x1f{left:792.056550px;}
.x20{left:805.407750px;}
.x36{left:827.178959px;}
@media print{
.v3{vertical-align:-7.557740pt;}
.v1{vertical-align:-2.114728pt;}
.v2{vertical-align:-0.907524pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.918149pt;}
.lsb{letter-spacing:-0.913367pt;}
.lsd{letter-spacing:-0.908585pt;}
.lse{letter-spacing:-0.889457pt;}
.ls11{letter-spacing:-0.884675pt;}
.lsc{letter-spacing:-0.875111pt;}
.ls16{letter-spacing:-0.870329pt;}
.lsf{letter-spacing:-0.865547pt;}
.ls12{letter-spacing:-0.860765pt;}
.ls15{letter-spacing:-0.841637pt;}
.ls13{letter-spacing:-0.836855pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.003542pt;}
.ls4{letter-spacing:0.003719pt;}
.ls18{letter-spacing:0.148777pt;}
.ls0{letter-spacing:0.270983pt;}
.ls7{letter-spacing:2.979207pt;}
.ls6{letter-spacing:3.280476pt;}
.ls8{letter-spacing:3.581744pt;}
.ls17{letter-spacing:4.794255pt;}
.ls19{letter-spacing:5.304965pt;}
.ls5{letter-spacing:6.062557pt;}
.ls3{letter-spacing:6.367544pt;}
.ls2{letter-spacing:8.442971pt;}
.ls14{letter-spacing:19.754552pt;}
.ls1{letter-spacing:24.468146pt;}
.ws4c{word-spacing:-19.802372pt;}
.ws6{word-spacing:-11.583183pt;}
.ws1d{word-spacing:-2.038209pt;}
.ws20{word-spacing:-1.736941pt;}
.wsa6{word-spacing:-0.042508pt;}
.ws2d{word-spacing:-0.040913pt;}
.ws16{word-spacing:-0.037194pt;}
.ws7f{word-spacing:0.000000pt;}
.wsa4{word-spacing:1.164712pt;}
.ws107{word-spacing:3.800191pt;}
.ws77{word-spacing:3.879292pt;}
.wsdd{word-spacing:4.139648pt;}
.wsee{word-spacing:4.258667pt;}
.ws71{word-spacing:4.288422pt;}
.wse8{word-spacing:4.437196pt;}
.wsde{word-spacing:4.470671pt;}
.ws6f{word-spacing:4.515303pt;}
.wse5{word-spacing:4.559935pt;}
.wse4{word-spacing:4.760781pt;}
.ws7c{word-spacing:5.017417pt;}
.wsdb{word-spacing:5.499331pt;}
.ws37{word-spacing:5.972247pt;}
.wsb6{word-spacing:6.014754pt;}
.wscc{word-spacing:6.025380pt;}
.wsa{word-spacing:6.046634pt;}
.wsc{word-spacing:6.067888pt;}
.ws3{word-spacing:6.121021pt;}
.ws9{word-spacing:6.174155pt;}
.ws8b{word-spacing:6.179469pt;}
.ws11c{word-spacing:6.185296pt;}
.ws8a{word-spacing:6.211349pt;}
.ws5{word-spacing:6.221976pt;}
.ws8{word-spacing:6.296363pt;}
.ws53{word-spacing:6.306990pt;}
.ws7{word-spacing:6.338870pt;}
.wsb{word-spacing:6.397318pt;}
.ws4{word-spacing:6.423884pt;}
.ws124{word-spacing:6.430773pt;}
.ws2{word-spacing:6.524839pt;}
.wsd{word-spacing:6.567346pt;}
.ws123{word-spacing:7.423843pt;}
.ws75{word-spacing:8.911587pt;}
.ws14{word-spacing:9.086396pt;}
.wsf7{word-spacing:9.168222pt;}
.ws125{word-spacing:9.361629pt;}
.ws13{word-spacing:9.424858pt;}
.ws33{word-spacing:9.584791pt;}
.ws34{word-spacing:9.648020pt;}
.wsf9{word-spacing:9.700091pt;}
.ws113{word-spacing:9.781029pt;}
.ws21{word-spacing:9.800514pt;}
.ws73{word-spacing:9.860023pt;}
.ws25{word-spacing:9.893498pt;}
.ws1f{word-spacing:9.904656pt;}
.wsfb{word-spacing:9.930691pt;}
.ws24{word-spacing:9.982762pt;}
.ws11b{word-spacing:10.016236pt;}
.ws2b{word-spacing:10.023675pt;}
.ws114{word-spacing:10.040327pt;}
.ws23{word-spacing:10.049711pt;}
.ws22{word-spacing:10.068308pt;}
.ws110{word-spacing:10.074333pt;}
.ws2c{word-spacing:10.176169pt;}
.wsd1{word-spacing:10.319614pt;}
.ws10f{word-spacing:10.414395pt;}
.ws52{word-spacing:10.592189pt;}
.wsa5{word-spacing:10.605679pt;}
.ws6b{word-spacing:10.801021pt;}
.wsd5{word-spacing:10.826508pt;}
.wsfd{word-spacing:11.042780pt;}
.ws12{word-spacing:11.079973pt;}
.ws10{word-spacing:11.172957pt;}
.ws102{word-spacing:11.176677pt;}
.ws11{word-spacing:11.184116pt;}
.ws5e{word-spacing:11.333403pt;}
.ws9a{word-spacing:11.424262pt;}
.ws79{word-spacing:11.477945pt;}
.wsc0{word-spacing:11.539030pt;}
.wsad{word-spacing:11.615543pt;}
.ws9c{word-spacing:11.663363pt;}
.ws78{word-spacing:11.682510pt;}
.ws3d{word-spacing:11.692055pt;}
.ws10c{word-spacing:11.719382pt;}
.ws1e{word-spacing:11.727142pt;}
.ws10e{word-spacing:11.732134pt;}
.ws10d{word-spacing:11.808648pt;}
.ws1c{word-spacing:11.846162pt;}
.wsc7{word-spacing:12.088963pt;}
.ws66{word-spacing:12.117656pt;}
.wsbb{word-spacing:12.122438pt;}
.wseb{word-spacing:12.166027pt;}
.wsec{word-spacing:12.180904pt;}
.wsf0{word-spacing:12.206940pt;}
.ws7b{word-spacing:12.210659pt;}
.ws122{word-spacing:12.240414pt;}
.wse0{word-spacing:12.247852pt;}
.ws103{word-spacing:12.273888pt;}
.ws126{word-spacing:12.281327pt;}
.ws101{word-spacing:12.292485pt;}
.ws11f{word-spacing:12.296204pt;}
.ws6e{word-spacing:12.307362pt;}
.wsfe{word-spacing:12.325959pt;}
.ws80{word-spacing:12.328065pt;}
.ws72{word-spacing:12.329678pt;}
.ws118{word-spacing:12.333398pt;}
.wse1{word-spacing:12.337117pt;}
.wsf6{word-spacing:12.348275pt;}
.ws112{word-spacing:12.365500pt;}
.wse6{word-spacing:12.366872pt;}
.wsed{word-spacing:12.370591pt;}
.wse7{word-spacing:12.396627pt;}
.ws70{word-spacing:12.400346pt;}
.ws11a{word-spacing:12.426382pt;}
.wse2{word-spacing:12.444979pt;}
.ws36{word-spacing:12.448698pt;}
.ws117{word-spacing:12.452417pt;}
.wse9{word-spacing:12.493330pt;}
.ws76{word-spacing:12.504488pt;}
.wsdf{word-spacing:12.563998pt;}
.wsfa{word-spacing:12.575156pt;}
.ws85{word-spacing:12.614986pt;}
.ws59{word-spacing:12.619768pt;}
.wsea{word-spacing:12.638385pt;}
.ws35{word-spacing:12.649543pt;}
.wsef{word-spacing:12.746247pt;}
.ws32{word-spacing:12.854108pt;}
.ws7d{word-spacing:12.883863pt;}
.ws63{word-spacing:12.916254pt;}
.ws31{word-spacing:12.928495pt;}
.ws67{word-spacing:12.983202pt;}
.wsb7{word-spacing:13.021459pt;}
.ws69{word-spacing:13.097971pt;}
.ws116{word-spacing:13.099586pt;}
.ws58{word-spacing:13.188830pt;}
.ws30{word-spacing:13.252080pt;}
.ws121{word-spacing:13.319028pt;}
.ws108{word-spacing:13.321924pt;}
.wsa3{word-spacing:13.356200pt;}
.ws49{word-spacing:13.480533pt;}
.wsd3{word-spacing:13.523571pt;}
.ws111{word-spacing:13.572719pt;}
.ws5d{word-spacing:13.600084pt;}
.ws6a{word-spacing:13.623994pt;}
.ws74{word-spacing:13.664929pt;}
.wsd7{word-spacing:13.829621pt;}
.wsce{word-spacing:13.925262pt;}
.ws115{word-spacing:13.951038pt;}
.ws95{word-spacing:14.063940pt;}
.ws46{word-spacing:14.188273pt;}
.ws120{word-spacing:14.271184pt;}
.ws86{word-spacing:14.279132pt;}
.wse{word-spacing:14.434836pt;}
.wsf{word-spacing:14.445994pt;}
.wsf8{word-spacing:14.453433pt;}
.wsd0{word-spacing:14.499105pt;}
.ws119{word-spacing:14.524101pt;}
.wsb9{word-spacing:14.532579pt;}
.ws82{word-spacing:14.561271pt;}
.ws29{word-spacing:14.628243pt;}
.wsa8{word-spacing:14.685604pt;}
.ws28{word-spacing:14.687753pt;}
.wsd4{word-spacing:14.699950pt;}
.ws5b{word-spacing:14.800373pt;}
.ws2e{word-spacing:14.866282pt;}
.wsc2{word-spacing:14.962961pt;}
.ws2a{word-spacing:15.018776pt;}
.ws61{word-spacing:15.034692pt;}
.ws11d{word-spacing:15.044811pt;}
.ws2f{word-spacing:15.085724pt;}
.wsc5{word-spacing:15.135114pt;}
.ws83{word-spacing:15.216409pt;}
.ws10b{word-spacing:15.230521pt;}
.wsc4{word-spacing:15.297703pt;}
.ws10a{word-spacing:15.311286pt;}
.wsc6{word-spacing:15.312049pt;}
.wsa9{word-spacing:15.326395pt;}
.wsf1{word-spacing:15.331177pt;}
.ws8c{word-spacing:15.412472pt;}
.ws27{word-spacing:15.509731pt;}
.ws129{word-spacing:15.606435pt;}
.ws84{word-spacing:15.618099pt;}
.wsfc{word-spacing:15.673383pt;}
.ws3a{word-spacing:15.742432pt;}
.wsdc{word-spacing:15.756778pt;}
.ws109{word-spacing:15.766118pt;}
.wsb5{word-spacing:15.795034pt;}
.wsf4{word-spacing:15.890675pt;}
.ws89{word-spacing:15.905021pt;}
.ws3f{word-spacing:15.914585pt;}
.ws26{word-spacing:15.996967pt;}
.wsf5{word-spacing:16.008125pt;}
.wscb{word-spacing:16.019789pt;}
.ws9d{word-spacing:16.067610pt;}
.ws5a{word-spacing:16.105866pt;}
.wsb0{word-spacing:16.120212pt;}
.ws96{word-spacing:16.263673pt;}
.ws88{word-spacing:16.268455pt;}
.wsac{word-spacing:16.297147pt;}
.ws91{word-spacing:16.344967pt;}
.ws64{word-spacing:16.622325pt;}
.ws51{word-spacing:16.737093pt;}
.ws7a{word-spacing:16.755717pt;}
.ws8e{word-spacing:16.813606pt;}
.ws3e{word-spacing:16.847080pt;}
.ws44{word-spacing:16.923592pt;}
.ws56{word-spacing:17.153130pt;}
.wsf3{word-spacing:17.196168pt;}
.ws93{word-spacing:17.253552pt;}
.ws3c{word-spacing:17.440051pt;}
.ws17{word-spacing:17.514466pt;}
.ws104{word-spacing:17.518186pt;}
.ws15{word-spacing:17.588853pt;}
.ws18{word-spacing:17.626047pt;}
.ws68{word-spacing:17.755665pt;}
.ws9f{word-spacing:17.860870pt;}
.ws12d{word-spacing:17.931035pt;}
.ws9e{word-spacing:17.937382pt;}
.ws12a{word-spacing:18.131880pt;}
.ws6c{word-spacing:18.369919pt;}
.ws105{word-spacing:18.444306pt;}
.wsc8{word-spacing:18.487315pt;}
.wsc9{word-spacing:18.659468pt;}
.wsb1{word-spacing:18.841185pt;}
.ws39{word-spacing:18.975082pt;}
.ws60{word-spacing:19.065940pt;}
.wsae{word-spacing:19.199837pt;}
.ws12b{word-spacing:19.270004pt;}
.wsf2{word-spacing:19.520233pt;}
.ws43{word-spacing:19.534579pt;}
.ws57{word-spacing:19.544143pt;}
.ws41{word-spacing:19.644566pt;}
.ws42{word-spacing:19.878885pt;}
.ws81{word-spacing:19.984089pt;}
.wsa7{word-spacing:20.022346pt;}
.ws54{word-spacing:20.180153pt;}
.ws127{word-spacing:20.233318pt;}
.wsb3{word-spacing:20.476638pt;}
.ws11e{word-spacing:20.508551pt;}
.ws62{word-spacing:20.553151pt;}
.ws106{word-spacing:20.735432pt;}
.ws100{word-spacing:20.869329pt;}
.ws3b{word-spacing:21.203506pt;}
.ws7e{word-spacing:21.245365pt;}
.ws4b{word-spacing:21.270455pt;}
.ws12c{word-spacing:21.271020pt;}
.ws1b{word-spacing:21.390039pt;}
.wsc3{word-spacing:21.413915pt;}
.ws4a{word-spacing:21.428261pt;}
.ws98{word-spacing:21.523902pt;}
.ws19{word-spacing:21.538814pt;}
.ws12e{word-spacing:21.568569pt;}
.wsaa{word-spacing:21.629107pt;}
.ws1a{word-spacing:21.721062pt;}
.ws40{word-spacing:21.729529pt;}
.ws99{word-spacing:21.739093pt;}
.wsff{word-spacing:21.761975pt;}
.wsbd{word-spacing:21.868208pt;}
.wsab{word-spacing:22.303372pt;}
.ws128{word-spacing:22.412863pt;}
.wscd{word-spacing:22.446833pt;}
.ws6d{word-spacing:22.524444pt;}
.ws5f{word-spacing:22.590294pt;}
.ws4d{word-spacing:23.613648pt;}
.wsa2{word-spacing:23.709288pt;}
.ws8d{word-spacing:23.766673pt;}
.ws87{word-spacing:23.824057pt;}
.wsca{word-spacing:24.852193pt;}
.ws45{word-spacing:24.928705pt;}
.wsd2{word-spacing:25.000435pt;}
.wsd8{word-spacing:25.191716pt;}
.ws38{word-spacing:25.287357pt;}
.wsa0{word-spacing:25.454728pt;}
.ws4f{word-spacing:25.588625pt;}
.ws4e{word-spacing:25.622099pt;}
.ws8f{word-spacing:25.717739pt;}
.ws50{word-spacing:25.794252pt;}
.wsba{word-spacing:26.325057pt;}
.ws90{word-spacing:26.655017pt;}
.ws9b{word-spacing:27.534910pt;}
.wsb8{word-spacing:27.611422pt;}
.wsd6{word-spacing:27.740537pt;}
.ws92{word-spacing:28.706506pt;}
.wsbf{word-spacing:28.802147pt;}
.wsbe{word-spacing:30.361087pt;}
.wsda{word-spacing:30.762778pt;}
.ws5c{word-spacing:31.092737pt;}
.wsaf{word-spacing:31.896118pt;}
.wscf{word-spacing:32.575166pt;}
.ws47{word-spacing:32.895561pt;}
.wsc1{word-spacing:33.445495pt;}
.ws94{word-spacing:33.579391pt;}
.wsb2{word-spacing:34.043248pt;}
.wsbc{word-spacing:34.215401pt;}
.ws1{word-spacing:35.429840pt;}
.ws0{word-spacing:35.504228pt;}
.ws55{word-spacing:35.831726pt;}
.wsd9{word-spacing:36.199942pt;}
.wsa1{word-spacing:37.371538pt;}
.wsb4{word-spacing:38.313598pt;}
.ws48{word-spacing:38.916133pt;}
.ws65{word-spacing:38.973517pt;}
.ws97{word-spacing:39.470848pt;}
.wse3{word-spacing:876.682907pt;}
._d{margin-left:-21.165250pt;}
._c{margin-left:-20.256665pt;}
._29{margin-left:-2.081719pt;}
._b{margin-left:-0.979789pt;}
._1{width:1.142378pt;}
._2a{width:7.838641pt;}
._28{width:9.141274pt;}
._6{width:10.901444pt;}
._27{width:11.860419pt;}
._5{width:12.857828pt;}
._f{width:13.888048pt;}
._2{width:15.453406pt;}
._7{width:16.640417pt;}
._15{width:17.681225pt;}
._3{width:18.641432pt;}
._9{width:20.275793pt;}
._a{width:21.764056pt;}
._4{width:22.702973pt;}
._e{width:23.919697pt;}
._13{width:25.148678pt;}
._8{width:26.392005pt;}
._14{width:27.635332pt;}
._19{width:28.639558pt;}
._16{width:30.031127pt;}
._10{width:32.293026pt;}
._17{width:34.712732pt;}
._0{width:37.236401pt;}
._1a{width:38.662686pt;}
._18{width:40.628099pt;}
._1d{width:121.425411pt;}
._1e{width:175.025643pt;}
._24{width:342.020653pt;}
._12{width:464.822064pt;}
._23{width:474.478221pt;}
._1c{width:492.592038pt;}
._11{width:526.285336pt;}
._26{width:565.439423pt;}
._22{width:733.833447pt;}
._1b{width:750.778852pt;}
._20{width:777.323924pt;}
._21{width:833.396995pt;}
._25{width:846.976379pt;}
._1f{width:906.936181pt;}
.fs3{font-size:35.418667pt;}
.fs4{font-size:37.193600pt;}
.fs6{font-size:42.507733pt;}
.fs5{font-size:47.820267pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:63.760533pt;}
.fs1{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:40.966372pt;}
.y97{bottom:40.968065pt;}
.y6b{bottom:40.970133pt;}
.y105{bottom:79.444063pt;}
.y7e{bottom:79.444368pt;}
.yfd{bottom:79.444993pt;}
.yb3{bottom:79.445910pt;}
.y6a{bottom:79.446179pt;}
.yd0{bottom:79.448525pt;}
.y93{bottom:79.450346pt;}
.y49{bottom:79.519276pt;}
.yfc{bottom:90.102819pt;}
.ycf{bottom:93.432367pt;}
.y92{bottom:93.434187pt;}
.y7d{bottom:93.504722pt;}
.y48{bottom:93.579629pt;}
.yb2{bottom:93.656898pt;}
.y69{bottom:96.076368pt;}
.y104{bottom:100.761575pt;}
.yfb{bottom:100.836892pt;}
.y68{bottom:106.735124pt;}
.yce{bottom:107.340891pt;}
.y91{bottom:107.342712pt;}
.y7c{bottom:107.565076pt;}
.y47{bottom:107.715300pt;}
.yb1{bottom:107.867886pt;}
.yfa{bottom:111.495648pt;}
.y90{bottom:121.326553pt;}
.ycd{bottom:121.401245pt;}
.y7b{bottom:121.548917pt;}
.y46{bottom:121.850971pt;}
.yb0{bottom:122.078874pt;}
.yf9{bottom:122.154404pt;}
.y67{bottom:123.289065pt;}
.y103{bottom:132.736913pt;}
.yf8{bottom:132.888477pt;}
.y66{bottom:133.947821pt;}
.y8f{bottom:135.235078pt;}
.ycc{bottom:135.309770pt;}
.y7a{bottom:135.609271pt;}
.y45{bottom:135.911325pt;}
.yaf{bottom:136.289861pt;}
.y102{bottom:143.546303pt;}
.yf7{bottom:143.547233pt;}
.y65{bottom:144.606577pt;}
.y8e{bottom:149.218919pt;}
.ycb{bottom:149.293611pt;}
.y79{bottom:149.669625pt;}
.y44{bottom:150.046996pt;}
.yae{bottom:150.500849pt;}
.y101{bottom:154.128812pt;}
.yf6{bottom:154.129742pt;}
.y64{bottom:161.160519pt;}
.yca{bottom:163.202136pt;}
.y8d{bottom:163.202761pt;}
.y78{bottom:163.653467pt;}
.y43{bottom:164.182667pt;}
.yad{bottom:164.711837pt;}
.yf5{bottom:164.787568pt;}
.y100{bottom:164.938202pt;}
.y63{bottom:171.818345pt;}
.yff{bottom:175.520711pt;}
.yf4{bottom:175.521641pt;}
.y8c{bottom:177.111285pt;}
.yc9{bottom:177.185977pt;}
.yac{bottom:178.922825pt;}
.y62{bottom:182.400854pt;}
.y77{bottom:186.103892pt;}
.yfe{bottom:186.178537pt;}
.yf3{bottom:186.179467pt;}
.y42{bottom:186.633067pt;}
.yc8{bottom:191.094502pt;}
.y8b{bottom:191.474102pt;}
.y61{bottom:193.058680pt;}
.yab{bottom:193.133812pt;}
.y76{bottom:202.129067pt;}
.yf2{bottom:204.548000pt;}
.yc7{bottom:205.078343pt;}
.y8a{bottom:205.457944pt;}
.yaa{bottom:207.344800pt;}
.y60{bottom:209.688868pt;}
.y41{bottom:217.013551pt;}
.yc6{bottom:218.986868pt;}
.y89{bottom:219.366468pt;}
.y5f{bottom:226.242810pt;}
.ya9{bottom:229.794879pt;}
.y40{bottom:231.149222pt;}
.y75{bottom:232.591131pt;}
.yc5{bottom:232.970709pt;}
.y88{bottom:233.350310pt;}
.yee{bottom:234.709101pt;}
.yf1{bottom:234.710296pt;}
.y5e{bottom:242.872998pt;}
.y3f{bottom:245.209576pt;}
.ya8{bottom:246.047200pt;}
.y74{bottom:246.574973pt;}
.yc4{bottom:246.879234pt;}
.y87{bottom:247.258834pt;}
.yed{bottom:248.692942pt;}
.yf0{bottom:248.694138pt;}
.y5d{bottom:253.530824pt;}
.y3e{bottom:259.345247pt;}
.y73{bottom:260.635327pt;}
.yc3{bottom:260.863075pt;}
.y86{bottom:261.242676pt;}
.yec{bottom:262.601467pt;}
.yef{bottom:262.602662pt;}
.y5c{bottom:264.113333pt;}
.y3d{bottom:273.480917pt;}
.y72{bottom:274.619168pt;}
.yc2{bottom:274.771600pt;}
.y85{bottom:275.226517pt;}
.ya7{bottom:280.440971pt;}
.y3c{bottom:287.541271pt;}
.y71{bottom:288.679522pt;}
.y84{bottom:289.135042pt;}
.ya6{bottom:294.651959pt;}
.y5b{bottom:296.691430pt;}
.yc1{bottom:296.768400pt;}
.y3b{bottom:301.676942pt;}
.y70{bottom:302.739876pt;}
.y83{bottom:303.118883pt;}
.y110{bottom:303.795938pt;}
.ya5{bottom:308.862946pt;}
.y5a{bottom:310.827101pt;}
.y3a{bottom:315.812613pt;}
.y10f{bottom:315.814999pt;}
.y6f{bottom:316.723717pt;}
.y82{bottom:317.027408pt;}
.ya4{bottom:323.073934pt;}
.y59{bottom:325.038089pt;}
.yc0{bottom:326.707772pt;}
.y10e{bottom:327.758609pt;}
.y39{bottom:329.872967pt;}
.y6e{bottom:330.784071pt;}
.y81{bottom:331.011249pt;}
.ya3{bottom:337.284922pt;}
.y58{bottom:339.551540pt;}
.y10d{bottom:339.702220pt;}
.ybf{bottom:340.691614pt;}
.y38{bottom:344.008638pt;}
.y6d{bottom:344.767913pt;}
.y80{bottom:344.919774pt;}
.ya2{bottom:351.495910pt;}
.y10c{bottom:351.645830pt;}
.y57{bottom:353.687210pt;}
.ybe{bottom:354.600138pt;}
.y37{bottom:358.144308pt;}
.y6c{bottom:358.828267pt;}
.y7f{bottom:358.903615pt;}
.y10b{bottom:363.589441pt;}
.ya1{bottom:365.706897pt;}
.y56{bottom:367.898198pt;}
.ybd{bottom:368.583980pt;}
.y36{bottom:372.204662pt;}
.y10a{bottom:375.533051pt;}
.ya0{bottom:379.917885pt;}
.y55{bottom:382.109186pt;}
.ybc{bottom:382.492504pt;}
.y35{bottom:386.340333pt;}
.y108{bottom:387.476661pt;}
.y109{bottom:387.703015pt;}
.y9f{bottom:394.128873pt;}
.y54{bottom:396.244857pt;}
.ybb{bottom:396.476346pt;}
.y107{bottom:399.495723pt;}
.y96{bottom:400.024513pt;}
.y34{bottom:400.476004pt;}
.y9e{bottom:408.339861pt;}
.yba{bottom:410.384870pt;}
.y53{bottom:410.455844pt;}
.y106{bottom:411.439333pt;}
.y95{bottom:411.968123pt;}
.y33{bottom:414.914138pt;}
.y9d{bottom:422.550848pt;}
.y94{bottom:423.911733pt;}
.yb9{bottom:424.368712pt;}
.y52{bottom:424.666832pt;}
.y32{bottom:429.049809pt;}
.y9c{bottom:436.988982pt;}
.yb8{bottom:438.352553pt;}
.y51{bottom:438.802503pt;}
.y31{bottom:443.185480pt;}
.y9b{bottom:451.199970pt;}
.yb7{bottom:452.261078pt;}
.y50{bottom:453.013491pt;}
.y30{bottom:457.245834pt;}
.y9a{bottom:465.410958pt;}
.yb6{bottom:466.244919pt;}
.y4f{bottom:467.224479pt;}
.y2f{bottom:471.381504pt;}
.y99{bottom:479.621946pt;}
.yb5{bottom:480.153444pt;}
.y4e{bottom:481.435466pt;}
.y2e{bottom:485.517175pt;}
.y98{bottom:493.832933pt;}
.yb4{bottom:494.137285pt;}
.y4d{bottom:495.571137pt;}
.y2d{bottom:499.577529pt;}
.y4c{bottom:509.782125pt;}
.y2c{bottom:513.713200pt;}
.y4b{bottom:523.993113pt;}
.yeb{bottom:526.485689pt;}
.y2b{bottom:536.163600pt;}
.y4a{bottom:538.128783pt;}
.yea{bottom:549.767953pt;}
.ye9{bottom:566.321895pt;}
.y2a{bottom:567.683548pt;}
.y29{bottom:580.911451pt;}
.ye8{bottom:582.952083pt;}
.y28{bottom:594.215602pt;}
.ye7{bottom:599.582271pt;}
.y27{bottom:607.519753pt;}
.ye6{bottom:616.136213pt;}
.y26{bottom:620.747657pt;}
.ye5{bottom:632.766401pt;}
.y25{bottom:634.051807pt;}
.y24{bottom:647.355958pt;}
.ye4{bottom:649.396590pt;}
.y21{bottom:660.660109pt;}
.y22{bottom:660.886990pt;}
.y23{bottom:662.549544pt;}
.ye3{bottom:665.950531pt;}
.y1f{bottom:673.888943pt;}
.y20{bottom:674.191141pt;}
.ye2{bottom:682.580720pt;}
.y1e{bottom:687.193093pt;}
.ye1{bottom:699.210908pt;}
.y1d{bottom:700.497244pt;}
.ye0{bottom:710.474060pt;}
.y1b{bottom:713.801395pt;}
.y1c{bottom:713.952959pt;}
.ydf{bottom:721.737212pt;}
.y1a{bottom:727.029299pt;}
.yde{bottom:738.367400pt;}
.y19{bottom:740.333449pt;}
.ydd{bottom:749.630552pt;}
.y18{bottom:753.637600pt;}
.ydc{bottom:766.260741pt;}
.y15{bottom:772.232608pt;}
.y17{bottom:772.232933pt;}
.y16{bottom:778.128933pt;}
.ydb{bottom:782.890929pt;}
.y12{bottom:790.827942pt;}
.y14{bottom:790.828133pt;}
.y13{bottom:796.724267pt;}
.yda{bottom:799.444871pt;}
.yf{bottom:809.423142pt;}
.y11{bottom:809.423467pt;}
.y10{bottom:815.319467pt;}
.yd9{bottom:816.075059pt;}
.y120{bottom:819.404077pt;}
.y12f{bottom:819.407797pt;}
.yc{bottom:828.018342pt;}
.ye{bottom:828.018667pt;}
.y11f{bottom:829.986586pt;}
.y12e{bottom:829.990306pt;}
.yd8{bottom:832.705247pt;}
.yd{bottom:833.914800pt;}
.y11e{bottom:840.644413pt;}
.y12d{bottom:840.648132pt;}
.y7{bottom:846.613675pt;}
.ya{bottom:846.613867pt;}
.y8{bottom:846.992254pt;}
.yb{bottom:846.992445pt;}
.yd7{bottom:849.259189pt;}
.y11d{bottom:851.226922pt;}
.y12c{bottom:851.230641pt;}
.y9{bottom:852.510000pt;}
.y11c{bottom:861.884748pt;}
.y12b{bottom:861.888467pt;}
.y4{bottom:865.209200pt;}
.y6{bottom:865.737882pt;}
.yd6{bottom:865.889377pt;}
.y5{bottom:871.105333pt;}
.y11b{bottom:872.467257pt;}
.y12a{bottom:872.470976pt;}
.yd4{bottom:882.519566pt;}
.yd5{bottom:882.671130pt;}
.y11a{bottom:883.125083pt;}
.y129{bottom:883.128802pt;}
.y119{bottom:893.782909pt;}
.y128{bottom:893.786628pt;}
.y3{bottom:897.107791pt;}
.yd3{bottom:899.073507pt;}
.y118{bottom:904.365418pt;}
.y127{bottom:904.369137pt;}
.y117{bottom:915.024174pt;}
.y126{bottom:915.027893pt;}
.yd2{bottom:919.029733pt;}
.y116{bottom:925.606683pt;}
.y125{bottom:925.610402pt;}
.y2{bottom:926.286400pt;}
.y115{bottom:936.265439pt;}
.y124{bottom:936.268228pt;}
.y114{bottom:946.923265pt;}
.y123{bottom:946.926054pt;}
.y113{bottom:957.505774pt;}
.y122{bottom:957.508563pt;}
.yd1{bottom:959.546267pt;}
.y112{bottom:968.163600pt;}
.y121{bottom:968.166390pt;}
.y1{bottom:972.547733pt;}
.hd{height:25.068486pt;}
.h5{height:25.784789pt;}
.hc{height:26.816586pt;}
.hb{height:27.076941pt;}
.h7{height:27.895200pt;}
.h9{height:31.880800pt;}
.h8{height:32.230860pt;}
.ha{height:35.865200pt;}
.h4{height:38.681455pt;}
.h6{height:39.850400pt;}
.h2{height:45.269979pt;}
.h3{height:75.450469pt;}
.h0{height:1054.488037pt;}
.h1{height:1054.666667pt;}
.w0{width:816.377360pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.404667pt;}
.x41{left:82.091333pt;}
.x3d{left:85.417333pt;}
.x3a{left:89.348000pt;}
.x3e{left:94.714803pt;}
.x42{left:95.697682pt;}
.x3f{left:113.915070pt;}
.x21{left:152.012533pt;}
.x37{left:153.902603pt;}
.xd{left:156.853088pt;}
.x38{left:161.612837pt;}
.x22{left:163.880267pt;}
.x2b{left:164.938533pt;}
.x33{left:175.218933pt;}
.x2c{left:176.730667pt;}
.x17{left:179.905467pt;}
.x18{left:185.801600pt;}
.x2{left:195.401600pt;}
.x3{left:201.297600pt;}
.xe{left:226.469200pt;}
.xf{left:232.365333pt;}
.x34{left:274.620400pt;}
.x19{left:293.669200pt;}
.x23{left:296.088133pt;}
.x1a{left:299.565333pt;}
.x24{left:307.955867pt;}
.x2d{left:311.659733pt;}
.x39{left:315.590621pt;}
.x4{left:331.615733pt;}
.x5{left:337.511733pt;}
.x40{left:346.811165pt;}
.x10{left:367.672400pt;}
.x11{left:373.568400pt;}
.x3c{left:420.133935pt;}
.x25{left:421.341600pt;}
.x6{left:425.272400pt;}
.x7{left:431.168400pt;}
.x3b{left:432.077047pt;}
.x26{left:433.133733pt;}
.x1b{left:434.721200pt;}
.x43{left:438.425548pt;}
.x1c{left:440.617200pt;}
.x2e{left:445.228267pt;}
.x8{left:461.555658pt;}
.x44{left:495.723270pt;}
.x12{left:506.531916pt;}
.x13{left:520.138533pt;}
.x14{left:526.034533pt;}
.x35{left:527.698283pt;}
.x27{left:550.148000pt;}
.x9{left:552.340000pt;}
.x28{left:562.015600pt;}
.xa{left:566.853467pt;}
.x2f{left:573.958933pt;}
.x1d{left:578.418800pt;}
.x30{left:585.826667pt;}
.x1e{left:590.286400pt;}
.x15{left:647.054933pt;}
.x16{left:652.951067pt;}
.x29{left:658.922667pt;}
.x31{left:665.650267pt;}
.x2a{left:670.714800pt;}
.x32{left:677.518000pt;}
.xb{left:687.344667pt;}
.xc{left:693.240800pt;}
.x1f{left:704.050267pt;}
.x20{left:715.918000pt;}
.x36{left:735.270186pt;}
}




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