
    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_5dc6cc16e55aa90535fa6f33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d613e08b18fc4a9f44cfb64.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_ce1cfecc0f1fd330fb9bed14.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4ed8ee3a6efe4de6338b11df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_73b6147dc95d68e6a012574d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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);}
.v1{vertical-align:-41.040000px;}
.v6{vertical-align:-29.880000px;}
.v3{vertical-align:-27.000000px;}
.v9{vertical-align:-13.686660px;}
.v7{vertical-align:-9.006168px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.878956px;}
.v11{vertical-align:4.680000px;}
.v8{vertical-align:9.000000px;}
.va{vertical-align:13.680000px;}
.vd{vertical-align:16.560000px;}
.v2{vertical-align:27.000000px;}
.v5{vertical-align:29.878668px;}
.v4{vertical-align:30.960000px;}
.v13{vertical-align:37.799400px;}
.vf{vertical-align:44.280000px;}
.v10{vertical-align:50.042448px;}
.ve{vertical-align:57.960000px;}
.vb{vertical-align:66.239064px;}
.v12{vertical-align:75.940092px;}
.ls1f{letter-spacing:-0.346032px;}
.ls5e{letter-spacing:-0.335988px;}
.ls20{letter-spacing:-0.204408px;}
.ls54{letter-spacing:-0.144936px;}
.ls52{letter-spacing:-0.143640px;}
.ls4b{letter-spacing:-0.105408px;}
.ls1e{letter-spacing:-0.096192px;}
.ls4e{letter-spacing:-0.065880px;}
.ls4c{letter-spacing:-0.057456px;}
.ls46{letter-spacing:-0.043092px;}
.ls1c{letter-spacing:-0.038304px;}
.ls1d{letter-spacing:-0.033552px;}
.ls4a{letter-spacing:-0.032940px;}
.ls53{letter-spacing:-0.026352px;}
.ls21{letter-spacing:-0.021600px;}
.ls28{letter-spacing:-0.019764px;}
.ls5a{letter-spacing:-0.006588px;}
.ls1b{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003888px;}
.lsd{letter-spacing:0.006588px;}
.ls30{letter-spacing:0.007200px;}
.ls7{letter-spacing:0.007776px;}
.ls1a{letter-spacing:0.013176px;}
.ls56{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.018036px;}
.ls14{letter-spacing:0.019764px;}
.ls5b{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.025164px;}
.ls19{letter-spacing:0.026352px;}
.ls2e{letter-spacing:0.029484px;}
.lse{letter-spacing:0.032940px;}
.ls2{letter-spacing:0.033552px;}
.ls24{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.039528px;}
.ls5{letter-spacing:0.041940px;}
.ls16{letter-spacing:0.046116px;}
.ls13{letter-spacing:0.052704px;}
.ls47{letter-spacing:0.057456px;}
.ls5c{letter-spacing:0.057600px;}
.ls3{letter-spacing:0.058716px;}
.ls12{letter-spacing:0.059292px;}
.ls15{letter-spacing:0.065880px;}
.lsc{letter-spacing:0.072144px;}
.ls11{letter-spacing:0.072468px;}
.ls6{letter-spacing:0.078156px;}
.ls10{letter-spacing:0.079056px;}
.lsa{letter-spacing:0.084168px;}
.ls17{letter-spacing:0.085644px;}
.ls8{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.092232px;}
.ls4d{letter-spacing:0.097200px;}
.ls26{letter-spacing:0.098820px;}
.ls29{letter-spacing:0.105408px;}
.ls31{letter-spacing:0.111996px;}
.ls18{letter-spacing:0.118584px;}
.ls40{letter-spacing:0.119880px;}
.ls32{letter-spacing:0.131760px;}
.ls0{letter-spacing:0.134064px;}
.ls2f{letter-spacing:0.134784px;}
.ls36{letter-spacing:0.138348px;}
.ls57{letter-spacing:0.144936px;}
.ls59{letter-spacing:0.151524px;}
.ls2c{letter-spacing:0.158112px;}
.ls33{letter-spacing:0.164700px;}
.ls51{letter-spacing:0.177876px;}
.ls45{letter-spacing:0.179400px;}
.ls25{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.180600px;}
.ls3e{letter-spacing:0.382104px;}
.ls34{letter-spacing:0.540000px;}
.ls41{letter-spacing:1.350000px;}
.ls2d{letter-spacing:1.844640px;}
.ls37{letter-spacing:2.127924px;}
.ls38{letter-spacing:4.186080px;}
.ls3f{letter-spacing:4.551480px;}
.ls44{letter-spacing:4.552080px;}
.ls50{letter-spacing:14.500188px;}
.ls3c{letter-spacing:14.684652px;}
.ls49{letter-spacing:14.862528px;}
.ls3d{letter-spacing:15.116940px;}
.ls42{letter-spacing:15.122916px;}
.ls3b{letter-spacing:15.124932px;}
.ls4f{letter-spacing:18.103824px;}
.ls48{letter-spacing:18.466164px;}
.ls43{letter-spacing:18.946080px;}
.ls3a{letter-spacing:19.311480px;}
.ls39{letter-spacing:22.186080px;}
.ls23{letter-spacing:33.984000px;}
.ls5d{letter-spacing:40.727016px;}
.ls35{letter-spacing:41.421960px;}
.ls2a{letter-spacing:59.443524px;}
.ls1{letter-spacing:296.820000px;}
.ls55{letter-spacing:429.208200px;}
.ls58{letter-spacing:691.287156px;}
.ls22{letter-spacing:1314.630000px;}
.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;}
}
.wsa7{word-spacing:-84.346164px;}
.ws96{word-spacing:-80.742528px;}
.ws99{word-spacing:-80.564652px;}
.ws65{word-spacing:-65.880000px;}
.ws97{word-spacing:-65.847060px;}
.wsa0{word-spacing:-65.814120px;}
.ws9a{word-spacing:-65.774592px;}
.ws9e{word-spacing:-51.118560px;}
.ws93{word-spacing:-50.766948px;}
.wsa4{word-spacing:-50.758560px;}
.ws95{word-spacing:-47.937456px;}
.ws94{word-spacing:-47.836908px;}
.ws9c{word-spacing:-47.822544px;}
.wsa5{word-spacing:-47.736360px;}
.ws9d{word-spacing:-30.340728px;}
.wsa2{word-spacing:-29.980728px;}
.ws98{word-spacing:-28.674900px;}
.ws9b{word-spacing:-28.637640px;}
.wsa8{word-spacing:-28.314900px;}
.wsa1{word-spacing:-26.380728px;}
.wsa6{word-spacing:-25.391520px;}
.ws31{word-spacing:-18.000000px;}
.ws66{word-spacing:-16.628112px;}
.ws103{word-spacing:-16.509528px;}
.ws102{word-spacing:-16.502940px;}
.ws67{word-spacing:-16.489764px;}
.ws100{word-spacing:-16.483176px;}
.ws101{word-spacing:-16.476588px;}
.wsff{word-spacing:-16.134012px;}
.ws69{word-spacing:-10.664784px;}
.ws68{word-spacing:-10.559484px;}
.wsc6{word-spacing:-10.530000px;}
.ws0{word-spacing:-9.727776px;}
.ws11f{word-spacing:-0.428220px;}
.wseb{word-spacing:-0.375516px;}
.wsa9{word-spacing:-0.355752px;}
.ws7{word-spacing:-0.348696px;}
.wsd{word-spacing:-0.342684px;}
.ws3{word-spacing:-0.225036px;}
.ws71{word-spacing:-0.187200px;}
.wsd9{word-spacing:-0.129600px;}
.wsb5{word-spacing:-0.072468px;}
.wsf4{word-spacing:-0.065880px;}
.ws11c{word-spacing:-0.052704px;}
.ws2{word-spacing:-0.052668px;}
.wsdf{word-spacing:-0.046116px;}
.wsb2{word-spacing:-0.039528px;}
.wsb3{word-spacing:-0.026352px;}
.wsf5{word-spacing:-0.013176px;}
.ws76{word-spacing:-0.006588px;}
.wsb{word-spacing:-0.003888px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.006012px;}
.ws79{word-spacing:0.006588px;}
.wsb1{word-spacing:0.013176px;}
.ws80{word-spacing:0.019764px;}
.ws51{word-spacing:0.026352px;}
.ws64{word-spacing:0.032940px;}
.ws1c{word-spacing:0.039528px;}
.ws20{word-spacing:0.046116px;}
.ws2e{word-spacing:0.052704px;}
.ws1d{word-spacing:0.059292px;}
.ws2f{word-spacing:0.065880px;}
.ws17{word-spacing:0.072468px;}
.ws30{word-spacing:0.079056px;}
.ws3b{word-spacing:0.085644px;}
.ws6{word-spacing:0.117432px;}
.ws8{word-spacing:0.186372px;}
.ws5{word-spacing:0.209700px;}
.ws4{word-spacing:0.234864px;}
.wsfe{word-spacing:0.283284px;}
.wsa{word-spacing:0.294588px;}
.wsf6{word-spacing:0.296460px;}
.wsee{word-spacing:0.303048px;}
.wsac{word-spacing:0.335988px;}
.ws78{word-spacing:0.342576px;}
.ws9{word-spacing:0.346032px;}
.wsfc{word-spacing:0.349164px;}
.wsab{word-spacing:0.355752px;}
.wsed{word-spacing:0.368928px;}
.ws77{word-spacing:0.375516px;}
.wsfd{word-spacing:0.382104px;}
.ws115{word-spacing:0.408456px;}
.wsd5{word-spacing:0.415044px;}
.wsd4{word-spacing:0.441396px;}
.wsf3{word-spacing:0.737856px;}
.ws3c{word-spacing:0.751032px;}
.wsf2{word-spacing:0.757620px;}
.wsfa{word-spacing:0.770796px;}
.wscc{word-spacing:1.093608px;}
.wse6{word-spacing:1.100196px;}
.wscd{word-spacing:1.106784px;}
.ws11d{word-spacing:1.113372px;}
.wse5{word-spacing:1.133136px;}
.ws104{word-spacing:1.166076px;}
.ws86{word-spacing:1.436184px;}
.wse7{word-spacing:1.475712px;}
.ws85{word-spacing:1.488888px;}
.wse8{word-spacing:1.495476px;}
.wsbd{word-spacing:1.521828px;}
.wsea{word-spacing:1.785348px;}
.wse0{word-spacing:1.818288px;}
.wse9{word-spacing:1.838052px;}
.wse1{word-spacing:1.844640px;}
.wsf9{word-spacing:1.857816px;}
.ws10a{word-spacing:1.870992px;}
.ws10b{word-spacing:1.884168px;}
.wse2{word-spacing:2.193804px;}
.ws3e{word-spacing:2.213568px;}
.wse3{word-spacing:2.220156px;}
.ws3d{word-spacing:2.226744px;}
.ws8c{word-spacing:2.516616px;}
.wsd6{word-spacing:2.523204px;}
.ws8d{word-spacing:2.529792px;}
.ws27{word-spacing:2.536380px;}
.wsd7{word-spacing:2.542968px;}
.ws26{word-spacing:2.549556px;}
.ws8b{word-spacing:2.556144px;}
.wsb8{word-spacing:2.575908px;}
.ws83{word-spacing:2.589084px;}
.wsbc{word-spacing:2.925072px;}
.wsbb{word-spacing:2.931660px;}
.wsf{word-spacing:2.938248px;}
.wsba{word-spacing:2.951424px;}
.wse{word-spacing:2.964600px;}
.ws48{word-spacing:3.254472px;}
.ws7d{word-spacing:3.261060px;}
.ws72{word-spacing:3.274236px;}
.wsd0{word-spacing:3.280824px;}
.ws7c{word-spacing:3.287412px;}
.ws47{word-spacing:3.300588px;}
.wsd3{word-spacing:3.307176px;}
.ws10c{word-spacing:3.597048px;}
.ws29{word-spacing:3.603636px;}
.wsde{word-spacing:3.610224px;}
.ws28{word-spacing:3.623400px;}
.ws110{word-spacing:3.629988px;}
.ws74{word-spacing:3.636576px;}
.ws75{word-spacing:3.643164px;}
.wsdd{word-spacing:3.649752px;}
.wsf8{word-spacing:3.662928px;}
.wsec{word-spacing:3.676104px;}
.wsf1{word-spacing:3.689280px;}
.ws11a{word-spacing:3.979152px;}
.ws90{word-spacing:3.985740px;}
.ws11b{word-spacing:3.992328px;}
.wsfb{word-spacing:3.998916px;}
.ws92{word-spacing:4.005504px;}
.ws15{word-spacing:4.012092px;}
.wsf7{word-spacing:4.018680px;}
.ws91{word-spacing:4.038444px;}
.ws108{word-spacing:4.328316px;}
.ws18{word-spacing:4.341492px;}
.wsdc{word-spacing:4.348080px;}
.ws40{word-spacing:4.354668px;}
.ws107{word-spacing:4.361256px;}
.ws19{word-spacing:4.367844px;}
.wsd8{word-spacing:4.381020px;}
.wscf{word-spacing:4.664304px;}
.ws4e{word-spacing:4.690656px;}
.ws53{word-spacing:4.697244px;}
.ws23{word-spacing:4.703832px;}
.ws52{word-spacing:4.710420px;}
.wsce{word-spacing:4.717008px;}
.ws105{word-spacing:4.723596px;}
.wsc1{word-spacing:4.730184px;}
.ws22{word-spacing:4.749948px;}
.ws4f{word-spacing:4.756536px;}
.ws50{word-spacing:4.789476px;}
.wsae{word-spacing:5.000292px;}
.wsc4{word-spacing:5.046408px;}
.ws25{word-spacing:5.052996px;}
.ws5e{word-spacing:5.059584px;}
.ws111{word-spacing:5.066172px;}
.wsad{word-spacing:5.072760px;}
.wsc5{word-spacing:5.079348px;}
.ws24{word-spacing:5.085936px;}
.ws46{word-spacing:5.092524px;}
.ws63{word-spacing:5.099112px;}
.ws87{word-spacing:5.105700px;}
.ws5f{word-spacing:5.112288px;}
.wsc3{word-spacing:5.118876px;}
.ws44{word-spacing:5.388984px;}
.wsda{word-spacing:5.408748px;}
.ws43{word-spacing:5.415336px;}
.wsc8{word-spacing:5.461452px;}
.ws45{word-spacing:5.474628px;}
.ws121{word-spacing:5.771088px;}
.wsd2{word-spacing:5.777676px;}
.ws120{word-spacing:5.790852px;}
.wsca{word-spacing:5.804028px;}
.wsc9{word-spacing:5.817204px;}
.wsd1{word-spacing:5.830380px;}
.ws82{word-spacing:6.126840px;}
.ws8a{word-spacing:6.140016px;}
.ws89{word-spacing:6.153192px;}
.ws2d{word-spacing:6.172956px;}
.ws2c{word-spacing:6.179544px;}
.wsc7{word-spacing:6.186132px;}
.ws6f{word-spacing:6.192720px;}
.wsaf{word-spacing:6.482592px;}
.ws1e{word-spacing:6.489180px;}
.ws35{word-spacing:6.502356px;}
.ws1f{word-spacing:6.515532px;}
.ws36{word-spacing:6.535296px;}
.wsc2{word-spacing:6.831756px;}
.wsb0{word-spacing:6.858108px;}
.ws54{word-spacing:6.871284px;}
.ws55{word-spacing:6.877872px;}
.wsc0{word-spacing:6.897636px;}
.ws7f{word-spacing:7.200684px;}
.ws7e{word-spacing:7.227036px;}
.ws16{word-spacing:7.233624px;}
.wscb{word-spacing:7.240212px;}
.wsdb{word-spacing:7.246800px;}
.ws81{word-spacing:7.582788px;}
.ws114{word-spacing:7.589376px;}
.ws42{word-spacing:7.615728px;}
.ws41{word-spacing:7.622316px;}
.ws59{word-spacing:7.964892px;}
.ws5a{word-spacing:7.978068px;}
.ws112{word-spacing:8.663220px;}
.ws113{word-spacing:8.689572px;}
.wsaa{word-spacing:8.702748px;}
.ws10d{word-spacing:9.025560px;}
.ws10f{word-spacing:9.045324px;}
.ws10e{word-spacing:9.051912px;}
.ws8e{word-spacing:9.394488px;}
.ws109{word-spacing:9.414252px;}
.ws8f{word-spacing:9.440604px;}
.ws7a{word-spacing:10.079640px;}
.ws7b{word-spacing:10.092816px;}
.ws4b{word-spacing:10.105992px;}
.wse4{word-spacing:10.132344px;}
.ws4c{word-spacing:10.145520px;}
.ws4a{word-spacing:10.817496px;}
.ws5c{word-spacing:10.837260px;}
.ws84{word-spacing:10.843848px;}
.ws106{word-spacing:10.850436px;}
.ws49{word-spacing:10.857024px;}
.ws116{word-spacing:11.239128px;}
.ws5d{word-spacing:11.568528px;}
.ws13{word-spacing:11.575116px;}
.ws14{word-spacing:11.601468px;}
.ws56{word-spacing:12.266856px;}
.ws1a{word-spacing:12.280032px;}
.ws57{word-spacing:12.299796px;}
.ws1b{word-spacing:12.326148px;}
.ws61{word-spacing:12.642372px;}
.ws62{word-spacing:12.668724px;}
.wsef{word-spacing:12.978360px;}
.wsf0{word-spacing:12.998124px;}
.wsb4{word-spacing:13.024476px;}
.ws11{word-spacing:13.334112px;}
.ws12{word-spacing:13.340700px;}
.ws3f{word-spacing:13.347288px;}
.ws6b{word-spacing:13.703040px;}
.ws6a{word-spacing:13.722804px;}
.ws37{word-spacing:14.098320px;}
.ws38{word-spacing:14.111496px;}
.ws11e{word-spacing:15.112872px;}
.wsb9{word-spacing:15.145812px;}
.ws73{word-spacing:16.608348px;}
.ws58{word-spacing:16.621524px;}
.wsbf{word-spacing:17.998416px;}
.ws70{word-spacing:18.070884px;}
.wsbe{word-spacing:18.117000px;}
.ws2a{word-spacing:19.408248px;}
.ws2b{word-spacing:19.460952px;}
.ws88{word-spacing:19.869408px;}
.ws10{word-spacing:20.567736px;}
.ws60{word-spacing:21.272652px;}
.ws39{word-spacing:21.661344px;}
.ws3a{word-spacing:21.681108px;}
.ws21{word-spacing:21.997332px;}
.ws5b{word-spacing:22.728600px;}
.ws34{word-spacing:23.104116px;}
.ws6e{word-spacing:24.843348px;}
.ws6c{word-spacing:24.869700px;}
.ws6d{word-spacing:24.889464px;}
.ws119{word-spacing:27.379728px;}
.ws118{word-spacing:27.419256px;}
.ws117{word-spacing:27.781596px;}
.ws33{word-spacing:29.184840px;}
.ws32{word-spacing:29.211192px;}
.ws4d{word-spacing:35.674020px;}
.wsa3{word-spacing:67.797108px;}
.wsb6{word-spacing:159.073848px;}
.wsb7{word-spacing:166.650048px;}
.ws9f{word-spacing:462.725100px;}
._10{margin-left:-34.184988px;}
._a{margin-left:-15.020640px;}
._e{margin-left:-13.731732px;}
._d{margin-left:-10.920744px;}
._1{margin-left:-1.271376px;}
._0{width:1.407672px;}
._c{width:2.777940px;}
._b{width:4.402008px;}
._f{width:6.034608px;}
._2{width:25.955676px;}
._3{width:40.948344px;}
._11{width:75.590712px;}
._13{width:91.019808px;}
._15{width:179.015508px;}
._14{width:181.754388px;}
._12{width:195.834888px;}
._7{width:259.982244px;}
._4{width:267.518916px;}
._16{width:282.236508px;}
._1f{width:283.356684px;}
._17{width:299.180844px;}
._5{width:300.643380px;}
._6{width:302.441904px;}
._8{width:309.662352px;}
._1e{width:315.090864px;}
._9{width:328.023108px;}
._1a{width:349.196940px;}
._19{width:354.236760px;}
._1b{width:451.062648px;}
._18{width:528.430068px;}
._1c{width:959.258916px;}
._1d{width:968.824692px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:40.590450px;}
.y2{bottom:46.110450px;}
.y25{bottom:64.110450px;}
.y145{bottom:121.981116px;}
.ya9{bottom:124.140783px;}
.y79{bottom:132.420474px;}
.yf3{bottom:137.463969px;}
.y11b{bottom:139.172529px;}
.ya8{bottom:143.670909px;}
.y144{bottom:150.510450px;}
.y78{bottom:151.952142px;}
.y4e{bottom:153.214005px;}
.y11a{bottom:158.702655px;}
.ya7{bottom:163.111224px;}
.yf2{bottom:165.904365px;}
.ycf{bottom:166.174281px;}
.y143{bottom:169.953240px;}
.y77{bottom:171.391683px;}
.y4d{bottom:172.653546px;}
.y119{bottom:178.142196px;}
.ya6{bottom:182.641350px;}
.y76{bottom:190.921809px;}
.y4c{bottom:192.183672px;}
.yf1{bottom:194.433699px;}
.yce{bottom:194.703615px;}
.y142{bottom:198.482574px;}
.ya5{bottom:202.171476px;}
.y118{bottom:206.671530px;}
.y75{bottom:210.451935px;}
.y4b{bottom:211.713798px;}
.yf0{bottom:222.963033px;}
.ycd{bottom:223.144011px;}
.y117{bottom:226.201656px;}
.y141{bottom:227.011908px;}
.y74{bottom:229.891476px;}
.ya4{bottom:230.430702px;}
.y4a{bottom:240.063609px;}
.y116{bottom:245.641197px;}
.y140{bottom:246.451449px;}
.y73{bottom:249.421602px;}
.yef{bottom:251.403429px;}
.ycc{bottom:251.673345px;}
.y115{bottom:265.171323px;}
.ya3{bottom:267.600198px;}
.y49{bottom:267.963789px;}
.y13f{bottom:274.980783px;}
.y72{bottom:277.680828px;}
.yee{bottom:279.932763px;}
.ycb{bottom:280.202679px;}
.y114{bottom:284.701449px;}
.ya2{bottom:287.130324px;}
.y48{bottom:292.173042px;}
.y13e{bottom:294.510909px;}
.ya1{bottom:303.240450px;}
.y113{bottom:304.140990px;}
.ya0{bottom:306.660909px;}
.yed{bottom:308.462097px;}
.yca{bottom:308.643075px;}
.y13d{bottom:313.950450px;}
.y71{bottom:314.850324px;}
.y112{bottom:323.671116px;}
.y9f{bottom:326.100864px;}
.y70{bottom:334.388460px;}
.yec{bottom:336.902493px;}
.yc9{bottom:337.172409px;}
.y13c{bottom:342.480801px;}
.y23{bottom:344.374887px;}
.y111{bottom:352.200450px;}
.y9a{bottom:357.150000px;}
.y9e{bottom:362.730450px;}
.y6f{bottom:362.917794px;}
.yeb{bottom:365.431827px;}
.yc8{bottom:365.701743px;}
.y9d{bottom:366.150450px;}
.y13b{bottom:371.010135px;}
.y97{bottom:373.800450px;}
.y96{bottom:377.220423px;}
.y22{bottom:381.364860px;}
.y6e{bottom:382.357335px;}
.y110{bottom:382.980450px;}
.y98{bottom:386.940450px;}
.y13a{bottom:390.449676px;}
.yea{bottom:393.961161px;}
.yc7{bottom:394.142139px;}
.y99{bottom:397.740918px;}
.y21{bottom:400.354770px;}
.y6d{bottom:401.887461px;}
.y10f{bottom:406.290600px;}
.y139{bottom:409.979802px;}
.y9c{bottom:417.900450px;}
.y20{bottom:419.344680px;}
.y6c{bottom:421.417587px;}
.ye9{bottom:422.401557px;}
.yc6{bottom:422.671473px;}
.y138{bottom:429.509928px;}
.y10e{bottom:429.510450px;}
.y1f{bottom:438.244005px;}
.y95{bottom:439.050324px;}
.y6b{bottom:440.857128px;}
.ye8{bottom:441.931683px;}
.y47{bottom:442.382736px;}
.yc5{bottom:451.200807px;}
.y10d{bottom:452.730450px;}
.y1e{bottom:457.233915px;}
.y137{bottom:457.950324px;}
.y94{bottom:458.582115px;}
.ye7{bottom:461.461809px;}
.y46{bottom:461.912862px;}
.y6a{bottom:469.386462px;}
.yc4{bottom:470.640348px;}
.y10c{bottom:476.040600px;}
.y1d{bottom:476.223825px;}
.y136{bottom:477.480450px;}
.y93{bottom:478.112241px;}
.ye6{bottom:480.901350px;}
.y45{bottom:481.352403px;}
.yc3{bottom:490.170474px;}
.y1c{bottom:495.213735px;}
.y92{bottom:497.551782px;}
.y69{bottom:497.915796px;}
.y10b{bottom:499.260450px;}
.ye5{bottom:500.431476px;}
.y44{bottom:500.882529px;}
.y135{bottom:506.010450px;}
.yc2{bottom:509.704455px;}
.y1b{bottom:514.203645px;}
.ye4{bottom:519.961602px;}
.y43{bottom:520.412655px;}
.y10a{bottom:520.770600px;}
.y109{bottom:520.775427px;}
.y91{bottom:526.081116px;}
.y68{bottom:526.356192px;}
.yc1{bottom:529.143996px;}
.y1a{bottom:533.193555px;}
.ye3{bottom:539.401143px;}
.y42{bottom:539.852196px;}
.yc0{bottom:548.674122px;}
.y19{bottom:552.092880px;}
.y134{bottom:553.710450px;}
.y90{bottom:554.610450px;}
.y67{bottom:554.885526px;}
.ye2{bottom:567.660369px;}
.y41{bottom:568.381530px;}
.y108{bottom:568.655364px;}
.y18{bottom:571.082790px;}
.ybf{bottom:576.933348px;}
.y133{bottom:582.240450px;}
.y66{bottom:583.414860px;}
.y8f{bottom:585.390450px;}
.y40{bottom:587.911656px;}
.y17{bottom:590.072700px;}
.y107{bottom:597.095760px;}
.ye1{bottom:604.922736px;}
.y3f{bottom:607.351197px;}
.y8e{bottom:608.700450px;}
.y16{bottom:609.062610px;}
.y65{bottom:611.855256px;}
.ybe{bottom:614.102844px;}
.y106{bottom:616.625886px;}
.ye0{bottom:624.452862px;}
.y3e{bottom:626.881323px;}
.y15{bottom:628.052520px;}
.y132{bottom:629.854401px;}
.y8d{bottom:631.920450px;}
.ybd{bottom:633.632970px;}
.y105{bottom:636.156012px;}
.y64{bottom:640.384590px;}
.y3d{bottom:646.411449px;}
.y14{bottom:646.951845px;}
.y131{bottom:649.384527px;}
.ydf{bottom:652.893258px;}
.ybc{bottom:653.163096px;}
.y8c{bottom:662.610261px;}
.y104{bottom:664.596408px;}
.y3c{bottom:665.850990px;}
.y13{bottom:665.941755px;}
.y63{bottom:668.913924px;}
.y130{bottom:668.914653px;}
.ybb{bottom:672.602637px;}
.yde{bottom:681.422592px;}
.y12{bottom:684.931665px;}
.y12f{bottom:688.354194px;}
.y8b{bottom:691.050657px;}
.yba{bottom:692.132763px;}
.y103{bottom:693.125742px;}
.y3b{bottom:694.380324px;}
.y62{bottom:697.354320px;}
.y11{bottom:703.921575px;}
.y12e{bottom:707.884320px;}
.ydd{bottom:709.951926px;}
.y8a{bottom:710.580783px;}
.yb9{bottom:711.662889px;}
.y3a{bottom:713.912115px;}
.y102{bottom:721.655076px;}
.y10{bottom:722.911485px;}
.y61{bottom:725.883654px;}
.y89{bottom:730.110909px;}
.yb8{bottom:731.102430px;}
.y39{bottom:733.351656px;}
.y12d{bottom:736.413654px;}
.ydc{bottom:738.392322px;}
.yf{bottom:741.810810px;}
.y60{bottom:745.413780px;}
.y88{bottom:749.552448px;}
.y101{bottom:750.095472px;}
.yb7{bottom:750.632556px;}
.y38{bottom:752.881782px;}
.y12c{bottom:755.853195px;}
.ye{bottom:760.800720px;}
.y5f{bottom:764.853321px;}
.ydb{bottom:766.921656px;}
.y87{bottom:769.082574px;}
.yb6{bottom:770.162682px;}
.y12b{bottom:775.383321px;}
.y100{bottom:778.624806px;}
.yd{bottom:779.790630px;}
.y37{bottom:781.411116px;}
.y5e{bottom:784.383447px;}
.y86{bottom:788.612700px;}
.yb5{bottom:789.602223px;}
.yda{bottom:795.450990px;}
.yc{bottom:798.780540px;}
.y36{bottom:800.850657px;}
.y12a{bottom:803.912655px;}
.yff{bottom:807.154140px;}
.y85{bottom:808.052241px;}
.yb4{bottom:809.132349px;}
.y5d{bottom:812.912781px;}
.yb{bottom:817.770450px;}
.y35{bottom:820.380783px;}
.y129{bottom:823.352196px;}
.yd9{bottom:823.891386px;}
.y5c{bottom:832.352322px;}
.yfe{bottom:835.594536px;}
.y84{bottom:836.581575px;}
.yb3{bottom:837.391575px;}
.y34{bottom:839.910909px;}
.y128{bottom:842.882322px;}
.y5b{bottom:851.882448px;}
.yd8{bottom:852.420720px;}
.ya{bottom:854.940450px;}
.y33{bottom:859.352529px;}
.yfd{bottom:864.123870px;}
.y83{bottom:865.110909px;}
.y127{bottom:871.411656px;}
.yb2{bottom:874.651656px;}
.y32{bottom:878.882655px;}
.y5a{bottom:880.411782px;}
.yd7{bottom:880.950054px;}
.y82{bottom:884.553258px;}
.y126{bottom:890.851197px;}
.yfc{bottom:892.653204px;}
.y59{bottom:899.851323px;}
.yb1{bottom:903.092052px;}
.y31{bottom:907.411989px;}
.y9{bottom:908.850450px;}
.yd6{bottom:909.390324px;}
.y81{bottom:913.082592px;}
.y125{bottom:919.380531px;}
.yfb{bottom:921.093600px;}
.y30{bottom:926.851530px;}
.y58{bottom:928.380657px;}
.y8{bottom:928.380891px;}
.yd5{bottom:928.922142px;}
.yb0{bottom:931.621386px;}
.y124{bottom:938.910657px;}
.y80{bottom:941.611926px;}
.y2f{bottom:946.381656px;}
.y57{bottom:947.910783px;}
.yd4{bottom:948.452268px;}
.yfa{bottom:949.622934px;}
.y123{bottom:958.350198px;}
.yaf{bottom:960.150720px;}
.y7{bottom:963.480450px;}
.y2e{bottom:965.911782px;}
.y56{bottom:967.350324px;}
.yd3{bottom:967.891809px;}
.y7f{bottom:970.052322px;}
.y122{bottom:977.880324px;}
.yf9{bottom:978.152268px;}
.y2d{bottom:985.351323px;}
.y55{bottom:986.880450px;}
.yd2{bottom:987.421935px;}
.yae{bottom:988.591116px;}
.y121{bottom:997.410450px;}
.yf8{bottom:997.591809px;}
.y7e{bottom:998.581656px;}
.y6{bottom:998.670450px;}
.y2c{bottom:1013.880657px;}
.y54{bottom:1015.410450px;}
.yd1{bottom:1015.681161px;}
.yad{bottom:1017.119955px;}
.yf7{bottom:1017.121935px;}
.y120{bottom:1025.940450px;}
.y7d{bottom:1027.110990px;}
.y2b{bottom:1033.410783px;}
.yac{bottom:1036.650081px;}
.yf6{bottom:1036.652061px;}
.y2a{bottom:1052.850324px;}
.yd0{bottom:1052.850657px;}
.y7c{bottom:1055.551386px;}
.yf5{bottom:1056.091602px;}
.y5{bottom:1063.018506px;}
.y53{bottom:1063.111116px;}
.yab{bottom:1064.820369px;}
.y29{bottom:1072.380783px;}
.y11f{bottom:1073.550972px;}
.y52{bottom:1082.550657px;}
.y7b{bottom:1084.080720px;}
.yf4{bottom:1084.350828px;}
.y4{bottom:1090.019478px;}
.y28{bottom:1091.910909px;}
.y11e{bottom:1093.081098px;}
.yaa{bottom:1102.080324px;}
.y51{bottom:1102.080783px;}
.y27{bottom:1111.350450px;}
.y7a{bottom:1112.610054px;}
.y3{bottom:1117.020450px;}
.y11d{bottom:1121.610432px;}
.y50{bottom:1121.610909px;}
.y26{bottom:1139.880450px;}
.y11c{bottom:1141.049973px;}
.y4f{bottom:1141.050450px;}
.y1{bottom:1195.860450px;}
.y24{bottom:1204.860450px;}
.h6{height:38.158594px;}
.h1a{height:42.596367px;}
.h2{height:52.971680px;}
.h18{height:58.610039px;}
.h13{height:58.610147px;}
.h5{height:59.004492px;}
.h1{height:64.657617px;}
.h12{height:64.658121px;}
.h4{height:66.183750px;}
.h8{height:66.394687px;}
.he{height:68.710781px;}
.hf{height:71.186437px;}
.h24{height:71.202457px;}
.h27{height:71.204401px;}
.h26{height:71.209333px;}
.hc{height:71.210161px;}
.h10{height:71.210485px;}
.h25{height:71.211709px;}
.hd{height:71.211817px;}
.h20{height:71.215381px;}
.h21{height:71.216641px;}
.hb{height:71.217145px;}
.h11{height:71.218477px;}
.h22{height:71.218981px;}
.h23{height:71.220457px;}
.h1e{height:72.290039px;}
.h15{height:72.290639px;}
.h7{height:72.562500px;}
.ha{height:75.093750px;}
.h16{height:75.169595px;}
.h17{height:75.170039px;}
.h1f{height:78.337617px;}
.h3{height:84.535312px;}
.h19{height:91.890000px;}
.h9{height:95.617617px;}
.h1b{height:116.570039px;}
.h1c{height:122.332487px;}
.h1d{height:122.617617px;}
.h14{height:124.850639px;}
.h28{height:140.597709px;}
.h29{height:140.617017px;}
.h0{height:1263.000000px;}
.w3{width:10.260000px;}
.w4{width:10.350000px;}
.w2{width:10.620000px;}
.w6{width:12.330000px;}
.w5{width:13.590000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x18{left:-1.440000px;}
.x0{left:0.000000px;}
.x9{left:106.380000px;}
.x12{left:107.729487px;}
.x3f{left:113.129406px;}
.x3e{left:126.180414px;}
.x11{left:130.950000px;}
.xd{left:133.379271px;}
.x1{left:136.170000px;}
.x43{left:140.400432px;}
.x7{left:145.080000px;}
.x13{left:148.410000px;}
.x42{left:152.100000px;}
.x3{left:182.700000px;}
.x3c{left:184.049055px;}
.x2{left:192.150000px;}
.xc{left:194.760414px;}
.x3d{left:205.739730px;}
.x40{left:207.359217px;}
.x17{left:208.890000px;}
.x19{left:219.420000px;}
.x5{left:220.590000px;}
.x10{left:229.318947px;}
.x1a{left:239.760000px;}
.x1b{left:249.930000px;}
.x1c{left:260.100000px;}
.x1d{left:270.360000px;}
.x1e{left:280.530000px;}
.xe{left:286.645797px;}
.x1f{left:290.700000px;}
.x14{left:300.150000px;}
.x20{left:311.130000px;}
.x4{left:316.798956px;}
.x21{left:321.300000px;}
.x22{left:331.470000px;}
.x23{left:341.640000px;}
.x24{left:351.810000px;}
.x35{left:353.880000px;}
.x25{left:362.070000px;}
.x26{left:375.570000px;}
.x27{left:386.100000px;}
.x6{left:390.419415px;}
.xf{left:391.770774px;}
.x28{left:396.270000px;}
.x8{left:401.310000px;}
.x29{left:406.530000px;}
.x2a{left:416.700000px;}
.x15{left:419.760000px;}
.x2b{left:426.870000px;}
.x2c{left:437.040000px;}
.xa{left:446.310000px;}
.x2d{left:457.470000px;}
.x2e{left:467.640000px;}
.x2f{left:477.810000px;}
.x30{left:487.980000px;}
.x31{left:498.150000px;}
.x32{left:508.410000px;}
.x33{left:518.580000px;}
.x16{left:526.770000px;}
.x34{left:528.750000px;}
.xb{left:590.850738px;}
.x36{left:620.370000px;}
.x41{left:657.180000px;}
.x39{left:661.680000px;}
.x37{left:677.160000px;}
.x3a{left:711.810000px;}
.x3b{left:744.479850px;}
.x38{left:753.210000px;}
@media print{
.v1{vertical-align:-36.480000pt;}
.v6{vertical-align:-26.560000pt;}
.v3{vertical-align:-24.000000pt;}
.v9{vertical-align:-12.165920pt;}
.v7{vertical-align:-8.005483pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.559072pt;}
.v11{vertical-align:4.160000pt;}
.v8{vertical-align:8.000000pt;}
.va{vertical-align:12.160000pt;}
.vd{vertical-align:14.720000pt;}
.v2{vertical-align:24.000000pt;}
.v5{vertical-align:26.558816pt;}
.v4{vertical-align:27.520000pt;}
.v13{vertical-align:33.599467pt;}
.vf{vertical-align:39.360000pt;}
.v10{vertical-align:44.482176pt;}
.ve{vertical-align:51.520000pt;}
.vb{vertical-align:58.879168pt;}
.v12{vertical-align:67.502304pt;}
.ls1f{letter-spacing:-0.307584pt;}
.ls5e{letter-spacing:-0.298656pt;}
.ls20{letter-spacing:-0.181696pt;}
.ls54{letter-spacing:-0.128832pt;}
.ls52{letter-spacing:-0.127680pt;}
.ls4b{letter-spacing:-0.093696pt;}
.ls1e{letter-spacing:-0.085504pt;}
.ls4e{letter-spacing:-0.058560pt;}
.ls4c{letter-spacing:-0.051072pt;}
.ls46{letter-spacing:-0.038304pt;}
.ls1c{letter-spacing:-0.034048pt;}
.ls1d{letter-spacing:-0.029824pt;}
.ls4a{letter-spacing:-0.029280pt;}
.ls53{letter-spacing:-0.023424pt;}
.ls21{letter-spacing:-0.019200pt;}
.ls28{letter-spacing:-0.017568pt;}
.ls5a{letter-spacing:-0.005856pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.003456pt;}
.lsd{letter-spacing:0.005856pt;}
.ls30{letter-spacing:0.006400pt;}
.ls7{letter-spacing:0.006912pt;}
.ls1a{letter-spacing:0.011712pt;}
.ls56{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.016032pt;}
.ls14{letter-spacing:0.017568pt;}
.ls5b{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.022368pt;}
.ls19{letter-spacing:0.023424pt;}
.ls2e{letter-spacing:0.026208pt;}
.lse{letter-spacing:0.029280pt;}
.ls2{letter-spacing:0.029824pt;}
.ls24{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.035136pt;}
.ls5{letter-spacing:0.037280pt;}
.ls16{letter-spacing:0.040992pt;}
.ls13{letter-spacing:0.046848pt;}
.ls47{letter-spacing:0.051072pt;}
.ls5c{letter-spacing:0.051200pt;}
.ls3{letter-spacing:0.052192pt;}
.ls12{letter-spacing:0.052704pt;}
.ls15{letter-spacing:0.058560pt;}
.lsc{letter-spacing:0.064128pt;}
.ls11{letter-spacing:0.064416pt;}
.ls6{letter-spacing:0.069472pt;}
.ls10{letter-spacing:0.070272pt;}
.lsa{letter-spacing:0.074816pt;}
.ls17{letter-spacing:0.076128pt;}
.ls8{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.081984pt;}
.ls4d{letter-spacing:0.086400pt;}
.ls26{letter-spacing:0.087840pt;}
.ls29{letter-spacing:0.093696pt;}
.ls31{letter-spacing:0.099552pt;}
.ls18{letter-spacing:0.105408pt;}
.ls40{letter-spacing:0.106560pt;}
.ls32{letter-spacing:0.117120pt;}
.ls0{letter-spacing:0.119168pt;}
.ls2f{letter-spacing:0.119808pt;}
.ls36{letter-spacing:0.122976pt;}
.ls57{letter-spacing:0.128832pt;}
.ls59{letter-spacing:0.134688pt;}
.ls2c{letter-spacing:0.140544pt;}
.ls33{letter-spacing:0.146400pt;}
.ls51{letter-spacing:0.158112pt;}
.ls45{letter-spacing:0.159467pt;}
.ls25{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.160533pt;}
.ls3e{letter-spacing:0.339648pt;}
.ls34{letter-spacing:0.480000pt;}
.ls41{letter-spacing:1.200000pt;}
.ls2d{letter-spacing:1.639680pt;}
.ls37{letter-spacing:1.891488pt;}
.ls38{letter-spacing:3.720960pt;}
.ls3f{letter-spacing:4.045760pt;}
.ls44{letter-spacing:4.046293pt;}
.ls50{letter-spacing:12.889056pt;}
.ls3c{letter-spacing:13.053024pt;}
.ls49{letter-spacing:13.211136pt;}
.ls3d{letter-spacing:13.437280pt;}
.ls42{letter-spacing:13.442592pt;}
.ls3b{letter-spacing:13.444384pt;}
.ls4f{letter-spacing:16.092288pt;}
.ls48{letter-spacing:16.414368pt;}
.ls43{letter-spacing:16.840960pt;}
.ls3a{letter-spacing:17.165760pt;}
.ls39{letter-spacing:19.720960pt;}
.ls23{letter-spacing:30.208000pt;}
.ls5d{letter-spacing:36.201792pt;}
.ls35{letter-spacing:36.819520pt;}
.ls2a{letter-spacing:52.838688pt;}
.ls1{letter-spacing:263.840000pt;}
.ls55{letter-spacing:381.518400pt;}
.ls58{letter-spacing:614.477472pt;}
.ls22{letter-spacing:1168.560000pt;}
.wsa7{word-spacing:-74.974368pt;}
.ws96{word-spacing:-71.771136pt;}
.ws99{word-spacing:-71.613024pt;}
.ws65{word-spacing:-58.560000pt;}
.ws97{word-spacing:-58.530720pt;}
.wsa0{word-spacing:-58.501440pt;}
.ws9a{word-spacing:-58.466304pt;}
.ws9e{word-spacing:-45.438720pt;}
.ws93{word-spacing:-45.126176pt;}
.wsa4{word-spacing:-45.118720pt;}
.ws95{word-spacing:-42.611072pt;}
.ws94{word-spacing:-42.521696pt;}
.ws9c{word-spacing:-42.508928pt;}
.wsa5{word-spacing:-42.432320pt;}
.ws9d{word-spacing:-26.969536pt;}
.wsa2{word-spacing:-26.649536pt;}
.ws98{word-spacing:-25.488800pt;}
.ws9b{word-spacing:-25.455680pt;}
.wsa8{word-spacing:-25.168800pt;}
.wsa1{word-spacing:-23.449536pt;}
.wsa6{word-spacing:-22.570240pt;}
.ws31{word-spacing:-16.000000pt;}
.ws66{word-spacing:-14.780544pt;}
.ws103{word-spacing:-14.675136pt;}
.ws102{word-spacing:-14.669280pt;}
.ws67{word-spacing:-14.657568pt;}
.ws100{word-spacing:-14.651712pt;}
.ws101{word-spacing:-14.645856pt;}
.wsff{word-spacing:-14.341344pt;}
.ws69{word-spacing:-9.479808pt;}
.ws68{word-spacing:-9.386208pt;}
.wsc6{word-spacing:-9.360000pt;}
.ws0{word-spacing:-8.646912pt;}
.ws11f{word-spacing:-0.380640pt;}
.wseb{word-spacing:-0.333792pt;}
.wsa9{word-spacing:-0.316224pt;}
.ws7{word-spacing:-0.309952pt;}
.wsd{word-spacing:-0.304608pt;}
.ws3{word-spacing:-0.200032pt;}
.ws71{word-spacing:-0.166400pt;}
.wsd9{word-spacing:-0.115200pt;}
.wsb5{word-spacing:-0.064416pt;}
.wsf4{word-spacing:-0.058560pt;}
.ws11c{word-spacing:-0.046848pt;}
.ws2{word-spacing:-0.046816pt;}
.wsdf{word-spacing:-0.040992pt;}
.wsb2{word-spacing:-0.035136pt;}
.wsb3{word-spacing:-0.023424pt;}
.wsf5{word-spacing:-0.011712pt;}
.ws76{word-spacing:-0.005856pt;}
.wsb{word-spacing:-0.003456pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.005344pt;}
.ws79{word-spacing:0.005856pt;}
.wsb1{word-spacing:0.011712pt;}
.ws80{word-spacing:0.017568pt;}
.ws51{word-spacing:0.023424pt;}
.ws64{word-spacing:0.029280pt;}
.ws1c{word-spacing:0.035136pt;}
.ws20{word-spacing:0.040992pt;}
.ws2e{word-spacing:0.046848pt;}
.ws1d{word-spacing:0.052704pt;}
.ws2f{word-spacing:0.058560pt;}
.ws17{word-spacing:0.064416pt;}
.ws30{word-spacing:0.070272pt;}
.ws3b{word-spacing:0.076128pt;}
.ws6{word-spacing:0.104384pt;}
.ws8{word-spacing:0.165664pt;}
.ws5{word-spacing:0.186400pt;}
.ws4{word-spacing:0.208768pt;}
.wsfe{word-spacing:0.251808pt;}
.wsa{word-spacing:0.261856pt;}
.wsf6{word-spacing:0.263520pt;}
.wsee{word-spacing:0.269376pt;}
.wsac{word-spacing:0.298656pt;}
.ws78{word-spacing:0.304512pt;}
.ws9{word-spacing:0.307584pt;}
.wsfc{word-spacing:0.310368pt;}
.wsab{word-spacing:0.316224pt;}
.wsed{word-spacing:0.327936pt;}
.ws77{word-spacing:0.333792pt;}
.wsfd{word-spacing:0.339648pt;}
.ws115{word-spacing:0.363072pt;}
.wsd5{word-spacing:0.368928pt;}
.wsd4{word-spacing:0.392352pt;}
.wsf3{word-spacing:0.655872pt;}
.ws3c{word-spacing:0.667584pt;}
.wsf2{word-spacing:0.673440pt;}
.wsfa{word-spacing:0.685152pt;}
.wscc{word-spacing:0.972096pt;}
.wse6{word-spacing:0.977952pt;}
.wscd{word-spacing:0.983808pt;}
.ws11d{word-spacing:0.989664pt;}
.wse5{word-spacing:1.007232pt;}
.ws104{word-spacing:1.036512pt;}
.ws86{word-spacing:1.276608pt;}
.wse7{word-spacing:1.311744pt;}
.ws85{word-spacing:1.323456pt;}
.wse8{word-spacing:1.329312pt;}
.wsbd{word-spacing:1.352736pt;}
.wsea{word-spacing:1.586976pt;}
.wse0{word-spacing:1.616256pt;}
.wse9{word-spacing:1.633824pt;}
.wse1{word-spacing:1.639680pt;}
.wsf9{word-spacing:1.651392pt;}
.ws10a{word-spacing:1.663104pt;}
.ws10b{word-spacing:1.674816pt;}
.wse2{word-spacing:1.950048pt;}
.ws3e{word-spacing:1.967616pt;}
.wse3{word-spacing:1.973472pt;}
.ws3d{word-spacing:1.979328pt;}
.ws8c{word-spacing:2.236992pt;}
.wsd6{word-spacing:2.242848pt;}
.ws8d{word-spacing:2.248704pt;}
.ws27{word-spacing:2.254560pt;}
.wsd7{word-spacing:2.260416pt;}
.ws26{word-spacing:2.266272pt;}
.ws8b{word-spacing:2.272128pt;}
.wsb8{word-spacing:2.289696pt;}
.ws83{word-spacing:2.301408pt;}
.wsbc{word-spacing:2.600064pt;}
.wsbb{word-spacing:2.605920pt;}
.wsf{word-spacing:2.611776pt;}
.wsba{word-spacing:2.623488pt;}
.wse{word-spacing:2.635200pt;}
.ws48{word-spacing:2.892864pt;}
.ws7d{word-spacing:2.898720pt;}
.ws72{word-spacing:2.910432pt;}
.wsd0{word-spacing:2.916288pt;}
.ws7c{word-spacing:2.922144pt;}
.ws47{word-spacing:2.933856pt;}
.wsd3{word-spacing:2.939712pt;}
.ws10c{word-spacing:3.197376pt;}
.ws29{word-spacing:3.203232pt;}
.wsde{word-spacing:3.209088pt;}
.ws28{word-spacing:3.220800pt;}
.ws110{word-spacing:3.226656pt;}
.ws74{word-spacing:3.232512pt;}
.ws75{word-spacing:3.238368pt;}
.wsdd{word-spacing:3.244224pt;}
.wsf8{word-spacing:3.255936pt;}
.wsec{word-spacing:3.267648pt;}
.wsf1{word-spacing:3.279360pt;}
.ws11a{word-spacing:3.537024pt;}
.ws90{word-spacing:3.542880pt;}
.ws11b{word-spacing:3.548736pt;}
.wsfb{word-spacing:3.554592pt;}
.ws92{word-spacing:3.560448pt;}
.ws15{word-spacing:3.566304pt;}
.wsf7{word-spacing:3.572160pt;}
.ws91{word-spacing:3.589728pt;}
.ws108{word-spacing:3.847392pt;}
.ws18{word-spacing:3.859104pt;}
.wsdc{word-spacing:3.864960pt;}
.ws40{word-spacing:3.870816pt;}
.ws107{word-spacing:3.876672pt;}
.ws19{word-spacing:3.882528pt;}
.wsd8{word-spacing:3.894240pt;}
.wscf{word-spacing:4.146048pt;}
.ws4e{word-spacing:4.169472pt;}
.ws53{word-spacing:4.175328pt;}
.ws23{word-spacing:4.181184pt;}
.ws52{word-spacing:4.187040pt;}
.wsce{word-spacing:4.192896pt;}
.ws105{word-spacing:4.198752pt;}
.wsc1{word-spacing:4.204608pt;}
.ws22{word-spacing:4.222176pt;}
.ws4f{word-spacing:4.228032pt;}
.ws50{word-spacing:4.257312pt;}
.wsae{word-spacing:4.444704pt;}
.wsc4{word-spacing:4.485696pt;}
.ws25{word-spacing:4.491552pt;}
.ws5e{word-spacing:4.497408pt;}
.ws111{word-spacing:4.503264pt;}
.wsad{word-spacing:4.509120pt;}
.wsc5{word-spacing:4.514976pt;}
.ws24{word-spacing:4.520832pt;}
.ws46{word-spacing:4.526688pt;}
.ws63{word-spacing:4.532544pt;}
.ws87{word-spacing:4.538400pt;}
.ws5f{word-spacing:4.544256pt;}
.wsc3{word-spacing:4.550112pt;}
.ws44{word-spacing:4.790208pt;}
.wsda{word-spacing:4.807776pt;}
.ws43{word-spacing:4.813632pt;}
.wsc8{word-spacing:4.854624pt;}
.ws45{word-spacing:4.866336pt;}
.ws121{word-spacing:5.129856pt;}
.wsd2{word-spacing:5.135712pt;}
.ws120{word-spacing:5.147424pt;}
.wsca{word-spacing:5.159136pt;}
.wsc9{word-spacing:5.170848pt;}
.wsd1{word-spacing:5.182560pt;}
.ws82{word-spacing:5.446080pt;}
.ws8a{word-spacing:5.457792pt;}
.ws89{word-spacing:5.469504pt;}
.ws2d{word-spacing:5.487072pt;}
.ws2c{word-spacing:5.492928pt;}
.wsc7{word-spacing:5.498784pt;}
.ws6f{word-spacing:5.504640pt;}
.wsaf{word-spacing:5.762304pt;}
.ws1e{word-spacing:5.768160pt;}
.ws35{word-spacing:5.779872pt;}
.ws1f{word-spacing:5.791584pt;}
.ws36{word-spacing:5.809152pt;}
.wsc2{word-spacing:6.072672pt;}
.wsb0{word-spacing:6.096096pt;}
.ws54{word-spacing:6.107808pt;}
.ws55{word-spacing:6.113664pt;}
.wsc0{word-spacing:6.131232pt;}
.ws7f{word-spacing:6.400608pt;}
.ws7e{word-spacing:6.424032pt;}
.ws16{word-spacing:6.429888pt;}
.wscb{word-spacing:6.435744pt;}
.wsdb{word-spacing:6.441600pt;}
.ws81{word-spacing:6.740256pt;}
.ws114{word-spacing:6.746112pt;}
.ws42{word-spacing:6.769536pt;}
.ws41{word-spacing:6.775392pt;}
.ws59{word-spacing:7.079904pt;}
.ws5a{word-spacing:7.091616pt;}
.ws112{word-spacing:7.700640pt;}
.ws113{word-spacing:7.724064pt;}
.wsaa{word-spacing:7.735776pt;}
.ws10d{word-spacing:8.022720pt;}
.ws10f{word-spacing:8.040288pt;}
.ws10e{word-spacing:8.046144pt;}
.ws8e{word-spacing:8.350656pt;}
.ws109{word-spacing:8.368224pt;}
.ws8f{word-spacing:8.391648pt;}
.ws7a{word-spacing:8.959680pt;}
.ws7b{word-spacing:8.971392pt;}
.ws4b{word-spacing:8.983104pt;}
.wse4{word-spacing:9.006528pt;}
.ws4c{word-spacing:9.018240pt;}
.ws4a{word-spacing:9.615552pt;}
.ws5c{word-spacing:9.633120pt;}
.ws84{word-spacing:9.638976pt;}
.ws106{word-spacing:9.644832pt;}
.ws49{word-spacing:9.650688pt;}
.ws116{word-spacing:9.990336pt;}
.ws5d{word-spacing:10.283136pt;}
.ws13{word-spacing:10.288992pt;}
.ws14{word-spacing:10.312416pt;}
.ws56{word-spacing:10.903872pt;}
.ws1a{word-spacing:10.915584pt;}
.ws57{word-spacing:10.933152pt;}
.ws1b{word-spacing:10.956576pt;}
.ws61{word-spacing:11.237664pt;}
.ws62{word-spacing:11.261088pt;}
.wsef{word-spacing:11.536320pt;}
.wsf0{word-spacing:11.553888pt;}
.wsb4{word-spacing:11.577312pt;}
.ws11{word-spacing:11.852544pt;}
.ws12{word-spacing:11.858400pt;}
.ws3f{word-spacing:11.864256pt;}
.ws6b{word-spacing:12.180480pt;}
.ws6a{word-spacing:12.198048pt;}
.ws37{word-spacing:12.531840pt;}
.ws38{word-spacing:12.543552pt;}
.ws11e{word-spacing:13.433664pt;}
.wsb9{word-spacing:13.462944pt;}
.ws73{word-spacing:14.762976pt;}
.ws58{word-spacing:14.774688pt;}
.wsbf{word-spacing:15.998592pt;}
.ws70{word-spacing:16.063008pt;}
.wsbe{word-spacing:16.104000pt;}
.ws2a{word-spacing:17.251776pt;}
.ws2b{word-spacing:17.298624pt;}
.ws88{word-spacing:17.661696pt;}
.ws10{word-spacing:18.282432pt;}
.ws60{word-spacing:18.909024pt;}
.ws39{word-spacing:19.254528pt;}
.ws3a{word-spacing:19.272096pt;}
.ws21{word-spacing:19.553184pt;}
.ws5b{word-spacing:20.203200pt;}
.ws34{word-spacing:20.536992pt;}
.ws6e{word-spacing:22.082976pt;}
.ws6c{word-spacing:22.106400pt;}
.ws6d{word-spacing:22.123968pt;}
.ws119{word-spacing:24.337536pt;}
.ws118{word-spacing:24.372672pt;}
.ws117{word-spacing:24.694752pt;}
.ws33{word-spacing:25.942080pt;}
.ws32{word-spacing:25.965504pt;}
.ws4d{word-spacing:31.710240pt;}
.wsa3{word-spacing:60.264096pt;}
.wsb6{word-spacing:141.398976pt;}
.wsb7{word-spacing:148.133376pt;}
.ws9f{word-spacing:411.311200pt;}
._10{margin-left:-30.386656pt;}
._a{margin-left:-13.351680pt;}
._e{margin-left:-12.205984pt;}
._d{margin-left:-9.707328pt;}
._1{margin-left:-1.130112pt;}
._0{width:1.251264pt;}
._c{width:2.469280pt;}
._b{width:3.912896pt;}
._f{width:5.364096pt;}
._2{width:23.071712pt;}
._3{width:36.398528pt;}
._11{width:67.191744pt;}
._13{width:80.906496pt;}
._15{width:159.124896pt;}
._14{width:161.559456pt;}
._12{width:174.075456pt;}
._7{width:231.095328pt;}
._4{width:237.794592pt;}
._16{width:250.876896pt;}
._1f{width:251.872608pt;}
._17{width:265.938528pt;}
._5{width:267.238560pt;}
._6{width:268.837248pt;}
._8{width:275.255424pt;}
._1e{width:280.080768pt;}
._9{width:291.576096pt;}
._1a{width:310.397280pt;}
._19{width:314.877120pt;}
._1b{width:400.944576pt;}
._18{width:469.715616pt;}
._1c{width:852.674592pt;}
._1d{width:861.177504pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:36.080400pt;}
.y2{bottom:40.987067pt;}
.y25{bottom:56.987067pt;}
.y145{bottom:108.427659pt;}
.ya9{bottom:110.347363pt;}
.y79{bottom:117.707088pt;}
.yf3{bottom:122.190195pt;}
.y11b{bottom:123.708915pt;}
.ya8{bottom:127.707475pt;}
.y144{bottom:133.787067pt;}
.y78{bottom:135.068571pt;}
.y4e{bottom:136.190227pt;}
.y11a{bottom:141.069027pt;}
.ya7{bottom:144.987755pt;}
.yf2{bottom:147.470547pt;}
.ycf{bottom:147.710472pt;}
.y143{bottom:151.069547pt;}
.y77{bottom:152.348163pt;}
.y4d{bottom:153.469819pt;}
.y119{bottom:158.348619pt;}
.ya6{bottom:162.347867pt;}
.y76{bottom:169.708275pt;}
.y4c{bottom:170.829931pt;}
.yf1{bottom:172.829955pt;}
.yce{bottom:173.069880pt;}
.y142{bottom:176.428955pt;}
.ya5{bottom:179.707979pt;}
.y118{bottom:183.708027pt;}
.y75{bottom:187.068387pt;}
.y4b{bottom:188.190043pt;}
.yf0{bottom:198.189363pt;}
.ycd{bottom:198.350232pt;}
.y117{bottom:201.068139pt;}
.y141{bottom:201.788363pt;}
.y74{bottom:204.347979pt;}
.ya4{bottom:204.827291pt;}
.y4a{bottom:213.389875pt;}
.y116{bottom:218.347731pt;}
.y140{bottom:219.067955pt;}
.y73{bottom:221.708091pt;}
.yef{bottom:223.469715pt;}
.ycc{bottom:223.709640pt;}
.y115{bottom:235.707843pt;}
.ya3{bottom:237.866843pt;}
.y49{bottom:238.190035pt;}
.y13f{bottom:244.427363pt;}
.y72{bottom:246.827403pt;}
.yee{bottom:248.829123pt;}
.ycb{bottom:249.069048pt;}
.y114{bottom:253.067955pt;}
.ya2{bottom:255.226955pt;}
.y48{bottom:259.709371pt;}
.y13e{bottom:261.787475pt;}
.ya1{bottom:269.547067pt;}
.y113{bottom:270.347547pt;}
.ya0{bottom:272.587475pt;}
.yed{bottom:274.188531pt;}
.yca{bottom:274.349400pt;}
.y13d{bottom:279.067067pt;}
.y71{bottom:279.866955pt;}
.y112{bottom:287.707659pt;}
.y9f{bottom:289.867435pt;}
.y70{bottom:297.234187pt;}
.yec{bottom:299.468883pt;}
.yc9{bottom:299.708808pt;}
.y13c{bottom:304.427379pt;}
.y23{bottom:306.111011pt;}
.y111{bottom:313.067067pt;}
.y9a{bottom:317.466667pt;}
.y9e{bottom:322.427067pt;}
.y6f{bottom:322.593595pt;}
.yeb{bottom:324.828291pt;}
.yc8{bottom:325.068216pt;}
.y9d{bottom:325.467067pt;}
.y13b{bottom:329.786787pt;}
.y97{bottom:332.267067pt;}
.y96{bottom:335.307043pt;}
.y22{bottom:338.990987pt;}
.y6e{bottom:339.873187pt;}
.y110{bottom:340.427067pt;}
.y98{bottom:343.947067pt;}
.y13a{bottom:347.066379pt;}
.yea{bottom:350.187699pt;}
.yc7{bottom:350.348568pt;}
.y99{bottom:353.547483pt;}
.y21{bottom:355.870907pt;}
.y6d{bottom:357.233299pt;}
.y10f{bottom:361.147200pt;}
.y139{bottom:364.426491pt;}
.y9c{bottom:371.467067pt;}
.y20{bottom:372.750827pt;}
.y6c{bottom:374.593411pt;}
.ye9{bottom:375.468051pt;}
.yc6{bottom:375.707976pt;}
.y138{bottom:381.786603pt;}
.y10e{bottom:381.787067pt;}
.y1f{bottom:389.550227pt;}
.y95{bottom:390.266955pt;}
.y6b{bottom:391.873003pt;}
.ye8{bottom:392.828163pt;}
.y47{bottom:393.229099pt;}
.yc5{bottom:401.067384pt;}
.y10d{bottom:402.427067pt;}
.y1e{bottom:406.430147pt;}
.y137{bottom:407.066955pt;}
.y94{bottom:407.628547pt;}
.ye7{bottom:410.188275pt;}
.y46{bottom:410.589211pt;}
.y6a{bottom:417.232411pt;}
.yc4{bottom:418.346976pt;}
.y10c{bottom:423.147200pt;}
.y1d{bottom:423.310067pt;}
.y136{bottom:424.427067pt;}
.y93{bottom:424.988659pt;}
.ye6{bottom:427.467867pt;}
.y45{bottom:427.868803pt;}
.yc3{bottom:435.707088pt;}
.y1c{bottom:440.189987pt;}
.y92{bottom:442.268251pt;}
.y69{bottom:442.591819pt;}
.y10b{bottom:443.787067pt;}
.ye5{bottom:444.827979pt;}
.y44{bottom:445.228915pt;}
.y135{bottom:449.787067pt;}
.yc2{bottom:453.070627pt;}
.y1b{bottom:457.069907pt;}
.ye4{bottom:462.188091pt;}
.y43{bottom:462.589027pt;}
.y10a{bottom:462.907200pt;}
.y109{bottom:462.911491pt;}
.y91{bottom:467.627659pt;}
.y68{bottom:467.872171pt;}
.yc1{bottom:470.350219pt;}
.y1a{bottom:473.949827pt;}
.ye3{bottom:479.467683pt;}
.y42{bottom:479.868619pt;}
.yc0{bottom:487.710331pt;}
.y19{bottom:490.749227pt;}
.y134{bottom:492.187067pt;}
.y90{bottom:492.987067pt;}
.y67{bottom:493.231579pt;}
.ye2{bottom:504.586995pt;}
.y41{bottom:505.228027pt;}
.y108{bottom:505.471435pt;}
.y18{bottom:507.629147pt;}
.ybf{bottom:512.829643pt;}
.y133{bottom:517.547067pt;}
.y66{bottom:518.590987pt;}
.y8f{bottom:520.347067pt;}
.y40{bottom:522.588139pt;}
.y17{bottom:524.509067pt;}
.y107{bottom:530.751787pt;}
.ye1{bottom:537.709099pt;}
.y3f{bottom:539.867731pt;}
.y8e{bottom:541.067067pt;}
.y16{bottom:541.388987pt;}
.y65{bottom:543.871339pt;}
.ybe{bottom:545.869195pt;}
.y106{bottom:548.111899pt;}
.ye0{bottom:555.069211pt;}
.y3e{bottom:557.227843pt;}
.y15{bottom:558.268907pt;}
.y132{bottom:559.870579pt;}
.y8d{bottom:561.707067pt;}
.ybd{bottom:563.229307pt;}
.y105{bottom:565.472011pt;}
.y64{bottom:569.230747pt;}
.y3d{bottom:574.587955pt;}
.y14{bottom:575.068307pt;}
.y131{bottom:577.230691pt;}
.ydf{bottom:580.349563pt;}
.ybc{bottom:580.589419pt;}
.y8c{bottom:588.986899pt;}
.y104{bottom:590.752363pt;}
.y3c{bottom:591.867547pt;}
.y13{bottom:591.948227pt;}
.y63{bottom:594.590155pt;}
.y130{bottom:594.590803pt;}
.ybb{bottom:597.869011pt;}
.yde{bottom:605.708971pt;}
.y12{bottom:608.828147pt;}
.y12f{bottom:611.870395pt;}
.y8b{bottom:614.267251pt;}
.yba{bottom:615.229123pt;}
.y103{bottom:616.111771pt;}
.y3b{bottom:617.226955pt;}
.y62{bottom:619.870507pt;}
.y11{bottom:625.708067pt;}
.y12e{bottom:629.230507pt;}
.ydd{bottom:631.068379pt;}
.y8a{bottom:631.627363pt;}
.yb9{bottom:632.589235pt;}
.y3a{bottom:634.588547pt;}
.y102{bottom:641.471179pt;}
.y10{bottom:642.587987pt;}
.y61{bottom:645.229915pt;}
.y89{bottom:648.987475pt;}
.yb8{bottom:649.868827pt;}
.y39{bottom:651.868139pt;}
.y12d{bottom:654.589915pt;}
.ydc{bottom:656.348731pt;}
.yf{bottom:659.387387pt;}
.y60{bottom:662.590027pt;}
.y88{bottom:666.268843pt;}
.y101{bottom:666.751531pt;}
.yb7{bottom:667.228939pt;}
.y38{bottom:669.228251pt;}
.y12c{bottom:671.869507pt;}
.ye{bottom:676.267307pt;}
.y5f{bottom:679.869619pt;}
.ydb{bottom:681.708139pt;}
.y87{bottom:683.628955pt;}
.yb6{bottom:684.589051pt;}
.y12b{bottom:689.229619pt;}
.y100{bottom:692.110939pt;}
.yd{bottom:693.147227pt;}
.y37{bottom:694.587659pt;}
.y5e{bottom:697.229731pt;}
.y86{bottom:700.989067pt;}
.yb5{bottom:701.868643pt;}
.yda{bottom:707.067547pt;}
.yc{bottom:710.027147pt;}
.y36{bottom:711.867251pt;}
.y12a{bottom:714.589027pt;}
.yff{bottom:717.470347pt;}
.y85{bottom:718.268659pt;}
.yb4{bottom:719.228755pt;}
.y5d{bottom:722.589139pt;}
.yb{bottom:726.907067pt;}
.y35{bottom:729.227363pt;}
.y129{bottom:731.868619pt;}
.yd9{bottom:732.347899pt;}
.y5c{bottom:739.868731pt;}
.yfe{bottom:742.750699pt;}
.y84{bottom:743.628067pt;}
.yb3{bottom:744.348067pt;}
.y34{bottom:746.587475pt;}
.y128{bottom:749.228731pt;}
.y5b{bottom:757.228843pt;}
.yd8{bottom:757.707307pt;}
.ya{bottom:759.947067pt;}
.y33{bottom:763.868915pt;}
.yfd{bottom:768.110107pt;}
.y83{bottom:768.987475pt;}
.y127{bottom:774.588139pt;}
.yb2{bottom:777.468139pt;}
.y32{bottom:781.229027pt;}
.y5a{bottom:782.588251pt;}
.yd7{bottom:783.066715pt;}
.y82{bottom:786.269563pt;}
.y126{bottom:791.867731pt;}
.yfc{bottom:793.469515pt;}
.y59{bottom:799.867843pt;}
.yb1{bottom:802.748491pt;}
.y31{bottom:806.588435pt;}
.y9{bottom:807.867067pt;}
.yd6{bottom:808.346955pt;}
.y81{bottom:811.628971pt;}
.y125{bottom:817.227139pt;}
.yfb{bottom:818.749867pt;}
.y30{bottom:823.868027pt;}
.y58{bottom:825.227251pt;}
.y8{bottom:825.227459pt;}
.yd5{bottom:825.708571pt;}
.yb0{bottom:828.107899pt;}
.y124{bottom:834.587251pt;}
.y80{bottom:836.988379pt;}
.y2f{bottom:841.228139pt;}
.y57{bottom:842.587363pt;}
.yd4{bottom:843.068683pt;}
.yfa{bottom:844.109275pt;}
.y123{bottom:851.866843pt;}
.yaf{bottom:853.467307pt;}
.y7{bottom:856.427067pt;}
.y2e{bottom:858.588251pt;}
.y56{bottom:859.866955pt;}
.yd3{bottom:860.348275pt;}
.y7f{bottom:862.268731pt;}
.y122{bottom:869.226955pt;}
.yf9{bottom:869.468683pt;}
.y2d{bottom:875.867843pt;}
.y55{bottom:877.227067pt;}
.yd2{bottom:877.708387pt;}
.yae{bottom:878.747659pt;}
.y121{bottom:886.587067pt;}
.yf8{bottom:886.748275pt;}
.y7e{bottom:887.628139pt;}
.y6{bottom:887.707067pt;}
.y2c{bottom:901.227251pt;}
.y54{bottom:902.587067pt;}
.yd1{bottom:902.827699pt;}
.yad{bottom:904.106627pt;}
.yf7{bottom:904.108387pt;}
.y120{bottom:911.947067pt;}
.y7d{bottom:912.987547pt;}
.y2b{bottom:918.587363pt;}
.yac{bottom:921.466739pt;}
.yf6{bottom:921.468499pt;}
.y2a{bottom:935.866955pt;}
.yd0{bottom:935.867251pt;}
.y7c{bottom:938.267899pt;}
.yf5{bottom:938.748091pt;}
.y5{bottom:944.905339pt;}
.y53{bottom:944.987659pt;}
.yab{bottom:946.506995pt;}
.y29{bottom:953.227363pt;}
.y11f{bottom:954.267531pt;}
.y52{bottom:962.267251pt;}
.y7b{bottom:963.627307pt;}
.yf4{bottom:963.867403pt;}
.y4{bottom:968.906203pt;}
.y28{bottom:970.587475pt;}
.y11e{bottom:971.627643pt;}
.yaa{bottom:979.626955pt;}
.y51{bottom:979.627363pt;}
.y27{bottom:987.867067pt;}
.y7a{bottom:988.986715pt;}
.y3{bottom:992.907067pt;}
.y11d{bottom:996.987051pt;}
.y50{bottom:996.987475pt;}
.y26{bottom:1013.227067pt;}
.y11c{bottom:1014.266643pt;}
.y4f{bottom:1014.267067pt;}
.y1{bottom:1062.987067pt;}
.y24{bottom:1070.987067pt;}
.h6{height:33.918750pt;}
.h1a{height:37.863437pt;}
.h2{height:47.085938pt;}
.h18{height:52.097812pt;}
.h13{height:52.097909pt;}
.h5{height:52.448437pt;}
.h1{height:57.473437pt;}
.h12{height:57.473886pt;}
.h4{height:58.830000pt;}
.h8{height:59.017500pt;}
.he{height:61.076250pt;}
.hf{height:63.276833pt;}
.h24{height:63.291072pt;}
.h27{height:63.292801pt;}
.h26{height:63.297184pt;}
.hc{height:63.297920pt;}
.h10{height:63.298208pt;}
.h25{height:63.299297pt;}
.hd{height:63.299392pt;}
.h20{height:63.302560pt;}
.h21{height:63.303680pt;}
.hb{height:63.304129pt;}
.h11{height:63.305313pt;}
.h22{height:63.305761pt;}
.h23{height:63.307072pt;}
.h1e{height:64.257813pt;}
.h15{height:64.258346pt;}
.h7{height:64.500000pt;}
.ha{height:66.750000pt;}
.h16{height:66.817418pt;}
.h17{height:66.817812pt;}
.h1f{height:69.633438pt;}
.h3{height:75.142500pt;}
.h19{height:81.680000pt;}
.h9{height:84.993437pt;}
.h1b{height:103.617813pt;}
.h1c{height:108.739988pt;}
.h1d{height:108.993438pt;}
.h14{height:110.978346pt;}
.h28{height:124.975741pt;}
.h29{height:124.992904pt;}
.h0{height:1122.666667pt;}
.w3{width:9.120000pt;}
.w4{width:9.200000pt;}
.w2{width:9.440000pt;}
.w6{width:10.960000pt;}
.w5{width:12.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x18{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x9{left:94.560000pt;}
.x12{left:95.759544pt;}
.x3f{left:100.559472pt;}
.x3e{left:112.160368pt;}
.x11{left:116.400000pt;}
.xd{left:118.559352pt;}
.x1{left:121.040000pt;}
.x43{left:124.800384pt;}
.x7{left:128.960000pt;}
.x13{left:131.920000pt;}
.x42{left:135.200000pt;}
.x3{left:162.400000pt;}
.x3c{left:163.599160pt;}
.x2{left:170.800000pt;}
.xc{left:173.120368pt;}
.x3d{left:182.879760pt;}
.x40{left:184.319304pt;}
.x17{left:185.680000pt;}
.x19{left:195.040000pt;}
.x5{left:196.080000pt;}
.x10{left:203.839064pt;}
.x1a{left:213.120000pt;}
.x1b{left:222.160000pt;}
.x1c{left:231.200000pt;}
.x1d{left:240.320000pt;}
.x1e{left:249.360000pt;}
.xe{left:254.796264pt;}
.x1f{left:258.400000pt;}
.x14{left:266.800000pt;}
.x20{left:276.560000pt;}
.x4{left:281.599072pt;}
.x21{left:285.600000pt;}
.x22{left:294.640000pt;}
.x23{left:303.680000pt;}
.x24{left:312.720000pt;}
.x35{left:314.560000pt;}
.x25{left:321.840000pt;}
.x26{left:333.840000pt;}
.x27{left:343.200000pt;}
.x6{left:347.039480pt;}
.xf{left:348.240688pt;}
.x28{left:352.240000pt;}
.x8{left:356.720000pt;}
.x29{left:361.360000pt;}
.x2a{left:370.400000pt;}
.x15{left:373.120000pt;}
.x2b{left:379.440000pt;}
.x2c{left:388.480000pt;}
.xa{left:396.720000pt;}
.x2d{left:406.640000pt;}
.x2e{left:415.680000pt;}
.x2f{left:424.720000pt;}
.x30{left:433.760000pt;}
.x31{left:442.800000pt;}
.x32{left:451.920000pt;}
.x33{left:460.960000pt;}
.x16{left:468.240000pt;}
.x34{left:470.000000pt;}
.xb{left:525.200656pt;}
.x36{left:551.440000pt;}
.x41{left:584.160000pt;}
.x39{left:588.160000pt;}
.x37{left:601.920000pt;}
.x3a{left:632.720000pt;}
.x3b{left:661.759867pt;}
.x38{left:669.520000pt;}
}




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