
    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_bf2076890143497d7f1a35aa.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_8f3cffa53e2fe81965612b0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_6c82aaf2d590c4f536f68521.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_901b96dd33604e7ca806912f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.664000;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_507ee493e04243b11d3e7092.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.115000;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_368d4a51944fe428cb7b02b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;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_f51e92ccb90b7268fc86eb4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.429000;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_502b6623f53afd80a8104120.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.620000;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:-21.696000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.038257px;}
.ls18{letter-spacing:0.143462px;}
.ls19{letter-spacing:0.239103px;}
.ls17{letter-spacing:0.334744px;}
.lsf{letter-spacing:1.645034px;}
.lsc{letter-spacing:2.371909px;}
.ls16{letter-spacing:2.391030px;}
.lsd{letter-spacing:2.410166px;}
.ls5{letter-spacing:2.486671px;}
.ls11{letter-spacing:2.869245px;}
.ls4{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.985797px;}
.ls0{letter-spacing:2.987923px;}
.ls3{letter-spacing:2.988600px;}
.lsb{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.990400px;}
.ls7{letter-spacing:3.012698px;}
.ls12{letter-spacing:5.738490px;}
.ls10{letter-spacing:13.150665px;}
.ls15{letter-spacing:14.298359px;}
.ls14{letter-spacing:14.346180px;}
.lse{letter-spacing:20.921460px;}
.ls8{letter-spacing:28.508525px;}
.lsa{letter-spacing:35.865360px;}
.ls9{letter-spacing:38.847789px;}
.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;}
}
.ws10e{word-spacing:-26.301330px;}
.ws81{word-spacing:-17.932680px;}
.ws67{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.920027px;}
.ws115{word-spacing:-12.194253px;}
.wsf{word-spacing:-11.955150px;}
.ws8a{word-spacing:-11.936059px;}
.ws3{word-spacing:-11.506800px;}
.wsd1{word-spacing:-9.564150px;}
.wsd2{word-spacing:-5.776747px;}
.ws10f{word-spacing:-2.391030px;}
.wsde{word-spacing:-0.860771px;}
.wsb5{word-spacing:-0.717309px;}
.wsd6{word-spacing:-0.669488px;}
.ws65{word-spacing:-0.657532px;}
.ws92{word-spacing:-0.597756px;}
.wsa5{word-spacing:-0.239102px;}
.ws8{word-spacing:-0.059776px;}
.wscb{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.012000px;}
.ws89{word-spacing:-0.009609px;}
.ws3e{word-spacing:0.000000px;}
.ws110{word-spacing:0.038212px;}
.ws66{word-spacing:0.047776px;}
.ws106{word-spacing:0.047821px;}
.ws15{word-spacing:0.119551px;}
.ws44{word-spacing:0.179327px;}
.ws84{word-spacing:0.537980px;}
.ws30{word-spacing:0.657532px;}
.ws9b{word-spacing:0.717307px;}
.ws9d{word-spacing:0.777083px;}
.ws24{word-spacing:0.956410px;}
.ws11b{word-spacing:1.004233px;}
.ws57{word-spacing:1.195512px;}
.wse2{word-spacing:1.434618px;}
.ws45{word-spacing:1.554166px;}
.wsc2{word-spacing:1.865003px;}
.ws1e{word-spacing:2.092146px;}
.wsd3{word-spacing:2.391030px;}
.ws12{word-spacing:2.510575px;}
.ws11{word-spacing:2.749678px;}
.ws41{word-spacing:2.809453px;}
.ws6d{word-spacing:2.869229px;}
.wsfe{word-spacing:2.964877px;}
.wsd{word-spacing:2.988780px;}
.wsc3{word-spacing:3.395263px;}
.ws54{word-spacing:3.526760px;}
.ws56{word-spacing:3.586536px;}
.wsa3{word-spacing:3.646312px;}
.ws1a{word-spacing:3.706087px;}
.wse8{word-spacing:3.730007px;}
.ws5f{word-spacing:3.765863px;}
.ws117{word-spacing:3.777827px;}
.ws68{word-spacing:3.825638px;}
.ws10{word-spacing:3.885414px;}
.ws69{word-spacing:3.945190px;}
.ws34{word-spacing:4.004965px;}
.ws3a{word-spacing:4.064741px;}
.wse3{word-spacing:4.064751px;}
.ws3b{word-spacing:4.124516px;}
.ws70{word-spacing:4.184292px;}
.wsff{word-spacing:4.399495px;}
.ws8e{word-spacing:4.465345px;}
.wsab{word-spacing:4.602721px;}
.ws5c{word-spacing:4.662497px;}
.ws10d{word-spacing:4.734209px;}
.wsd0{word-spacing:4.743818px;}
.ws88{word-spacing:4.782030px;}
.ws87{word-spacing:4.782060px;}
.wsb1{word-spacing:4.901599px;}
.ws19{word-spacing:4.961375px;}
.ws111{word-spacing:4.973342px;}
.ws8c{word-spacing:5.017242px;}
.ws31{word-spacing:5.021150px;}
.wsa2{word-spacing:5.200477px;}
.wsd5{word-spacing:5.379840px;}
.ws7c{word-spacing:5.559131px;}
.ws10c{word-spacing:5.595010px;}
.ws2f{word-spacing:5.678682px;}
.wscc{word-spacing:5.690651px;}
.ws27{word-spacing:5.738458px;}
.wsc9{word-spacing:5.786293px;}
.wsd9{word-spacing:5.881934px;}
.wse{word-spacing:5.917754px;}
.ws51{word-spacing:5.917784px;}
.ws80{word-spacing:5.929754px;}
.ws82{word-spacing:5.977530px;}
.ws4{word-spacing:5.977560px;}
.ws112{word-spacing:5.977575px;}
.ws3f{word-spacing:6.037336px;}
.ws14{word-spacing:6.097111px;}
.ws11f{word-spacing:6.168857px;}
.ws48{word-spacing:6.276438px;}
.wsa7{word-spacing:6.336214px;}
.ws9c{word-spacing:6.395989px;}
.ws13{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.wsbe{word-spacing:6.599243px;}
.ws7f{word-spacing:6.635092px;}
.ws4b{word-spacing:6.694867px;}
.ws1{word-spacing:6.724800px;}
.ws93{word-spacing:6.754643px;}
.ws1f{word-spacing:6.814418px;}
.ws28{word-spacing:6.874194px;}
.wsfc{word-spacing:6.886166px;}
.wsb4{word-spacing:6.933970px;}
.wse6{word-spacing:6.933987px;}
.ws40{word-spacing:7.053521px;}
.wsea{word-spacing:7.077449px;}
.ws22{word-spacing:7.113296px;}
.wsb9{word-spacing:7.173090px;}
.ws38{word-spacing:7.232848px;}
.wsa4{word-spacing:7.292623px;}
.wsc1{word-spacing:7.316552px;}
.ws6{word-spacing:7.471950px;}
.ws96{word-spacing:7.531726px;}
.ws5e{word-spacing:7.651277px;}
.ws107{word-spacing:7.651296px;}
.ws118{word-spacing:7.699117px;}
.ws18{word-spacing:7.711052px;}
.wsae{word-spacing:7.770828px;}
.ws1d{word-spacing:7.890379px;}
.ws4f{word-spacing:7.950155px;}
.ws116{word-spacing:7.986040px;}
.wsbd{word-spacing:8.129502px;}
.wsb0{word-spacing:8.189257px;}
.wse5{word-spacing:8.320784px;}
.ws47{word-spacing:8.368584px;}
.ws79{word-spacing:8.428360px;}
.wsb6{word-spacing:8.559887px;}
.ws2d{word-spacing:8.607686px;}
.wse1{word-spacing:8.607708px;}
.ws26{word-spacing:8.667462px;}
.ws91{word-spacing:8.727238px;}
.ws29{word-spacing:8.906564px;}
.ws1b{word-spacing:8.966340px;}
.ws2b{word-spacing:9.085891px;}
.ws9e{word-spacing:9.384769px;}
.ws97{word-spacing:9.623872px;}
.ws43{word-spacing:9.683647px;}
.wsdd{word-spacing:9.707582px;}
.ws58{word-spacing:9.743423px;}
.wsbc{word-spacing:9.755402px;}
.ws109{word-spacing:9.851044px;}
.ws59{word-spacing:9.862974px;}
.ws105{word-spacing:9.946685px;}
.wsaa{word-spacing:9.982525px;}
.wsba{word-spacing:10.185788px;}
.wsa6{word-spacing:10.221628px;}
.wsc5{word-spacing:10.233608px;}
.ws23{word-spacing:10.281403px;}
.wsf5{word-spacing:10.377070px;}
.ws21{word-spacing:10.580281px;}
.wsf0{word-spacing:10.663994px;}
.ws62{word-spacing:10.699832px;}
.ws3c{word-spacing:10.759608px;}
.ws10a{word-spacing:10.759635px;}
.ws20{word-spacing:10.879159px;}
.ws75{word-spacing:10.998710px;}
.wscd{word-spacing:11.046559px;}
.ws5a{word-spacing:11.058486px;}
.wsf8{word-spacing:11.285662px;}
.ws4c{word-spacing:11.357364px;}
.wsb3{word-spacing:11.417140px;}
.ws95{word-spacing:11.536691px;}
.wsf4{word-spacing:11.572585px;}
.ws72{word-spacing:11.835569px;}
.ws71{word-spacing:11.895344px;}
.ws5d{word-spacing:11.955120px;}
.ws8d{word-spacing:11.991208px;}
.wsac{word-spacing:12.074671px;}
.wsec{word-spacing:12.194253px;}
.ws99{word-spacing:12.253998px;}
.ws86{word-spacing:12.493100px;}
.ws52{word-spacing:12.612652px;}
.wsfd{word-spacing:12.672459px;}
.ws42{word-spacing:12.791978px;}
.ws11c{word-spacing:12.911562px;}
.ws33{word-spacing:13.031081px;}
.wsa0{word-spacing:13.090856px;}
.wsa8{word-spacing:13.150632px;}
.wsda{word-spacing:13.246306px;}
.ws6e{word-spacing:13.270183px;}
.ws102{word-spacing:13.341947px;}
.ws98{word-spacing:13.509286px;}
.ws55{word-spacing:13.569061px;}
.wsa1{word-spacing:13.628837px;}
.ws101{word-spacing:13.676692px;}
.ws7e{word-spacing:13.688612px;}
.wsf1{word-spacing:13.915795px;}
.wsc8{word-spacing:14.011436px;}
.ws4d{word-spacing:14.166817px;}
.ws83{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.ws76{word-spacing:14.405920px;}
.ws32{word-spacing:14.465695px;}
.wsc6{word-spacing:14.537462px;}
.ws35{word-spacing:14.645022px;}
.ws3d{word-spacing:14.824349px;}
.ws7{word-spacing:14.943900px;}
.ws103{word-spacing:14.967848px;}
.ws9a{word-spacing:15.242778px;}
.ws4e{word-spacing:15.302554px;}
.wsc4{word-spacing:15.302592px;}
.ws39{word-spacing:15.362329px;}
.ws2a{word-spacing:15.422105px;}
.ws11a{word-spacing:15.446054px;}
.ws78{word-spacing:15.481880px;}
.wsfa{word-spacing:15.732977px;}
.wsf9{word-spacing:15.780798px;}
.wsdf{word-spacing:15.828619px;}
.wse4{word-spacing:15.972080px;}
.ws17{word-spacing:16.019861px;}
.ws64{word-spacing:16.079636px;}
.wsf2{word-spacing:16.115542px;}
.ws49{word-spacing:16.139412px;}
.ws2e{word-spacing:16.199188px;}
.wsa9{word-spacing:16.258963px;}
.ws100{word-spacing:16.306825px;}
.ws60{word-spacing:16.318739px;}
.ws7d{word-spacing:16.498066px;}
.ws25{word-spacing:16.557841px;}
.wsb8{word-spacing:16.689389px;}
.ws85{word-spacing:16.796944px;}
.wsfb{word-spacing:16.832851px;}
.ws8f{word-spacing:16.916495px;}
.ws6b{word-spacing:17.155597px;}
.wsaf{word-spacing:17.215373px;}
.ws11d{word-spacing:17.358878px;}
.ws7b{word-spacing:17.394700px;}
.ws10b{word-spacing:17.454519px;}
.wsd7{word-spacing:17.502340px;}
.wsca{word-spacing:17.693622px;}
.ws94{word-spacing:17.813129px;}
.ws53{word-spacing:17.872904px;}
.wsb{word-spacing:17.932680px;}
.ws77{word-spacing:17.992456px;}
.ws63{word-spacing:18.231558px;}
.ws1c{word-spacing:18.351109px;}
.wsbf{word-spacing:18.506572px;}
.ws4a{word-spacing:18.530436px;}
.ws6a{word-spacing:18.829314px;}
.wse7{word-spacing:18.841316px;}
.wse9{word-spacing:18.984778px;}
.ws46{word-spacing:19.128192px;}
.wsc0{word-spacing:19.176061px;}
.ws108{word-spacing:19.558625px;}
.ws119{word-spacing:19.606446px;}
.ws37{word-spacing:19.725948px;}
.ws6f{word-spacing:19.965050px;}
.ws5b{word-spacing:20.024826px;}
.ws114{word-spacing:20.036831px;}
.ws74{word-spacing:20.084602px;}
.wscf{word-spacing:20.371576px;}
.wsb2{word-spacing:20.383480px;}
.wsb7{word-spacing:20.467217px;}
.ws6c{word-spacing:20.503031px;}
.wseb{word-spacing:20.515037px;}
.ws16{word-spacing:20.861684px;}
.ws2c{word-spacing:20.921460px;}
.ws61{word-spacing:21.220338px;}
.ws50{word-spacing:21.459440px;}
.wsbb{word-spacing:21.662732px;}
.wse0{word-spacing:22.093117px;}
.wsf6{word-spacing:22.284400px;}
.ws7a{word-spacing:22.415850px;}
.ws90{word-spacing:22.475626px;}
.ws36{word-spacing:22.894055px;}
.wsce{word-spacing:22.953888px;}
.wsf7{word-spacing:23.192991px;}
.wsef{word-spacing:23.958121px;}
.wsed{word-spacing:24.101582px;}
.wsdc{word-spacing:24.675430px;}
.wsdb{word-spacing:25.153636px;}
.wsc7{word-spacing:25.918765px;}
.ws9f{word-spacing:26.361040px;}
.ws120{word-spacing:26.396971px;}
.wsad{word-spacing:26.839244px;}
.ws104{word-spacing:26.875177px;}
.wsf3{word-spacing:27.975051px;}
.ws113{word-spacing:29.122745px;}
.wsd8{word-spacing:29.409669px;}
.ws73{word-spacing:30.306229px;}
.wsee{word-spacing:35.865450px;}
.ws11e{word-spacing:38.113018px;}
.ws121{word-spacing:38.304301px;}
.wsd4{word-spacing:77.738688px;}
.ws8b{word-spacing:308.209158px;}
.wsa{word-spacing:1183.795982px;}
.ws9{word-spacing:1341.962220px;}
._50{margin-left:-11.824844px;}
._2{margin-left:-7.308013px;}
._0{margin-left:-5.738472px;}
._4{margin-left:-4.634290px;}
._5{margin-left:-3.060518px;}
._1{margin-left:-1.344960px;}
._19{width:1.158543px;}
._3{width:2.977931px;}
._75{width:4.127861px;}
._13{width:17.574026px;}
._c{width:20.921460px;}
._14{width:21.967542px;}
._22{width:25.583971px;}
._4f{width:27.927230px;}
._a{width:29.409595px;}
._12{width:32.129394px;}
._1c{width:34.980689px;}
._1a{width:38.585159px;}
._1b{width:40.707220px;}
._d{width:45.190354px;}
._11{width:47.832443px;}
._2b{width:71.767066px;}
._27{width:88.229376px;}
._10{width:94.624775px;}
._15{width:97.972208px;}
._38{width:100.118822px;}
._b{width:102.096725px;}
._8{width:104.427973px;}
._2a{width:113.508634px;}
._e{width:117.877483px;}
._17{width:121.224917px;}
._21{width:126.876349px;}
._6{width:141.130192px;}
._9{width:144.477625px;}
._1d{width:165.700103px;}
._1e{width:254.300607px;}
._39{width:257.371546px;}
._1f{width:269.064978px;}
._51{width:272.058509px;}
._5e{width:280.235866px;}
._55{width:282.226406px;}
._20{width:300.332089px;}
._2c{width:306.712306px;}
._4c{width:308.211034px;}
._5c{width:311.331341px;}
._65{width:315.151027px;}
._64{width:322.569216px;}
._6e{width:330.967757px;}
._67{width:338.983718px;}
._6c{width:344.955341px;}
._58{width:348.828826px;}
._3b{width:365.979169px;}
._53{width:381.807245px;}
._72{width:383.482622px;}
._5a{width:384.658560px;}
._25{width:390.422616px;}
._5d{width:391.646362px;}
._42{width:394.718861px;}
._48{width:399.291725px;}
._28{width:405.378571px;}
._30{width:406.662106px;}
._36{width:412.687526px;}
._32{width:417.045197px;}
._31{width:432.216346px;}
._3c{width:436.627814px;}
._37{width:440.070912px;}
._62{width:450.507802px;}
._60{width:459.438336px;}
._2d{width:465.578981px;}
._69{width:474.340493px;}
._3e{width:478.429171px;}
._33{width:482.302656px;}
._2e{width:484.400794px;}
._34{width:487.413504px;}
._47{width:490.426214px;}
._40{width:493.385126px;}
._4e{width:496.720627px;}
._29{width:500.601739px;}
._35{width:511.784179px;}
._2f{width:520.714714px;}
._7{width:540.134011px;}
._3a{width:542.503066px;}
._26{width:546.276581px;}
._3f{width:553.585536px;}
._4d{width:559.610957px;}
._4a{width:571.123814px;}
._46{width:589.038682px;}
._74{width:600.674390px;}
._44{width:603.887040px;}
._49{width:643.267469px;}
._43{width:647.033357px;}
._63{width:658.177253px;}
._57{width:672.041986px;}
._5f{width:685.399243px;}
._f{width:689.332219px;}
._23{width:702.660902px;}
._6f{width:712.936397px;}
._3d{width:737.629862px;}
._59{width:745.653451px;}
._4b{width:775.665331px;}
._41{width:784.757261px;}
._6b{width:787.154242px;}
._56{width:809.612122px;}
._18{width:814.920755px;}
._66{width:852.644851px;}
._71{width:861.173870px;}
._16{width:866.118565px;}
._61{width:879.496243px;}
._6a{width:882.570379px;}
._5b{width:887.083454px;}
._45{width:891.662309px;}
._70{width:946.699709px;}
._6d{width:977.409331px;}
._73{width:1044.288370px;}
._68{width:1073.977459px;}
._54{width:1132.396531px;}
._24{width:1506.516595px;}
._52{width:1676.573338px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.256600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:46.027200px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:50.172417px;}
.fs1{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2a{bottom:113.332500px;}
.y146{bottom:123.151500px;}
.y10f{bottom:126.783000px;}
.y51{bottom:131.265000px;}
.y29{bottom:131.266500px;}
.y145{bottom:136.600500px;}
.y10e{bottom:140.232000px;}
.y86{bottom:149.197500px;}
.y28{bottom:149.199000px;}
.y50{bottom:149.407500px;}
.y144{bottom:150.051000px;}
.y10d{bottom:153.681000px;}
.y143{bottom:163.500000px;}
.y85{bottom:167.131500px;}
.y27{bottom:167.260500px;}
.y4f{bottom:167.340000px;}
.y142{bottom:176.949000px;}
.y14b{bottom:176.950500px;}
.y10c{bottom:180.580500px;}
.y84{bottom:185.064000px;}
.y26{bottom:185.193000px;}
.y4e{bottom:185.272500px;}
.y141{bottom:190.399500px;}
.y10b{bottom:194.029500px;}
.y83{bottom:202.996500px;}
.y25{bottom:203.125500px;}
.y4d{bottom:203.206500px;}
.y140{bottom:203.848500px;}
.y10a{bottom:207.480000px;}
.ydc{bottom:207.786000px;}
.y13f{bottom:217.297500px;}
.y14a{bottom:217.299000px;}
.y82{bottom:220.929000px;}
.y24{bottom:221.058000px;}
.y4c{bottom:221.139000px;}
.yaf{bottom:226.416000px;}
.y13e{bottom:230.748000px;}
.y109{bottom:234.379500px;}
.ydb{bottom:236.005500px;}
.y81{bottom:238.861500px;}
.y23{bottom:238.992000px;}
.y4b{bottom:239.071500px;}
.y13d{bottom:244.197000px;}
.yae{bottom:244.348500px;}
.y108{bottom:247.828500px;}
.yda{bottom:253.938000px;}
.y22{bottom:256.924500px;}
.y80{bottom:256.990500px;}
.y4a{bottom:257.004000px;}
.y13c{bottom:257.647500px;}
.y107{bottom:261.277500px;}
.y13b{bottom:271.096500px;}
.yd9{bottom:271.870500px;}
.yad{bottom:273.474000px;}
.y106{bottom:274.728000px;}
.y21{bottom:274.857000px;}
.y7f{bottom:274.923000px;}
.y49{bottom:274.936500px;}
.y13a{bottom:284.545500px;}
.y105{bottom:288.177000px;}
.yd8{bottom:289.803000px;}
.yac{bottom:291.406500px;}
.y20{bottom:292.789500px;}
.y7e{bottom:292.857000px;}
.y48{bottom:292.869000px;}
.y139{bottom:297.996000px;}
.y104{bottom:301.626000px;}
.yd7{bottom:307.759500px;}
.yab{bottom:309.339000px;}
.y7d{bottom:310.789500px;}
.y47{bottom:310.803000px;}
.y138{bottom:311.445000px;}
.y103{bottom:315.076500px;}
.y1f{bottom:315.880500px;}
.y137{bottom:324.894000px;}
.y149{bottom:324.895500px;}
.yd6{bottom:325.692000px;}
.yaa{bottom:327.271500px;}
.y102{bottom:328.525500px;}
.y7c{bottom:328.722000px;}
.y46{bottom:334.174500px;}
.y136{bottom:338.344500px;}
.y101{bottom:341.976000px;}
.yd5{bottom:343.626000px;}
.y1e{bottom:344.995500px;}
.ya9{bottom:345.204000px;}
.y7b{bottom:346.654500px;}
.y135{bottom:351.793500px;}
.y100{bottom:355.425000px;}
.yd4{bottom:361.558500px;}
.y1d{bottom:362.928000px;}
.ya8{bottom:363.138000px;}
.y45{bottom:363.973500px;}
.y7a{bottom:364.587000px;}
.y134{bottom:365.244000px;}
.yff{bottom:368.874000px;}
.y133{bottom:378.693000px;}
.yd3{bottom:379.491000px;}
.y1c{bottom:380.860500px;}
.ya7{bottom:381.070500px;}
.y44{bottom:381.906000px;}
.yfe{bottom:382.324500px;}
.y79{bottom:382.519500px;}
.y132{bottom:392.142000px;}
.y16e{bottom:393.636000px;}
.yfd{bottom:395.773500px;}
.yd2{bottom:397.423500px;}
.y1b{bottom:398.793000px;}
.ya6{bottom:399.003000px;}
.y43{bottom:399.838500px;}
.y131{bottom:405.592500px;}
.y78{bottom:405.847500px;}
.y16d{bottom:407.086500px;}
.yfc{bottom:409.222500px;}
.yd1{bottom:415.356000px;}
.y1a{bottom:416.727000px;}
.ya5{bottom:416.935500px;}
.y42{bottom:417.771000px;}
.y130{bottom:419.041500px;}
.y16c{bottom:420.535500px;}
.yfb{bottom:422.673000px;}
.y12f{bottom:432.490500px;}
.y148{bottom:432.492000px;}
.yd0{bottom:433.288500px;}
.y16b{bottom:433.984500px;}
.y16f{bottom:433.986000px;}
.y19{bottom:434.659500px;}
.ya4{bottom:434.868000px;}
.y77{bottom:435.534000px;}
.y41{bottom:435.703500px;}
.yfa{bottom:444.237000px;}
.y12e{bottom:445.941000px;}
.y16a{bottom:447.435000px;}
.ycf{bottom:451.222500px;}
.y18{bottom:452.592000px;}
.ya3{bottom:452.802000px;}
.y76{bottom:453.466500px;}
.y40{bottom:453.637500px;}
.y12d{bottom:459.390000px;}
.y169{bottom:460.884000px;}
.yce{bottom:469.155000px;}
.yf9{bottom:470.373000px;}
.ya2{bottom:470.734500px;}
.y75{bottom:471.399000px;}
.y3f{bottom:471.570000px;}
.y12c{bottom:472.839000px;}
.y147{bottom:472.840500px;}
.y168{bottom:474.334500px;}
.y17{bottom:476.005500px;}
.y12b{bottom:486.289500px;}
.ycd{bottom:487.087500px;}
.y167{bottom:487.783500px;}
.yf8{bottom:488.307000px;}
.ya1{bottom:488.667000px;}
.y74{bottom:489.331500px;}
.y3e{bottom:489.502500px;}
.y12a{bottom:499.738500px;}
.y166{bottom:501.232500px;}
.y16{bottom:505.120500px;}
.yf7{bottom:506.239500px;}
.ya0{bottom:506.599500px;}
.y73{bottom:507.265500px;}
.y3d{bottom:507.435000px;}
.ycc{bottom:509.809500px;}
.y129{bottom:513.189000px;}
.y165{bottom:514.683000px;}
.yf6{bottom:524.172000px;}
.y9f{bottom:524.532000px;}
.y72{bottom:525.198000px;}
.y3c{bottom:525.367500px;}
.y128{bottom:526.638000px;}
.y164{bottom:528.132000px;}
.ycb{bottom:538.029000px;}
.y15{bottom:538.269000px;}
.y163{bottom:541.581000px;}
.yf5{bottom:542.104500px;}
.y9e{bottom:542.464500px;}
.y71{bottom:543.130500px;}
.y3b{bottom:543.300000px;}
.y162{bottom:555.031500px;}
.yca{bottom:555.961500px;}
.yf4{bottom:560.037000px;}
.y9d{bottom:560.398500px;}
.y70{bottom:561.063000px;}
.y3a{bottom:561.442500px;}
.y14{bottom:571.417500px;}
.yc9{bottom:573.894000px;}
.yf3{bottom:577.971000px;}
.y9c{bottom:578.331000px;}
.y6f{bottom:579.192000px;}
.y127{bottom:579.240000px;}
.y39{bottom:579.375000px;}
.yc8{bottom:591.828000px;}
.y9b{bottom:596.263500px;}
.y6e{bottom:597.124500px;}
.y38{bottom:597.307500px;}
.y126{bottom:600.162000px;}
.yf2{bottom:600.297000px;}
.y13{bottom:604.566000px;}
.y161{bottom:607.633500px;}
.yc7{bottom:609.760500px;}
.y6d{bottom:615.057000px;}
.y37{bottom:615.241500px;}
.y9a{bottom:617.458500px;}
.y125{bottom:621.084000px;}
.y12{bottom:622.656000px;}
.yf1{bottom:626.433000px;}
.yc6{bottom:627.693000px;}
.y160{bottom:628.555500px;}
.y6c{bottom:632.991000px;}
.y36{bottom:633.174000px;}
.y99{bottom:635.392500px;}
.y11{bottom:640.746000px;}
.y124{bottom:642.004500px;}
.yf0{bottom:644.367000px;}
.yc5{bottom:645.625500px;}
.y15f{bottom:649.477500px;}
.y6b{bottom:650.923500px;}
.y35{bottom:651.106500px;}
.y98{bottom:653.325000px;}
.y10{bottom:658.836000px;}
.yef{bottom:662.299500px;}
.y123{bottom:662.926500px;}
.yc4{bottom:663.558000px;}
.y6a{bottom:668.856000px;}
.y34{bottom:669.039000px;}
.y15e{bottom:670.398000px;}
.y97{bottom:671.257500px;}
.yf{bottom:676.926000px;}
.yee{bottom:680.232000px;}
.yc3{bottom:681.490500px;}
.y122{bottom:683.848500px;}
.y69{bottom:686.788500px;}
.y33{bottom:686.971500px;}
.y96{bottom:689.190000px;}
.y15d{bottom:691.320000px;}
.ye{bottom:694.860000px;}
.yed{bottom:698.164500px;}
.yc2{bottom:699.424500px;}
.y68{bottom:704.721000px;}
.y121{bottom:704.769000px;}
.y32{bottom:705.114000px;}
.y95{bottom:707.122500px;}
.y15c{bottom:712.240500px;}
.yec{bottom:716.097000px;}
.yc1{bottom:717.357000px;}
.y67{bottom:722.653500px;}
.y31{bottom:723.046500px;}
.y94{bottom:725.056500px;}
.y120{bottom:725.691000px;}
.yd{bottom:728.008500px;}
.y15b{bottom:733.162500px;}
.yeb{bottom:734.029500px;}
.yc0{bottom:740.079000px;}
.y66{bottom:740.587500px;}
.y30{bottom:740.979000px;}
.y93{bottom:742.989000px;}
.y11f{bottom:746.611500px;}
.yea{bottom:751.648500px;}
.y15a{bottom:754.084500px;}
.y65{bottom:758.520000px;}
.y2f{bottom:758.911500px;}
.yc{bottom:761.157000px;}
.y92{bottom:764.184000px;}
.y11e{bottom:767.533500px;}
.ybf{bottom:768.298500px;}
.ye9{bottom:769.582500px;}
.y159{bottom:775.005000px;}
.y64{bottom:776.452500px;}
.y2e{bottom:776.845500px;}
.yb{bottom:779.247000px;}
.y91{bottom:782.116500px;}
.ybe{bottom:786.231000px;}
.ye8{bottom:787.515000px;}
.y11d{bottom:788.455500px;}
.y63{bottom:794.385000px;}
.y2d{bottom:794.778000px;}
.y158{bottom:795.927000px;}
.ya{bottom:797.337000px;}
.y90{bottom:800.050500px;}
.ybd{bottom:804.163500px;}
.ye7{bottom:805.447500px;}
.y11c{bottom:809.376000px;}
.y62{bottom:812.514000px;}
.y2c{bottom:812.710500px;}
.y9{bottom:815.427000px;}
.y157{bottom:816.849000px;}
.y8f{bottom:817.983000px;}
.ybc{bottom:822.120000px;}
.ye6{bottom:823.380000px;}
.y11b{bottom:830.298000px;}
.y61{bottom:830.446500px;}
.y2b{bottom:830.643000px;}
.y8e{bottom:835.915500px;}
.y156{bottom:837.769500px;}
.ybb{bottom:840.052500px;}
.ye5{bottom:845.706000px;}
.y60{bottom:848.379000px;}
.y8{bottom:848.575500px;}
.y11a{bottom:851.220000px;}
.y8d{bottom:853.848000px;}
.yba{bottom:857.985000px;}
.y155{bottom:858.691500px;}
.y5f{bottom:866.313000px;}
.ye4{bottom:871.843500px;}
.y119{bottom:872.140500px;}
.yb9{bottom:875.917500px;}
.y154{bottom:879.612000px;}
.y5e{bottom:884.245500px;}
.ye3{bottom:889.776000px;}
.y118{bottom:893.062500px;}
.y7{bottom:894.691500px;}
.y153{bottom:900.534000px;}
.y8c{bottom:901.311000px;}
.y5d{bottom:902.178000px;}
.ye2{bottom:907.708500px;}
.y117{bottom:913.983000px;}
.y6{bottom:918.607500px;}
.y8b{bottom:919.243500px;}
.y5c{bottom:920.110500px;}
.y152{bottom:921.456000px;}
.ye1{bottom:925.641000px;}
.yb8{bottom:928.263635px;}
.y116{bottom:934.905000px;}
.y5{bottom:937.101000px;}
.y5b{bottom:938.043000px;}
.yb7{bottom:942.374057px;}
.y151{bottom:942.376500px;}
.ye0{bottom:943.575000px;}
.y4{bottom:950.392500px;}
.y8a{bottom:952.120500px;}
.y115{bottom:955.827000px;}
.y5a{bottom:955.977000px;}
.ydf{bottom:961.507500px;}
.yb6{bottom:962.129592px;}
.y150{bottom:963.298500px;}
.y89{bottom:970.053000px;}
.y59{bottom:973.909500px;}
.y114{bottom:976.747500px;}
.yde{bottom:979.440000px;}
.yb5{bottom:981.885126px;}
.y14f{bottom:984.220500px;}
.y58{bottom:992.038500px;}
.y3{bottom:997.465500px;}
.y113{bottom:997.669500px;}
.y88{bottom:998.778000px;}
.yb4{bottom:1001.640661px;}
.ydd{bottom:1001.766000px;}
.y14e{bottom:1005.141000px;}
.y57{bottom:1009.971000px;}
.yb3{bottom:1015.751083px;}
.y112{bottom:1018.591500px;}
.y14d{bottom:1026.660000px;}
.y56{bottom:1027.903500px;}
.yb2{bottom:1035.506618px;}
.y2{bottom:1039.309500px;}
.y111{bottom:1040.110500px;}
.y55{bottom:1045.836000px;}
.yb1{bottom:1055.888513px;}
.y14c{bottom:1059.286500px;}
.y54{bottom:1063.768500px;}
.y110{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y53{bottom:1081.701000px;}
.yb0{bottom:1086.184500px;}
.y87{bottom:1099.633500px;}
.y52{bottom:1099.635000px;}
.h4{height:28.787846px;}
.hc{height:32.661470px;}
.h9{height:32.900573px;}
.hf{height:33.140573px;}
.hd{height:33.187496px;}
.hb{height:34.518623px;}
.ha{height:34.819657px;}
.he{height:37.013299px;}
.h2{height:37.336090px;}
.h7{height:40.826735px;}
.h5{height:41.125613px;}
.h6{height:41.484266px;}
.h8{height:42.141798px;}
.h3{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.446000px;}
.x22{left:79.423500px;}
.x18{left:82.852423px;}
.xc{left:88.390500px;}
.x2{left:99.864000px;}
.x20{left:103.870500px;}
.x21{left:109.254000px;}
.x28{left:111.169500px;}
.xa{left:114.541500px;}
.x2a{left:124.492500px;}
.xb{left:144.102000px;}
.x7{left:155.910000px;}
.x17{left:172.167000px;}
.x1{left:200.250000px;}
.x4{left:210.810000px;}
.x19{left:213.195202px;}
.x24{left:217.530000px;}
.x8{left:226.951500px;}
.x16{left:238.953000px;}
.x5{left:241.845000px;}
.x29{left:287.044500px;}
.x6{left:301.464000px;}
.x1f{left:320.238000px;}
.x23{left:332.526000px;}
.x27{left:354.925500px;}
.x3{left:409.183500px;}
.x26{left:432.232500px;}
.x1e{left:434.223000px;}
.xd{left:467.967000px;}
.x14{left:472.026000px;}
.x11{left:473.326500px;}
.xe{left:482.910000px;}
.x10{left:489.226500px;}
.x1d{left:495.355500px;}
.x13{left:498.000000px;}
.x12{left:519.259500px;}
.xf{left:557.257500px;}
.x1b{left:573.105000px;}
.x1a{left:576.027000px;}
.x1c{left:614.418000px;}
.x15{left:625.476000px;}
.x25{left:736.489500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.034006pt;}
.ls18{letter-spacing:0.127522pt;}
.ls19{letter-spacing:0.212536pt;}
.ls17{letter-spacing:0.297550pt;}
.lsf{letter-spacing:1.462252pt;}
.lsc{letter-spacing:2.108364pt;}
.ls16{letter-spacing:2.125360pt;}
.lsd{letter-spacing:2.142370pt;}
.ls5{letter-spacing:2.210374pt;}
.ls11{letter-spacing:2.550440pt;}
.ls4{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.654042pt;}
.ls0{letter-spacing:2.655932pt;}
.ls3{letter-spacing:2.656533pt;}
.lsb{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.658133pt;}
.ls7{letter-spacing:2.677954pt;}
.ls12{letter-spacing:5.100880pt;}
.ls10{letter-spacing:11.689480pt;}
.ls15{letter-spacing:12.709653pt;}
.ls14{letter-spacing:12.752160pt;}
.lse{letter-spacing:18.596853pt;}
.ls8{letter-spacing:25.340911pt;}
.lsa{letter-spacing:31.880320pt;}
.ls9{letter-spacing:34.531368pt;}
.ws10e{word-spacing:-23.378960pt;}
.ws81{word-spacing:-15.940160pt;}
.ws67{word-spacing:-13.283467pt;}
.ws5{word-spacing:-13.262246pt;}
.ws115{word-spacing:-10.839336pt;}
.wsf{word-spacing:-10.626800pt;}
.ws8a{word-spacing:-10.609830pt;}
.ws3{word-spacing:-10.228267pt;}
.wsd1{word-spacing:-8.501467pt;}
.wsd2{word-spacing:-5.134886pt;}
.ws10f{word-spacing:-2.125360pt;}
.wsde{word-spacing:-0.765130pt;}
.wsb5{word-spacing:-0.637608pt;}
.wsd6{word-spacing:-0.595101pt;}
.ws65{word-spacing:-0.584473pt;}
.ws92{word-spacing:-0.531339pt;}
.wsa5{word-spacing:-0.212535pt;}
.ws8{word-spacing:-0.053134pt;}
.wscb{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.010667pt;}
.ws89{word-spacing:-0.008541pt;}
.ws3e{word-spacing:0.000000pt;}
.ws110{word-spacing:0.033966pt;}
.ws66{word-spacing:0.042467pt;}
.ws106{word-spacing:0.042507pt;}
.ws15{word-spacing:0.106268pt;}
.ws44{word-spacing:0.159402pt;}
.ws84{word-spacing:0.478205pt;}
.ws30{word-spacing:0.584473pt;}
.ws9b{word-spacing:0.637606pt;}
.ws9d{word-spacing:0.690740pt;}
.ws24{word-spacing:0.850142pt;}
.ws11b{word-spacing:0.892651pt;}
.ws57{word-spacing:1.062677pt;}
.wse2{word-spacing:1.275216pt;}
.ws45{word-spacing:1.381481pt;}
.wsc2{word-spacing:1.657781pt;}
.ws1e{word-spacing:1.859685pt;}
.wsd3{word-spacing:2.125360pt;}
.ws12{word-spacing:2.231622pt;}
.ws11{word-spacing:2.444158pt;}
.ws41{word-spacing:2.497292pt;}
.ws6d{word-spacing:2.550426pt;}
.wsfe{word-spacing:2.635446pt;}
.wsd{word-spacing:2.656693pt;}
.wsc3{word-spacing:3.018011pt;}
.ws54{word-spacing:3.134898pt;}
.ws56{word-spacing:3.188032pt;}
.wsa3{word-spacing:3.241166pt;}
.ws1a{word-spacing:3.294300pt;}
.wse8{word-spacing:3.315562pt;}
.ws5f{word-spacing:3.347434pt;}
.ws117{word-spacing:3.358069pt;}
.ws68{word-spacing:3.400567pt;}
.ws10{word-spacing:3.453701pt;}
.ws69{word-spacing:3.506835pt;}
.ws34{word-spacing:3.559969pt;}
.ws3a{word-spacing:3.613103pt;}
.wse3{word-spacing:3.613112pt;}
.ws3b{word-spacing:3.666237pt;}
.ws70{word-spacing:3.719371pt;}
.wsff{word-spacing:3.910662pt;}
.ws8e{word-spacing:3.969196pt;}
.wsab{word-spacing:4.091308pt;}
.ws5c{word-spacing:4.144442pt;}
.ws10d{word-spacing:4.208186pt;}
.wsd0{word-spacing:4.216727pt;}
.ws88{word-spacing:4.250693pt;}
.ws87{word-spacing:4.250720pt;}
.wsb1{word-spacing:4.356977pt;}
.ws19{word-spacing:4.410111pt;}
.ws111{word-spacing:4.420749pt;}
.ws8c{word-spacing:4.459770pt;}
.ws31{word-spacing:4.463245pt;}
.wsa2{word-spacing:4.622646pt;}
.wsd5{word-spacing:4.782080pt;}
.ws7c{word-spacing:4.941450pt;}
.ws10c{word-spacing:4.973342pt;}
.ws2f{word-spacing:5.047717pt;}
.wscc{word-spacing:5.058357pt;}
.ws27{word-spacing:5.100851pt;}
.wsc9{word-spacing:5.143371pt;}
.wsd9{word-spacing:5.228386pt;}
.wse{word-spacing:5.260226pt;}
.ws51{word-spacing:5.260253pt;}
.ws80{word-spacing:5.270893pt;}
.ws82{word-spacing:5.313360pt;}
.ws4{word-spacing:5.313387pt;}
.ws112{word-spacing:5.313400pt;}
.ws3f{word-spacing:5.366521pt;}
.ws14{word-spacing:5.419654pt;}
.ws11f{word-spacing:5.483429pt;}
.ws48{word-spacing:5.579056pt;}
.wsa7{word-spacing:5.632190pt;}
.ws9c{word-spacing:5.685324pt;}
.ws13{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.wsbe{word-spacing:5.865994pt;}
.ws7f{word-spacing:5.897859pt;}
.ws4b{word-spacing:5.950993pt;}
.ws1{word-spacing:5.977600pt;}
.ws93{word-spacing:6.004127pt;}
.ws1f{word-spacing:6.057261pt;}
.ws28{word-spacing:6.110395pt;}
.wsfc{word-spacing:6.121037pt;}
.wsb4{word-spacing:6.163529pt;}
.wse6{word-spacing:6.163544pt;}
.ws40{word-spacing:6.269796pt;}
.wsea{word-spacing:6.291066pt;}
.ws22{word-spacing:6.322930pt;}
.wsb9{word-spacing:6.376080pt;}
.ws38{word-spacing:6.429198pt;}
.wsa4{word-spacing:6.482332pt;}
.wsc1{word-spacing:6.503602pt;}
.ws6{word-spacing:6.641733pt;}
.ws96{word-spacing:6.694867pt;}
.ws5e{word-spacing:6.801135pt;}
.ws107{word-spacing:6.801152pt;}
.ws118{word-spacing:6.843659pt;}
.ws18{word-spacing:6.854269pt;}
.wsae{word-spacing:6.907403pt;}
.ws1d{word-spacing:7.013670pt;}
.ws4f{word-spacing:7.066804pt;}
.ws116{word-spacing:7.098702pt;}
.wsbd{word-spacing:7.226224pt;}
.wsb0{word-spacing:7.279340pt;}
.wse5{word-spacing:7.396253pt;}
.ws47{word-spacing:7.438741pt;}
.ws79{word-spacing:7.491875pt;}
.wsb6{word-spacing:7.608789pt;}
.ws2d{word-spacing:7.651277pt;}
.wse1{word-spacing:7.651296pt;}
.ws26{word-spacing:7.704411pt;}
.ws91{word-spacing:7.757545pt;}
.ws29{word-spacing:7.916946pt;}
.ws1b{word-spacing:7.970080pt;}
.ws2b{word-spacing:8.076348pt;}
.ws9e{word-spacing:8.342017pt;}
.ws97{word-spacing:8.554553pt;}
.ws43{word-spacing:8.607686pt;}
.wsdd{word-spacing:8.628962pt;}
.ws58{word-spacing:8.660820pt;}
.wsbc{word-spacing:8.671469pt;}
.ws109{word-spacing:8.756483pt;}
.ws59{word-spacing:8.767088pt;}
.ws105{word-spacing:8.841498pt;}
.wsaa{word-spacing:8.873356pt;}
.wsba{word-spacing:9.054034pt;}
.wsa6{word-spacing:9.085891pt;}
.wsc5{word-spacing:9.096541pt;}
.ws23{word-spacing:9.139025pt;}
.wsf5{word-spacing:9.224062pt;}
.ws21{word-spacing:9.404694pt;}
.wsf0{word-spacing:9.479106pt;}
.ws62{word-spacing:9.510962pt;}
.ws3c{word-spacing:9.564096pt;}
.ws10a{word-spacing:9.564120pt;}
.ws20{word-spacing:9.670364pt;}
.ws75{word-spacing:9.776631pt;}
.wscd{word-spacing:9.819163pt;}
.ws5a{word-spacing:9.829765pt;}
.wsf8{word-spacing:10.031699pt;}
.ws4c{word-spacing:10.095435pt;}
.wsb3{word-spacing:10.148569pt;}
.ws95{word-spacing:10.254836pt;}
.wsf4{word-spacing:10.286742pt;}
.ws72{word-spacing:10.520506pt;}
.ws71{word-spacing:10.573639pt;}
.ws5d{word-spacing:10.626773pt;}
.ws8d{word-spacing:10.658851pt;}
.wsac{word-spacing:10.733041pt;}
.wsec{word-spacing:10.839336pt;}
.ws99{word-spacing:10.892443pt;}
.ws86{word-spacing:11.104978pt;}
.ws52{word-spacing:11.211246pt;}
.wsfd{word-spacing:11.264408pt;}
.ws42{word-spacing:11.370647pt;}
.ws11c{word-spacing:11.476944pt;}
.ws33{word-spacing:11.583183pt;}
.wsa0{word-spacing:11.636317pt;}
.wsa8{word-spacing:11.689451pt;}
.wsda{word-spacing:11.774494pt;}
.ws6e{word-spacing:11.795718pt;}
.ws102{word-spacing:11.859509pt;}
.ws98{word-spacing:12.008254pt;}
.ws55{word-spacing:12.061388pt;}
.wsa1{word-spacing:12.114522pt;}
.ws101{word-spacing:12.157059pt;}
.ws7e{word-spacing:12.167655pt;}
.wsf1{word-spacing:12.369595pt;}
.wsc8{word-spacing:12.454610pt;}
.ws4d{word-spacing:12.592726pt;}
.ws83{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.ws76{word-spacing:12.805262pt;}
.ws32{word-spacing:12.858396pt;}
.wsc6{word-spacing:12.922189pt;}
.ws35{word-spacing:13.017797pt;}
.ws3d{word-spacing:13.177199pt;}
.ws7{word-spacing:13.283467pt;}
.ws103{word-spacing:13.304754pt;}
.ws9a{word-spacing:13.549136pt;}
.ws4e{word-spacing:13.602270pt;}
.wsc4{word-spacing:13.602304pt;}
.ws39{word-spacing:13.655404pt;}
.ws2a{word-spacing:13.708538pt;}
.ws11a{word-spacing:13.729826pt;}
.ws78{word-spacing:13.761671pt;}
.wsfa{word-spacing:13.984869pt;}
.wsf9{word-spacing:14.027376pt;}
.wsdf{word-spacing:14.069883pt;}
.wse4{word-spacing:14.197405pt;}
.ws17{word-spacing:14.239876pt;}
.ws64{word-spacing:14.293010pt;}
.wsf2{word-spacing:14.324926pt;}
.ws49{word-spacing:14.346144pt;}
.ws2e{word-spacing:14.399278pt;}
.wsa9{word-spacing:14.452412pt;}
.ws100{word-spacing:14.494955pt;}
.ws60{word-spacing:14.505546pt;}
.ws7d{word-spacing:14.664947pt;}
.ws25{word-spacing:14.718081pt;}
.wsb8{word-spacing:14.835013pt;}
.ws85{word-spacing:14.930617pt;}
.wsfb{word-spacing:14.962534pt;}
.ws8f{word-spacing:15.036884pt;}
.ws6b{word-spacing:15.249420pt;}
.wsaf{word-spacing:15.302554pt;}
.ws11d{word-spacing:15.430114pt;}
.ws7b{word-spacing:15.461955pt;}
.ws10b{word-spacing:15.515128pt;}
.wsd7{word-spacing:15.557635pt;}
.wsca{word-spacing:15.727664pt;}
.ws94{word-spacing:15.833892pt;}
.ws53{word-spacing:15.887026pt;}
.wsb{word-spacing:15.940160pt;}
.ws77{word-spacing:15.993294pt;}
.ws63{word-spacing:16.205829pt;}
.ws1c{word-spacing:16.312097pt;}
.wsbf{word-spacing:16.450286pt;}
.ws4a{word-spacing:16.471499pt;}
.ws6a{word-spacing:16.737168pt;}
.wse7{word-spacing:16.747837pt;}
.wse9{word-spacing:16.875358pt;}
.ws46{word-spacing:17.002837pt;}
.wsc0{word-spacing:17.045387pt;}
.ws108{word-spacing:17.385445pt;}
.ws119{word-spacing:17.427952pt;}
.ws37{word-spacing:17.534176pt;}
.ws6f{word-spacing:17.746711pt;}
.ws5b{word-spacing:17.799845pt;}
.ws114{word-spacing:17.810517pt;}
.ws74{word-spacing:17.852979pt;}
.wscf{word-spacing:18.108067pt;}
.wsb2{word-spacing:18.118649pt;}
.wsb7{word-spacing:18.193082pt;}
.ws6c{word-spacing:18.224916pt;}
.wseb{word-spacing:18.235589pt;}
.ws16{word-spacing:18.543719pt;}
.ws2c{word-spacing:18.596853pt;}
.ws61{word-spacing:18.862523pt;}
.ws50{word-spacing:19.075058pt;}
.wsbb{word-spacing:19.255762pt;}
.wse0{word-spacing:19.638326pt;}
.wsf6{word-spacing:19.808355pt;}
.ws7a{word-spacing:19.925200pt;}
.ws90{word-spacing:19.978334pt;}
.ws36{word-spacing:20.350271pt;}
.wsce{word-spacing:20.403456pt;}
.wsf7{word-spacing:20.615992pt;}
.wsef{word-spacing:21.296107pt;}
.wsed{word-spacing:21.423629pt;}
.wsdc{word-spacing:21.933715pt;}
.wsdb{word-spacing:22.358787pt;}
.wsc7{word-spacing:23.038902pt;}
.ws9f{word-spacing:23.432035pt;}
.ws120{word-spacing:23.463974pt;}
.wsad{word-spacing:23.857106pt;}
.ws104{word-spacing:23.889046pt;}
.wsf3{word-spacing:24.866712pt;}
.ws113{word-spacing:25.886885pt;}
.wsd8{word-spacing:26.141928pt;}
.ws73{word-spacing:26.938870pt;}
.wsee{word-spacing:31.880400pt;}
.ws11e{word-spacing:33.878238pt;}
.ws121{word-spacing:34.048267pt;}
.wsd4{word-spacing:69.101056pt;}
.ws8b{word-spacing:273.963696pt;}
.wsa{word-spacing:1052.263095pt;}
.ws9{word-spacing:1192.855307pt;}
._50{margin-left:-10.510973pt;}
._2{margin-left:-6.496012pt;}
._0{margin-left:-5.100864pt;}
._4{margin-left:-4.119369pt;}
._5{margin-left:-2.720461pt;}
._1{margin-left:-1.195520pt;}
._19{width:1.029816pt;}
._3{width:2.647050pt;}
._75{width:3.669210pt;}
._13{width:15.621357pt;}
._c{width:18.596853pt;}
._14{width:19.526704pt;}
._22{width:22.741308pt;}
._4f{width:24.824205pt;}
._a{width:26.141862pt;}
._12{width:28.559461pt;}
._1c{width:31.093946pt;}
._1a{width:34.297919pt;}
._1b{width:36.184195pt;}
._d{width:40.169203pt;}
._11{width:42.517727pt;}
._2b{width:63.792947pt;}
._27{width:78.426112pt;}
._10{width:84.110911pt;}
._15{width:87.086407pt;}
._38{width:88.994509pt;}
._b{width:90.752644pt;}
._8{width:92.824865pt;}
._2a{width:100.896563pt;}
._e{width:104.779985pt;}
._17{width:107.755482pt;}
._21{width:112.778976pt;}
._6{width:125.449059pt;}
._9{width:128.424556pt;}
._1d{width:147.288981pt;}
._1e{width:226.044984pt;}
._39{width:228.774707pt;}
._1f{width:239.168869pt;}
._51{width:241.829786pt;}
._5e{width:249.098547pt;}
._55{width:250.867917pt;}
._20{width:266.961857pt;}
._2c{width:272.633161pt;}
._4c{width:273.965363pt;}
._5c{width:276.738970pt;}
._65{width:280.134246pt;}
._64{width:286.728192pt;}
._6e{width:294.193562pt;}
._67{width:301.318861pt;}
._6c{width:306.626970pt;}
._58{width:310.070067pt;}
._3b{width:325.314817pt;}
._53{width:339.384218pt;}
._72{width:340.873442pt;}
._5a{width:341.918720pt;}
._25{width:347.042325pt;}
._5d{width:348.130099pt;}
._42{width:350.861210pt;}
._48{width:354.925978pt;}
._28{width:360.336508pt;}
._30{width:361.477427pt;}
._36{width:366.833357pt;}
._32{width:370.706842pt;}
._31{width:384.192307pt;}
._3c{width:388.113613pt;}
._37{width:391.174144pt;}
._62{width:400.451379pt;}
._60{width:408.389632pt;}
._2d{width:413.847983pt;}
._69{width:421.635994pt;}
._3e{width:425.270374pt;}
._33{width:428.713472pt;}
._2e{width:430.578483pt;}
._34{width:433.256448pt;}
._47{width:435.934413pt;}
._40{width:438.564557pt;}
._4e{width:441.529446pt;}
._29{width:444.979324pt;}
._35{width:454.919270pt;}
._2f{width:462.857523pt;}
._7{width:480.119121pt;}
._3a{width:482.224947pt;}
._26{width:485.579183pt;}
._3f{width:492.076032pt;}
._4d{width:497.431962pt;}
._4a{width:507.665613pt;}
._46{width:523.589939pt;}
._74{width:533.932791pt;}
._44{width:536.788480pt;}
._49{width:571.793306pt;}
._43{width:575.140762pt;}
._63{width:585.046447pt;}
._57{width:597.370654pt;}
._5f{width:609.243772pt;}
._f{width:612.739750pt;}
._23{width:624.587469pt;}
._6f{width:633.721242pt;}
._3d{width:655.670989pt;}
._59{width:662.803068pt;}
._4b{width:689.480294pt;}
._41{width:697.562010pt;}
._6b{width:699.692659pt;}
._56{width:719.655219pt;}
._18{width:724.374004pt;}
._66{width:757.906534pt;}
._71{width:765.487885pt;}
._16{width:769.883169pt;}
._61{width:781.774438pt;}
._6a{width:784.507004pt;}
._5b{width:788.518626pt;}
._45{width:792.588719pt;}
._70{width:841.510852pt;}
._6d{width:868.808294pt;}
._73{width:928.256329pt;}
._68{width:954.646630pt;}
._54{width:1006.574694pt;}
._24{width:1339.125862pt;}
._52{width:1490.287411pt;}
.fs7{font-size:34.005867pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.913067pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:44.597704pt;}
.fs1{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:100.740000pt;}
.y146{bottom:109.468000pt;}
.y10f{bottom:112.696000pt;}
.y51{bottom:116.680000pt;}
.y29{bottom:116.681333pt;}
.y145{bottom:121.422667pt;}
.y10e{bottom:124.650667pt;}
.y86{bottom:132.620000pt;}
.y28{bottom:132.621333pt;}
.y50{bottom:132.806667pt;}
.y144{bottom:133.378667pt;}
.y10d{bottom:136.605333pt;}
.y143{bottom:145.333333pt;}
.y85{bottom:148.561333pt;}
.y27{bottom:148.676000pt;}
.y4f{bottom:148.746667pt;}
.y142{bottom:157.288000pt;}
.y14b{bottom:157.289333pt;}
.y10c{bottom:160.516000pt;}
.y84{bottom:164.501333pt;}
.y26{bottom:164.616000pt;}
.y4e{bottom:164.686667pt;}
.y141{bottom:169.244000pt;}
.y10b{bottom:172.470667pt;}
.y83{bottom:180.441333pt;}
.y25{bottom:180.556000pt;}
.y4d{bottom:180.628000pt;}
.y140{bottom:181.198667pt;}
.y10a{bottom:184.426667pt;}
.ydc{bottom:184.698667pt;}
.y13f{bottom:193.153333pt;}
.y14a{bottom:193.154667pt;}
.y82{bottom:196.381333pt;}
.y24{bottom:196.496000pt;}
.y4c{bottom:196.568000pt;}
.yaf{bottom:201.258667pt;}
.y13e{bottom:205.109333pt;}
.y109{bottom:208.337333pt;}
.ydb{bottom:209.782667pt;}
.y81{bottom:212.321333pt;}
.y23{bottom:212.437333pt;}
.y4b{bottom:212.508000pt;}
.y13d{bottom:217.064000pt;}
.yae{bottom:217.198667pt;}
.y108{bottom:220.292000pt;}
.yda{bottom:225.722667pt;}
.y22{bottom:228.377333pt;}
.y80{bottom:228.436000pt;}
.y4a{bottom:228.448000pt;}
.y13c{bottom:229.020000pt;}
.y107{bottom:232.246667pt;}
.y13b{bottom:240.974667pt;}
.yd9{bottom:241.662667pt;}
.yad{bottom:243.088000pt;}
.y106{bottom:244.202667pt;}
.y21{bottom:244.317333pt;}
.y7f{bottom:244.376000pt;}
.y49{bottom:244.388000pt;}
.y13a{bottom:252.929333pt;}
.y105{bottom:256.157333pt;}
.yd8{bottom:257.602667pt;}
.yac{bottom:259.028000pt;}
.y20{bottom:260.257333pt;}
.y7e{bottom:260.317333pt;}
.y48{bottom:260.328000pt;}
.y139{bottom:264.885333pt;}
.y104{bottom:268.112000pt;}
.yd7{bottom:273.564000pt;}
.yab{bottom:274.968000pt;}
.y7d{bottom:276.257333pt;}
.y47{bottom:276.269333pt;}
.y138{bottom:276.840000pt;}
.y103{bottom:280.068000pt;}
.y1f{bottom:280.782667pt;}
.y137{bottom:288.794667pt;}
.y149{bottom:288.796000pt;}
.yd6{bottom:289.504000pt;}
.yaa{bottom:290.908000pt;}
.y102{bottom:292.022667pt;}
.y7c{bottom:292.197333pt;}
.y46{bottom:297.044000pt;}
.y136{bottom:300.750667pt;}
.y101{bottom:303.978667pt;}
.yd5{bottom:305.445333pt;}
.y1e{bottom:306.662667pt;}
.ya9{bottom:306.848000pt;}
.y7b{bottom:308.137333pt;}
.y135{bottom:312.705333pt;}
.y100{bottom:315.933333pt;}
.yd4{bottom:321.385333pt;}
.y1d{bottom:322.602667pt;}
.ya8{bottom:322.789333pt;}
.y45{bottom:323.532000pt;}
.y7a{bottom:324.077333pt;}
.y134{bottom:324.661333pt;}
.yff{bottom:327.888000pt;}
.y133{bottom:336.616000pt;}
.yd3{bottom:337.325333pt;}
.y1c{bottom:338.542667pt;}
.ya7{bottom:338.729333pt;}
.y44{bottom:339.472000pt;}
.yfe{bottom:339.844000pt;}
.y79{bottom:340.017333pt;}
.y132{bottom:348.570667pt;}
.y16e{bottom:349.898667pt;}
.yfd{bottom:351.798667pt;}
.yd2{bottom:353.265333pt;}
.y1b{bottom:354.482667pt;}
.ya6{bottom:354.669333pt;}
.y43{bottom:355.412000pt;}
.y131{bottom:360.526667pt;}
.y78{bottom:360.753333pt;}
.y16d{bottom:361.854667pt;}
.yfc{bottom:363.753333pt;}
.yd1{bottom:369.205333pt;}
.y1a{bottom:370.424000pt;}
.ya5{bottom:370.609333pt;}
.y42{bottom:371.352000pt;}
.y130{bottom:372.481333pt;}
.y16c{bottom:373.809333pt;}
.yfb{bottom:375.709333pt;}
.y12f{bottom:384.436000pt;}
.y148{bottom:384.437333pt;}
.yd0{bottom:385.145333pt;}
.y16b{bottom:385.764000pt;}
.y16f{bottom:385.765333pt;}
.y19{bottom:386.364000pt;}
.ya4{bottom:386.549333pt;}
.y77{bottom:387.141333pt;}
.y41{bottom:387.292000pt;}
.yfa{bottom:394.877333pt;}
.y12e{bottom:396.392000pt;}
.y16a{bottom:397.720000pt;}
.ycf{bottom:401.086667pt;}
.y18{bottom:402.304000pt;}
.ya3{bottom:402.490667pt;}
.y76{bottom:403.081333pt;}
.y40{bottom:403.233333pt;}
.y12d{bottom:408.346667pt;}
.y169{bottom:409.674667pt;}
.yce{bottom:417.026667pt;}
.yf9{bottom:418.109333pt;}
.ya2{bottom:418.430667pt;}
.y75{bottom:419.021333pt;}
.y3f{bottom:419.173333pt;}
.y12c{bottom:420.301333pt;}
.y147{bottom:420.302667pt;}
.y168{bottom:421.630667pt;}
.y17{bottom:423.116000pt;}
.y12b{bottom:432.257333pt;}
.ycd{bottom:432.966667pt;}
.y167{bottom:433.585333pt;}
.yf8{bottom:434.050667pt;}
.ya1{bottom:434.370667pt;}
.y74{bottom:434.961333pt;}
.y3e{bottom:435.113333pt;}
.y12a{bottom:444.212000pt;}
.y166{bottom:445.540000pt;}
.y16{bottom:448.996000pt;}
.yf7{bottom:449.990667pt;}
.ya0{bottom:450.310667pt;}
.y73{bottom:450.902667pt;}
.y3d{bottom:451.053333pt;}
.ycc{bottom:453.164000pt;}
.y129{bottom:456.168000pt;}
.y165{bottom:457.496000pt;}
.yf6{bottom:465.930667pt;}
.y9f{bottom:466.250667pt;}
.y72{bottom:466.842667pt;}
.y3c{bottom:466.993333pt;}
.y128{bottom:468.122667pt;}
.y164{bottom:469.450667pt;}
.ycb{bottom:478.248000pt;}
.y15{bottom:478.461333pt;}
.y163{bottom:481.405333pt;}
.yf5{bottom:481.870667pt;}
.y9e{bottom:482.190667pt;}
.y71{bottom:482.782667pt;}
.y3b{bottom:482.933333pt;}
.y162{bottom:493.361333pt;}
.yca{bottom:494.188000pt;}
.yf4{bottom:497.810667pt;}
.y9d{bottom:498.132000pt;}
.y70{bottom:498.722667pt;}
.y3a{bottom:499.060000pt;}
.y14{bottom:507.926667pt;}
.yc9{bottom:510.128000pt;}
.yf3{bottom:513.752000pt;}
.y9c{bottom:514.072000pt;}
.y6f{bottom:514.837333pt;}
.y127{bottom:514.880000pt;}
.y39{bottom:515.000000pt;}
.yc8{bottom:526.069333pt;}
.y9b{bottom:530.012000pt;}
.y6e{bottom:530.777333pt;}
.y38{bottom:530.940000pt;}
.y126{bottom:533.477333pt;}
.yf2{bottom:533.597333pt;}
.y13{bottom:537.392000pt;}
.y161{bottom:540.118667pt;}
.yc7{bottom:542.009333pt;}
.y6d{bottom:546.717333pt;}
.y37{bottom:546.881333pt;}
.y9a{bottom:548.852000pt;}
.y125{bottom:552.074667pt;}
.y12{bottom:553.472000pt;}
.yf1{bottom:556.829333pt;}
.yc6{bottom:557.949333pt;}
.y160{bottom:558.716000pt;}
.y6c{bottom:562.658667pt;}
.y36{bottom:562.821333pt;}
.y99{bottom:564.793333pt;}
.y11{bottom:569.552000pt;}
.y124{bottom:570.670667pt;}
.yf0{bottom:572.770667pt;}
.yc5{bottom:573.889333pt;}
.y15f{bottom:577.313333pt;}
.y6b{bottom:578.598667pt;}
.y35{bottom:578.761333pt;}
.y98{bottom:580.733333pt;}
.y10{bottom:585.632000pt;}
.yef{bottom:588.710667pt;}
.y123{bottom:589.268000pt;}
.yc4{bottom:589.829333pt;}
.y6a{bottom:594.538667pt;}
.y34{bottom:594.701333pt;}
.y15e{bottom:595.909333pt;}
.y97{bottom:596.673333pt;}
.yf{bottom:601.712000pt;}
.yee{bottom:604.650667pt;}
.yc3{bottom:605.769333pt;}
.y122{bottom:607.865333pt;}
.y69{bottom:610.478667pt;}
.y33{bottom:610.641333pt;}
.y96{bottom:612.613333pt;}
.y15d{bottom:614.506667pt;}
.ye{bottom:617.653333pt;}
.yed{bottom:620.590667pt;}
.yc2{bottom:621.710667pt;}
.y68{bottom:626.418667pt;}
.y121{bottom:626.461333pt;}
.y32{bottom:626.768000pt;}
.y95{bottom:628.553333pt;}
.y15c{bottom:633.102667pt;}
.yec{bottom:636.530667pt;}
.yc1{bottom:637.650667pt;}
.y67{bottom:642.358667pt;}
.y31{bottom:642.708000pt;}
.y94{bottom:644.494667pt;}
.y120{bottom:645.058667pt;}
.yd{bottom:647.118667pt;}
.y15b{bottom:651.700000pt;}
.yeb{bottom:652.470667pt;}
.yc0{bottom:657.848000pt;}
.y66{bottom:658.300000pt;}
.y30{bottom:658.648000pt;}
.y93{bottom:660.434667pt;}
.y11f{bottom:663.654667pt;}
.yea{bottom:668.132000pt;}
.y15a{bottom:670.297333pt;}
.y65{bottom:674.240000pt;}
.y2f{bottom:674.588000pt;}
.yc{bottom:676.584000pt;}
.y92{bottom:679.274667pt;}
.y11e{bottom:682.252000pt;}
.ybf{bottom:682.932000pt;}
.ye9{bottom:684.073333pt;}
.y159{bottom:688.893333pt;}
.y64{bottom:690.180000pt;}
.y2e{bottom:690.529333pt;}
.yb{bottom:692.664000pt;}
.y91{bottom:695.214667pt;}
.ybe{bottom:698.872000pt;}
.ye8{bottom:700.013333pt;}
.y11d{bottom:700.849333pt;}
.y63{bottom:706.120000pt;}
.y2d{bottom:706.469333pt;}
.y158{bottom:707.490667pt;}
.ya{bottom:708.744000pt;}
.y90{bottom:711.156000pt;}
.ybd{bottom:714.812000pt;}
.ye7{bottom:715.953333pt;}
.y11c{bottom:719.445333pt;}
.y62{bottom:722.234667pt;}
.y2c{bottom:722.409333pt;}
.y9{bottom:724.824000pt;}
.y157{bottom:726.088000pt;}
.y8f{bottom:727.096000pt;}
.ybc{bottom:730.773333pt;}
.ye6{bottom:731.893333pt;}
.y11b{bottom:738.042667pt;}
.y61{bottom:738.174667pt;}
.y2b{bottom:738.349333pt;}
.y8e{bottom:743.036000pt;}
.y156{bottom:744.684000pt;}
.ybb{bottom:746.713333pt;}
.ye5{bottom:751.738667pt;}
.y60{bottom:754.114667pt;}
.y8{bottom:754.289333pt;}
.y11a{bottom:756.640000pt;}
.y8d{bottom:758.976000pt;}
.yba{bottom:762.653333pt;}
.y155{bottom:763.281333pt;}
.y5f{bottom:770.056000pt;}
.ye4{bottom:774.972000pt;}
.y119{bottom:775.236000pt;}
.yb9{bottom:778.593333pt;}
.y154{bottom:781.877333pt;}
.y5e{bottom:785.996000pt;}
.ye3{bottom:790.912000pt;}
.y118{bottom:793.833333pt;}
.y7{bottom:795.281333pt;}
.y153{bottom:800.474667pt;}
.y8c{bottom:801.165333pt;}
.y5d{bottom:801.936000pt;}
.ye2{bottom:806.852000pt;}
.y117{bottom:812.429333pt;}
.y6{bottom:816.540000pt;}
.y8b{bottom:817.105333pt;}
.y5c{bottom:817.876000pt;}
.y152{bottom:819.072000pt;}
.ye1{bottom:822.792000pt;}
.yb8{bottom:825.123231pt;}
.y116{bottom:831.026667pt;}
.y5{bottom:832.978667pt;}
.y5b{bottom:833.816000pt;}
.yb7{bottom:837.665828pt;}
.y151{bottom:837.668000pt;}
.ye0{bottom:838.733333pt;}
.y4{bottom:844.793333pt;}
.y8a{bottom:846.329333pt;}
.y115{bottom:849.624000pt;}
.y5a{bottom:849.757333pt;}
.ydf{bottom:854.673333pt;}
.yb6{bottom:855.226304pt;}
.y150{bottom:856.265333pt;}
.y89{bottom:862.269333pt;}
.y59{bottom:865.697333pt;}
.y114{bottom:868.220000pt;}
.yde{bottom:870.613333pt;}
.yb5{bottom:872.786779pt;}
.y14f{bottom:874.862667pt;}
.y58{bottom:881.812000pt;}
.y3{bottom:886.636000pt;}
.y113{bottom:886.817333pt;}
.y88{bottom:887.802667pt;}
.yb4{bottom:890.347254pt;}
.ydd{bottom:890.458667pt;}
.y14e{bottom:893.458667pt;}
.y57{bottom:897.752000pt;}
.yb3{bottom:902.889852pt;}
.y112{bottom:905.414667pt;}
.y14d{bottom:912.586667pt;}
.y56{bottom:913.692000pt;}
.yb2{bottom:920.450327pt;}
.y2{bottom:923.830667pt;}
.y111{bottom:924.542667pt;}
.y55{bottom:929.632000pt;}
.yb1{bottom:938.567567pt;}
.y14c{bottom:941.588000pt;}
.y54{bottom:945.572000pt;}
.y110{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y53{bottom:961.512000pt;}
.yb0{bottom:965.497333pt;}
.y87{bottom:977.452000pt;}
.y52{bottom:977.453333pt;}
.h4{height:25.589197pt;}
.hc{height:29.032418pt;}
.h9{height:29.244954pt;}
.hf{height:29.458287pt;}
.hd{height:29.499997pt;}
.hb{height:30.683220pt;}
.ha{height:30.950807pt;}
.he{height:32.900710pt;}
.h2{height:33.187635pt;}
.h7{height:36.290431pt;}
.h5{height:36.556100pt;}
.h6{height:36.874903pt;}
.h8{height:37.459376pt;}
.h3{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.285333pt;}
.x22{left:70.598667pt;}
.x18{left:73.646598pt;}
.xc{left:78.569333pt;}
.x2{left:88.768000pt;}
.x20{left:92.329333pt;}
.x21{left:97.114667pt;}
.x28{left:98.817333pt;}
.xa{left:101.814667pt;}
.x2a{left:110.660000pt;}
.xb{left:128.090667pt;}
.x7{left:138.586667pt;}
.x17{left:153.037333pt;}
.x1{left:178.000000pt;}
.x4{left:187.386667pt;}
.x19{left:189.506846pt;}
.x24{left:193.360000pt;}
.x8{left:201.734667pt;}
.x16{left:212.402667pt;}
.x5{left:214.973333pt;}
.x29{left:255.150667pt;}
.x6{left:267.968000pt;}
.x1f{left:284.656000pt;}
.x23{left:295.578667pt;}
.x27{left:315.489333pt;}
.x3{left:363.718667pt;}
.x26{left:384.206667pt;}
.x1e{left:385.976000pt;}
.xd{left:415.970667pt;}
.x14{left:419.578667pt;}
.x11{left:420.734667pt;}
.xe{left:429.253333pt;}
.x10{left:434.868000pt;}
.x1d{left:440.316000pt;}
.x13{left:442.666667pt;}
.x12{left:461.564000pt;}
.xf{left:495.340000pt;}
.x1b{left:509.426667pt;}
.x1a{left:512.024000pt;}
.x1c{left:546.149333pt;}
.x15{left:555.978667pt;}
.x25{left:654.657333pt;}
}




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