
    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_b80b9a451b7542162631dc8b.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_903b947e4dbb427a013e0316.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_4efb1417c3e73035087ac073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_b05d3992ffcd901dbadd5bb0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_49747e061b7f6e5a99aa3fdb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1387ee55b1144e55577038cc.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-4.486315px;}
.ls3{letter-spacing:-0.017037px;}
.ls2{letter-spacing:-0.011358px;}
.lse{letter-spacing:-0.005679px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:1.272012px;}
.ls7{letter-spacing:2.798426px;}
.ls0{letter-spacing:2.802969px;}
.lsd{letter-spacing:2.807512px;}
.ls5{letter-spacing:2.812055px;}
.ls9{letter-spacing:2.816598px;}
.ls16{letter-spacing:2.825630px;}
.ls8{letter-spacing:2.836627px;}
.ls6{letter-spacing:2.838773px;}
.ls4{letter-spacing:2.839440px;}
.ls13{letter-spacing:2.839470px;}
.ls12{letter-spacing:2.840147px;}
.lsa{letter-spacing:2.842670px;}
.lsb{letter-spacing:2.842886px;}
.ls18{letter-spacing:3.180173px;}
.lsc{letter-spacing:19.876080px;}
.ls15{letter-spacing:34.073280px;}
.ls11{letter-spacing:34.081197px;}
.ls14{letter-spacing:34.081797px;}
.ls10{letter-spacing:34.087197px;}
.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;}
}
.wsbb{word-spacing:-2.896259px;}
.wsba{word-spacing:-2.852941px;}
.ws13{word-spacing:-2.848398px;}
.ws8a{word-spacing:-1.317441px;}
.ws2{word-spacing:-0.062467px;}
.ws3{word-spacing:-0.056789px;}
.ws4{word-spacing:-0.051106px;}
.ws3e{word-spacing:0.000000px;}
.ws88{word-spacing:11.288664px;}
.ws50{word-spacing:11.302435px;}
.ws87{word-spacing:11.325450px;}
.ws51{word-spacing:11.329993px;}
.ws89{word-spacing:11.354605px;}
.ws103{word-spacing:11.993256px;}
.ws6{word-spacing:12.572125px;}
.ws10a{word-spacing:13.004635px;}
.ws16{word-spacing:13.061424px;}
.ws39{word-spacing:13.118213px;}
.ws34{word-spacing:13.175002px;}
.ws33{word-spacing:13.231790px;}
.wsde{word-spacing:13.345368px;}
.wsb2{word-spacing:13.402298px;}
.wse3{word-spacing:13.458946px;}
.ws3b{word-spacing:13.515734px;}
.ws69{word-spacing:13.572523px;}
.ws75{word-spacing:13.629312px;}
.wsf8{word-spacing:13.686101px;}
.ws128{word-spacing:13.742890px;}
.ws97{word-spacing:13.913256px;}
.wsc6{word-spacing:13.913403px;}
.ws82{word-spacing:13.970045px;}
.ws3c{word-spacing:14.026834px;}
.ws1b{word-spacing:14.197200px;}
.wsa{word-spacing:14.207524px;}
.wsff{word-spacing:14.253989px;}
.ws100{word-spacing:14.310778px;}
.ws4d{word-spacing:14.481144px;}
.ws10c{word-spacing:14.594722px;}
.wsf{word-spacing:14.667479px;}
.wsdf{word-spacing:14.765088px;}
.ws9e{word-spacing:14.821877px;}
.ws130{word-spacing:14.935454px;}
.ws79{word-spacing:14.992243px;}
.wsc9{word-spacing:14.992402px;}
.ws7a{word-spacing:15.049032px;}
.ws14{word-spacing:15.162610px;}
.ws102{word-spacing:15.219398px;}
.ws8{word-spacing:15.331860px;}
.wsf9{word-spacing:15.446554px;}
.ws121{word-spacing:15.503342px;}
.ws90{word-spacing:15.616920px;}
.ws60{word-spacing:15.673709px;}
.ws9b{word-spacing:15.787286px;}
.ws3f{word-spacing:15.854721px;}
.ws95{word-spacing:15.900864px;}
.wsc1{word-spacing:15.901032px;}
.ws4c{word-spacing:15.957653px;}
.wsf4{word-spacing:16.014442px;}
.wsa5{word-spacing:16.071230px;}
.ws122{word-spacing:16.128019px;}
.wsea{word-spacing:16.184808px;}
.wsef{word-spacing:16.468752px;}
.ws55{word-spacing:16.639118px;}
.ws54{word-spacing:16.695907px;}
.ws86{word-spacing:16.758375px;}
.ws3d{word-spacing:16.764000px;}
.wsac{word-spacing:16.923241px;}
.ws108{word-spacing:17.036640px;}
.wsd3{word-spacing:17.036820px;}
.ws27{word-spacing:17.093429px;}
.ws7d{word-spacing:17.150218px;}
.ws120{word-spacing:17.263795px;}
.ws5d{word-spacing:17.320584px;}
.wsc8{word-spacing:17.320767px;}
.ws110{word-spacing:17.377373px;}
.ws77{word-spacing:17.434162px;}
.wsaa{word-spacing:17.547925px;}
.ws28{word-spacing:17.604528px;}
.ws111{word-spacing:17.718106px;}
.wse7{word-spacing:17.774894px;}
.wseb{word-spacing:17.831683px;}
.ws67{word-spacing:17.945261px;}
.wsad{word-spacing:17.945450px;}
.ws9c{word-spacing:18.002050px;}
.ws10b{word-spacing:18.058838px;}
.ws7{word-spacing:18.091595px;}
.wsfe{word-spacing:18.115627px;}
.ws38{word-spacing:18.172416px;}
.wsb8{word-spacing:18.229397px;}
.ws45{word-spacing:18.285994px;}
.ws32{word-spacing:18.342782px;}
.wsab{word-spacing:18.342976px;}
.ws6b{word-spacing:18.456360px;}
.wsec{word-spacing:18.513149px;}
.wsa9{word-spacing:18.625890px;}
.ws12b{word-spacing:18.626726px;}
.ws5e{word-spacing:18.740304px;}
.wsbd{word-spacing:18.740502px;}
.wsd6{word-spacing:18.797093px;}
.wsbe{word-spacing:18.808649px;}
.wsd0{word-spacing:18.910870px;}
.ws81{word-spacing:19.081037px;}
.ws11{word-spacing:19.113719px;}
.ws21{word-spacing:19.137826px;}
.wsa6{word-spacing:19.194614px;}
.ws2d{word-spacing:19.251403px;}
.wsd7{word-spacing:19.308192px;}
.ws127{word-spacing:19.313871px;}
.wsf0{word-spacing:19.364981px;}
.ws7e{word-spacing:19.421770px;}
.ws119{word-spacing:19.484237px;}
.wscf{word-spacing:19.535554px;}
.ws40{word-spacing:19.592136px;}
.wse8{word-spacing:19.648925px;}
.ws78{word-spacing:19.705714px;}
.ws6a{word-spacing:19.762502px;}
.ws1{word-spacing:19.819291px;}
.wsaf{word-spacing:19.819501px;}
.ws6e{word-spacing:19.824970px;}
.ws12f{word-spacing:19.830649px;}
.wsd8{word-spacing:19.876080px;}
.wsfb{word-spacing:19.932869px;}
.ws6c{word-spacing:19.989658px;}
.ws104{word-spacing:20.046446px;}
.ws41{word-spacing:20.103235px;}
.wsb0{word-spacing:20.103448px;}
.ws96{word-spacing:20.108914px;}
.ws93{word-spacing:20.216813px;}
.wsa8{word-spacing:20.273602px;}
.ws15{word-spacing:20.557546px;}
.ws1a{word-spacing:20.614334px;}
.wse2{word-spacing:20.671123px;}
.wsca{word-spacing:20.728131px;}
.wsf2{word-spacing:20.784701px;}
.ws56{word-spacing:20.841490px;}
.ws5b{word-spacing:20.955067px;}
.ws29{word-spacing:21.011856px;}
.ws5{word-spacing:21.055754px;}
.ws8f{word-spacing:21.068645px;}
.ws85{word-spacing:21.182222px;}
.ws10d{word-spacing:21.409378px;}
.ws65{word-spacing:21.466166px;}
.wsfa{word-spacing:21.522955px;}
.wsd1{word-spacing:21.523183px;}
.ws123{word-spacing:21.579744px;}
.ws8e{word-spacing:21.624204px;}
.ws12e{word-spacing:21.699000px;}
.ws2e{word-spacing:21.750110px;}
.ws0{word-spacing:21.800843px;}
.ws98{word-spacing:21.863688px;}
.wsda{word-spacing:21.977266px;}
.ws94{word-spacing:22.090843px;}
.ws12c{word-spacing:22.153311px;}
.ws12d{word-spacing:22.204421px;}
.ws114{word-spacing:22.261210px;}
.ws101{word-spacing:22.317998px;}
.ws5c{word-spacing:22.374787px;}
.ws36{word-spacing:22.488365px;}
.ws8d{word-spacing:22.601942px;}
.wsa2{word-spacing:22.658731px;}
.ws10{word-spacing:22.691153px;}
.ws1f{word-spacing:22.772309px;}
.wsc5{word-spacing:22.829339px;}
.ws84{word-spacing:22.885886px;}
.wsae{word-spacing:22.942918px;}
.ws64{word-spacing:23.056253px;}
.ws9{word-spacing:23.100002px;}
.ws115{word-spacing:23.113042px;}
.ws92{word-spacing:23.118720px;}
.ws23{word-spacing:23.169830px;}
.ws52{word-spacing:23.289087px;}
.wsf1{word-spacing:23.396986px;}
.ws11f{word-spacing:23.510563px;}
.ws48{word-spacing:23.567352px;}
.wsd5{word-spacing:23.680930px;}
.wsb3{word-spacing:23.681180px;}
.ws47{word-spacing:23.794507px;}
.ws46{word-spacing:23.851296px;}
.ws57{word-spacing:23.908085px;}
.ws44{word-spacing:23.964874px;}
.wsa4{word-spacing:24.135240px;}
.wse{word-spacing:24.173233px;}
.ws62{word-spacing:24.305606px;}
.ws30{word-spacing:24.362395px;}
.wsc2{word-spacing:24.419442px;}
.ws70{word-spacing:24.475973px;}
.ws5f{word-spacing:24.532762px;}
.wsc7{word-spacing:24.533021px;}
.ws117{word-spacing:24.589550px;}
.wsc4{word-spacing:24.589810px;}
.wsa3{word-spacing:24.873494px;}
.ws9f{word-spacing:24.987072px;}
.wsa0{word-spacing:25.043861px;}
.ws91{word-spacing:25.157438px;}
.ws116{word-spacing:25.214227px;}
.wsd9{word-spacing:25.271016px;}
.wsb6{word-spacing:25.328072px;}
.ws99{word-spacing:25.333484px;}
.ws6f{word-spacing:25.384594px;}
.wsf5{word-spacing:25.441382px;}
.wsbc{word-spacing:25.441651px;}
.ws12{word-spacing:25.498171px;}
.wsb9{word-spacing:25.498441px;}
.ws31{word-spacing:25.668538px;}
.ws1e{word-spacing:25.782115px;}
.ws4a{word-spacing:25.895693px;}
.ws61{word-spacing:26.122848px;}
.ws72{word-spacing:26.179637px;}
.wsf7{word-spacing:26.463581px;}
.wsc{word-spacing:26.473012px;}
.ws71{word-spacing:26.577158px;}
.wse0{word-spacing:26.690736px;}
.wsb{word-spacing:26.728543px;}
.ws66{word-spacing:26.804314px;}
.wsd{word-spacing:26.932967px;}
.wsa7{word-spacing:26.974680px;}
.ws5a{word-spacing:26.980359px;}
.ws2c{word-spacing:27.031469px;}
.wsdb{word-spacing:27.088258px;}
.ws49{word-spacing:27.201835px;}
.wse1{word-spacing:27.258624px;}
.ws24{word-spacing:27.315413px;}
.ws19{word-spacing:27.428990px;}
.wsee{word-spacing:27.485779px;}
.wsf3{word-spacing:27.599357px;}
.ws42{word-spacing:27.712934px;}
.ws7b{word-spacing:27.769723px;}
.ws68{word-spacing:27.826512px;}
.ws109{word-spacing:27.883301px;}
.ws20{word-spacing:27.996878px;}
.ws63{word-spacing:28.224034px;}
.wsbf{word-spacing:28.281121px;}
.ws10e{word-spacing:28.337611px;}
.ws43{word-spacing:28.394400px;}
.wsed{word-spacing:28.507978px;}
.ws80{word-spacing:28.621555px;}
.ws8c{word-spacing:28.678344px;}
.ws7c{word-spacing:28.791922px;}
.ws25{word-spacing:28.848710px;}
.ws107{word-spacing:28.905499px;}
.ws53{word-spacing:28.962288px;}
.ws1d{word-spacing:29.019077px;}
.wse6{word-spacing:29.075866px;}
.wsfc{word-spacing:29.303021px;}
.ws4e{word-spacing:29.359810px;}
.ws2f{word-spacing:29.473387px;}
.ws112{word-spacing:29.530176px;}
.ws113{word-spacing:29.643754px;}
.ws2b{word-spacing:29.814120px;}
.wse9{word-spacing:29.927698px;}
.wsb5{word-spacing:29.984803px;}
.ws35{word-spacing:30.098064px;}
.wse5{word-spacing:30.154853px;}
.ws7f{word-spacing:30.211642px;}
.ws17{word-spacing:30.325219px;}
.ws58{word-spacing:30.438797px;}
.wse4{word-spacing:30.495586px;}
.wsd2{word-spacing:30.609487px;}
.ws12a{word-spacing:30.614842px;}
.ws22{word-spacing:30.836318px;}
.ws26{word-spacing:30.893107px;}
.ws37{word-spacing:31.006685px;}
.wsfd{word-spacing:31.063474px;}
.ws10f{word-spacing:31.120262px;}
.wsc0{word-spacing:31.177381px;}
.ws129{word-spacing:31.290629px;}
.wsb7{word-spacing:31.290959px;}
.ws59{word-spacing:31.347418px;}
.ws11e{word-spacing:31.404206px;}
.wsce{word-spacing:31.745275px;}
.wscd{word-spacing:31.802064px;}
.ws11c{word-spacing:31.972094px;}
.ws18{word-spacing:32.028883px;}
.ws73{word-spacing:32.312827px;}
.wsd4{word-spacing:32.369616px;}
.ws83{word-spacing:32.426405px;}
.ws11b{word-spacing:32.539982px;}
.ws2a{word-spacing:32.596771px;}
.ws4b{word-spacing:32.767138px;}
.ws106{word-spacing:32.823926px;}
.ws9d{word-spacing:32.937504px;}
.ws126{word-spacing:32.994293px;}
.ws125{word-spacing:33.051082px;}
.wsb4{word-spacing:33.051431px;}
.wsb1{word-spacing:33.108220px;}
.ws1c{word-spacing:33.164659px;}
.ws6d{word-spacing:33.391814px;}
.ws74{word-spacing:33.505392px;}
.ws4f{word-spacing:33.732547px;}
.wsa1{word-spacing:34.016491px;}
.ws76{word-spacing:34.073280px;}
.wsf6{word-spacing:34.130069px;}
.wsdc{word-spacing:34.300435px;}
.ws9a{word-spacing:34.357224px;}
.wsdd{word-spacing:34.925112px;}
.ws8b{word-spacing:35.038690px;}
.wsc3{word-spacing:35.493375px;}
.ws3a{word-spacing:35.606578px;}
.ws11a{word-spacing:35.947310px;}
.wscc{word-spacing:36.288427px;}
.ws11d{word-spacing:36.344832px;}
.ws118{word-spacing:38.616384px;}
.ws105{word-spacing:40.149682px;}
.ws124{word-spacing:40.490414px;}
.wscb{word-spacing:40.661210px;}
._5{margin-left:-7.325755px;}
._6{margin-left:-6.303557px;}
._14{margin-left:-5.111292px;}
._3{margin-left:-3.975216px;}
._a{margin-left:-2.907617px;}
._0{margin-left:-1.749065px;}
._d{width:1.045969px;}
._9{width:2.271552px;}
._2{width:3.435663px;}
._1{width:4.713470px;}
._11{width:7.328203px;}
._4{width:13.696462px;}
._7{width:17.377373px;}
._e{width:21.863919px;}
._12{width:22.942675px;}
._10{width:24.031941px;}
._f{width:28.394700px;}
._8{width:31.800300px;}
._c{width:37.342638px;}
._13{width:40.547203px;}
._b{width:43.384695px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.751800px;}
.fs4{font-size:45.429000px;}
.fs3{font-size:51.106200px;}
.fs2{font-size:56.788800px;}
.fs6{font-size:56.789400px;}
.fs1{font-size:62.466600px;}
.fs0{font-size:136.284000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:109.582406px;}
.y4e{bottom:109.596604px;}
.y2e{bottom:126.619046px;}
.y4d{bottom:126.633244px;}
.y10c{bottom:128.963490px;}
.y177{bottom:129.109080px;}
.y191{bottom:129.405480px;}
.yd7{bottom:129.589290px;}
.yfb{bottom:129.590130px;}
.yad{bottom:131.805060px;}
.y142{bottom:131.819933px;}
.yb5{bottom:132.900281px;}
.y1b5{bottom:134.622690px;}
.y163{bottom:137.468460px;}
.y76{bottom:142.290559px;}
.y2d{bottom:143.655686px;}
.y4c{bottom:143.669884px;}
.y10b{bottom:146.000310px;}
.y176{bottom:146.145720px;}
.y190{bottom:146.442120px;}
.yd6{bottom:146.625930px;}
.yfa{bottom:146.626950px;}
.yac{bottom:148.841700px;}
.y141{bottom:148.856573px;}
.y1b4{bottom:151.659330px;}
.yb4{bottom:152.932530px;}
.y162{bottom:154.505100px;}
.y75{bottom:159.327199px;}
.y2c{bottom:160.692326px;}
.y4b{bottom:160.706524px;}
.y10a{bottom:163.037130px;}
.y175{bottom:163.182360px;}
.y18f{bottom:163.478760px;}
.yf9{bottom:163.661490px;}
.yd5{bottom:163.662570px;}
.yab{bottom:165.878340px;}
.y1b3{bottom:168.695970px;}
.y140{bottom:169.953612px;}
.yb3{bottom:169.969170px;}
.y161{bottom:171.541560px;}
.y74{bottom:176.363839px;}
.y2b{bottom:177.728966px;}
.y4a{bottom:177.743164px;}
.y109{bottom:180.073950px;}
.y174{bottom:180.219000px;}
.y18e{bottom:180.515400px;}
.yf8{bottom:180.698310px;}
.yd4{bottom:180.699210px;}
.yaa{bottom:182.914980px;}
.y1b2{bottom:185.732610px;}
.y13f{bottom:186.990252px;}
.yb2{bottom:187.005810px;}
.y160{bottom:188.578200px;}
.y73{bottom:193.400479px;}
.y2a{bottom:194.765606px;}
.y49{bottom:194.779804px;}
.y108{bottom:197.110770px;}
.y173{bottom:197.255640px;}
.y18d{bottom:197.552040px;}
.yf7{bottom:197.735130px;}
.yd3{bottom:197.735850px;}
.ya9{bottom:199.951620px;}
.y1b1{bottom:202.769250px;}
.yb1{bottom:204.042450px;}
.y15f{bottom:209.782079px;}
.y72{bottom:210.437119px;}
.y29{bottom:211.802246px;}
.y48{bottom:211.816444px;}
.y13e{bottom:213.113100px;}
.y107{bottom:214.147590px;}
.y172{bottom:214.292280px;}
.y18c{bottom:214.588680px;}
.yf6{bottom:214.771950px;}
.ya8{bottom:216.988260px;}
.yd2{bottom:218.572417px;}
.y1b0{bottom:219.805890px;}
.y15e{bottom:226.818719px;}
.y71{bottom:227.317590px;}
.y47{bottom:228.853084px;}
.y28{bottom:229.023450px;}
.y13d{bottom:230.149740px;}
.y106{bottom:231.184410px;}
.y171{bottom:231.328920px;}
.y18b{bottom:231.625320px;}
.yf5{bottom:231.806190px;}
.ya7{bottom:234.024900px;}
.yd1{bottom:235.609057px;}
.y1af{bottom:236.842530px;}
.y15d{bottom:243.855359px;}
.y70{bottom:244.354230px;}
.y46{bottom:245.889724px;}
.y27{bottom:246.060090px;}
.y13c{bottom:247.186380px;}
.y105{bottom:248.221230px;}
.y170{bottom:248.365560px;}
.y18a{bottom:248.661960px;}
.yf4{bottom:248.843010px;}
.yd0{bottom:253.100008px;}
.y1ae{bottom:253.879170px;}
.ya6{bottom:256.500000px;}
.yb0{bottom:257.912794px;}
.y15c{bottom:260.891999px;}
.y6f{bottom:261.390870px;}
.y45{bottom:262.926364px;}
.y26{bottom:263.096730px;}
.y13b{bottom:264.223020px;}
.y104{bottom:265.258050px;}
.y16f{bottom:265.402200px;}
.y189{bottom:265.698600px;}
.yf3{bottom:265.879830px;}
.ycf{bottom:270.136648px;}
.yaf{bottom:270.689700px;}
.y1ad{bottom:270.915810px;}
.ya5{bottom:273.529476px;}
.y15b{bottom:277.928639px;}
.y6e{bottom:278.427510px;}
.y44{bottom:279.963004px;}
.y25{bottom:280.133370px;}
.y13a{bottom:281.259660px;}
.y188{bottom:282.735240px;}
.yf2{bottom:282.916650px;}
.y1cf{bottom:285.922250px;}
.yce{bottom:287.173288px;}
.y103{bottom:287.663847px;}
.y1ac{bottom:287.952450px;}
.y16e{bottom:292.655384px;}
.y6d{bottom:295.464150px;}
.y43{bottom:296.999644px;}
.y24{bottom:297.170010px;}
.y139{bottom:298.296300px;}
.y187{bottom:299.771880px;}
.yf1{bottom:299.951730px;}
.ya4{bottom:301.512157px;}
.y15a{bottom:301.637963px;}
.y1ce{bottom:302.958890px;}
.ycd{bottom:304.209928px;}
.y102{bottom:304.700667px;}
.y1ab{bottom:304.989090px;}
.y6c{bottom:312.500790px;}
.y42{bottom:314.036284px;}
.y23{bottom:314.206650px;}
.y138{bottom:315.332940px;}
.y186{bottom:316.808520px;}
.yf0{bottom:316.988550px;}
.ya3{bottom:318.548797px;}
.y1cd{bottom:319.995530px;}
.ycc{bottom:321.246568px;}
.y1aa{bottom:322.025730px;}
.y16d{bottom:327.410130px;}
.y6b{bottom:329.537430px;}
.y41{bottom:331.072924px;}
.y22{bottom:331.243290px;}
.y137{bottom:332.369580px;}
.y101{bottom:333.507090px;}
.y159{bottom:333.595860px;}
.y185{bottom:333.845160px;}
.ya2{bottom:335.585437px;}
.y1cc{bottom:337.032170px;}
.yef{bottom:337.625010px;}
.ycb{bottom:338.283208px;}
.y1a9{bottom:339.062370px;}
.y16c{bottom:344.446770px;}
.y6a{bottom:346.574070px;}
.y40{bottom:348.109564px;}
.y21{bottom:348.279930px;}
.y136{bottom:349.406220px;}
.y100{bottom:350.543910px;}
.y158{bottom:350.632500px;}
.y184{bottom:350.881800px;}
.ya1{bottom:352.622077px;}
.y1cb{bottom:354.068810px;}
.yee{bottom:354.661830px;}
.yca{bottom:355.319848px;}
.y1a8{bottom:356.099010px;}
.y16b{bottom:361.483410px;}
.y69{bottom:363.610710px;}
.y3f{bottom:365.146204px;}
.y20{bottom:365.316570px;}
.y135{bottom:366.442860px;}
.yff{bottom:367.580730px;}
.y157{bottom:367.669140px;}
.ya0{bottom:369.658717px;}
.y1ca{bottom:371.105450px;}
.yed{bottom:371.698650px;}
.yc9{bottom:372.356488px;}
.y183{bottom:372.391370px;}
.y1a7{bottom:373.135650px;}
.y16a{bottom:378.520050px;}
.y68{bottom:380.647350px;}
.y3e{bottom:382.182844px;}
.y1f{bottom:382.353210px;}
.y134{bottom:383.479500px;}
.yfe{bottom:384.617550px;}
.y156{bottom:384.705780px;}
.y9f{bottom:386.695357px;}
.y1c9{bottom:388.142090px;}
.yc8{bottom:389.393128px;}
.y1a6{bottom:390.172290px;}
.yec{bottom:395.375025px;}
.y169{bottom:395.555130px;}
.y182{bottom:397.492020px;}
.y3d{bottom:399.219484px;}
.y1e{bottom:399.389850px;}
.y155{bottom:401.742420px;}
.y67{bottom:402.003825px;}
.y133{bottom:402.445181px;}
.y9e{bottom:403.731997px;}
.y1c8{bottom:405.178730px;}
.yc7{bottom:406.429768px;}
.y1a5{bottom:407.208930px;}
.yeb{bottom:412.411611px;}
.y168{bottom:412.591770px;}
.y181{bottom:414.528660px;}
.y3c{bottom:416.256124px;}
.y154{bottom:418.779060px;}
.y66{bottom:419.047055px;}
.y132{bottom:419.481821px;}
.y9d{bottom:420.768637px;}
.y1d{bottom:422.051700px;}
.y1c7{bottom:422.215370px;}
.y1a4{bottom:424.245570px;}
.yc6{bottom:427.257060px;}
.y167{bottom:429.628410px;}
.yfd{bottom:431.205000px;}
.y180{bottom:431.565300px;}
.y3b{bottom:433.292764px;}
.y153{bottom:435.815700px;}
.y131{bottom:436.518461px;}
.y9c{bottom:437.805277px;}
.y1c6{bottom:439.252010px;}
.y1a3{bottom:441.282210px;}
.yea{bottom:442.098270px;}
.yc5{bottom:444.293700px;}
.y65{bottom:444.743987px;}
.y166{bottom:446.665050px;}
.y3a{bottom:450.329404px;}
.y1c{bottom:450.329735px;}
.y17f{bottom:452.821040px;}
.y152{bottom:452.847720px;}
.y130{bottom:453.555101px;}
.y9b{bottom:454.841917px;}
.y1c5{bottom:456.288650px;}
.y1a2{bottom:458.318850px;}
.ye9{bottom:459.135090px;}
.yc4{bottom:461.328810px;}
.y64{bottom:461.780627px;}
.y1b{bottom:464.524482px;}
.y39{bottom:467.366044px;}
.y151{bottom:469.884360px;}
.y12f{bottom:470.591741px;}
.y9a{bottom:471.878557px;}
.y1c4{bottom:473.325290px;}
.y1a1{bottom:475.355490px;}
.ye8{bottom:476.171910px;}
.y17e{bottom:477.921690px;}
.yc3{bottom:478.365450px;}
.y1a{bottom:478.719230px;}
.y63{bottom:478.817267px;}
.y38{bottom:484.402684px;}
.y150{bottom:486.921000px;}
.y12e{bottom:487.628381px;}
.y99{bottom:488.915197px;}
.y1c3{bottom:490.361930px;}
.y1a0{bottom:492.392130px;}
.y19{bottom:492.913977px;}
.ye7{bottom:493.208730px;}
.y17d{bottom:494.958330px;}
.y165{bottom:495.118894px;}
.yc2{bottom:495.402060px;}
.y62{bottom:495.853907px;}
.y37{bottom:501.439324px;}
.y14f{bottom:503.957640px;}
.y12d{bottom:504.665021px;}
.y98{bottom:505.951837px;}
.y18{bottom:507.108724px;}
.y1c2{bottom:507.398570px;}
.y164{bottom:507.895800px;}
.y19f{bottom:509.428770px;}
.ye6{bottom:510.245550px;}
.y17c{bottom:511.994970px;}
.yc1{bottom:512.438700px;}
.y61{bottom:512.734378px;}
.y36{bottom:518.475964px;}
.y14e{bottom:520.994280px;}
.y17{bottom:521.303471px;}
.y97{bottom:523.144646px;}
.y1c1{bottom:524.435210px;}
.y19e{bottom:526.465410px;}
.ye5{bottom:527.279220px;}
.y17b{bottom:529.031610px;}
.y60{bottom:529.771018px;}
.yc0{bottom:533.247124px;}
.y16{bottom:535.498218px;}
.y35{bottom:535.512604px;}
.y14d{bottom:538.030920px;}
.y12c{bottom:538.738301px;}
.y96{bottom:540.181286px;}
.y1c0{bottom:541.471850px;}
.y19d{bottom:543.502050px;}
.ye4{bottom:544.316040px;}
.y17a{bottom:546.068250px;}
.y5f{bottom:546.807658px;}
.y15{bottom:549.692965px;}
.ybf{bottom:550.283764px;}
.y34{bottom:552.549244px;}
.y14c{bottom:555.067560px;}
.y12b{bottom:555.774941px;}
.y95{bottom:557.217926px;}
.y1bf{bottom:558.508490px;}
.y19c{bottom:560.538690px;}
.ye3{bottom:561.352860px;}
.y5e{bottom:563.844298px;}
.y14{bottom:563.887712px;}
.ybe{bottom:567.774714px;}
.y33{bottom:569.585884px;}
.y14b{bottom:572.104200px;}
.y12a{bottom:572.811581px;}
.y94{bottom:574.254566px;}
.y1be{bottom:575.545130px;}
.y19b{bottom:577.575330px;}
.y13{bottom:578.082459px;}
.ye2{bottom:578.389680px;}
.y5d{bottom:580.724768px;}
.ybd{bottom:584.811354px;}
.y32{bottom:586.622524px;}
.y14a{bottom:589.138440px;}
.y179{bottom:589.274250px;}
.y129{bottom:589.848221px;}
.y93{bottom:591.291206px;}
.y12{bottom:592.277206px;}
.y1bd{bottom:592.581770px;}
.y19a{bottom:594.611970px;}
.ye1{bottom:595.426500px;}
.y5c{bottom:597.761408px;}
.ybc{bottom:601.847994px;}
.y31{bottom:603.659164px;}
.y149{bottom:606.175080px;}
.y11{bottom:606.471953px;}
.y128{bottom:606.884861px;}
.y92{bottom:608.327846px;}
.y1bc{bottom:609.618410px;}
.y199{bottom:611.648610px;}
.ye0{bottom:612.458130px;}
.y5b{bottom:614.798048px;}
.ybb{bottom:618.884634px;}
.y10{bottom:620.666700px;}
.y30{bottom:620.695804px;}
.y148{bottom:623.211720px;}
.y91{bottom:625.364486px;}
.y127{bottom:625.852320px;}
.y1bb{bottom:626.655050px;}
.y198{bottom:628.685250px;}
.ydf{bottom:629.494950px;}
.y5a{bottom:631.834688px;}
.yba{bottom:635.921274px;}
.y147{bottom:640.248360px;}
.y90{bottom:642.401126px;}
.y126{bottom:642.888960px;}
.y1ba{bottom:643.691690px;}
.y197{bottom:645.721890px;}
.yde{bottom:646.531770px;}
.y59{bottom:648.871328px;}
.yb9{bottom:652.957914px;}
.y146{bottom:657.285000px;}
.y8f{bottom:659.437766px;}
.y125{bottom:659.925600px;}
.y1b9{bottom:660.728330px;}
.y196{bottom:662.758530px;}
.ydd{bottom:663.568590px;}
.y58{bottom:665.751799px;}
.yb8{bottom:669.994554px;}
.y8e{bottom:676.474406px;}
.y124{bottom:676.962240px;}
.y1b8{bottom:677.764970px;}
.y145{bottom:678.488160px;}
.y195{bottom:679.795170px;}
.ydc{bottom:680.605410px;}
.y57{bottom:682.788439px;}
.yb7{bottom:687.031194px;}
.yf{bottom:693.102941px;}
.y8d{bottom:693.511046px;}
.y123{bottom:693.998880px;}
.y1b7{bottom:694.801610px;}
.y144{bottom:695.524800px;}
.y194{bottom:696.831810px;}
.ydb{bottom:697.642230px;}
.y56{bottom:699.825079px;}
.yb6{bottom:704.067834px;}
.ye{bottom:710.664877px;}
.y8c{bottom:710.703856px;}
.y122{bottom:711.035520px;}
.y1b6{bottom:711.838250px;}
.y193{bottom:713.868450px;}
.yda{bottom:714.679050px;}
.y55{bottom:716.861719px;}
.y8b{bottom:727.740496px;}
.y121{bottom:728.072160px;}
.yd{bottom:728.226814px;}
.y54{bottom:733.898359px;}
.y143{bottom:743.102700px;}
.y8a{bottom:744.777136px;}
.y120{bottom:745.108800px;}
.yc{bottom:745.788750px;}
.yae{bottom:749.990400px;}
.y53{bottom:750.934999px;}
.yfc{bottom:754.911000px;}
.yd9{bottom:759.242644px;}
.y192{bottom:759.769050px;}
.y89{bottom:761.813776px;}
.y11f{bottom:762.145440px;}
.yb{bottom:763.568550px;}
.y52{bottom:767.815470px;}
.yd8{bottom:772.019550px;}
.y88{bottom:778.850416px;}
.y11e{bottom:779.182080px;}
.y51{bottom:784.852110px;}
.y87{bottom:795.887056px;}
.y11d{bottom:796.218720px;}
.ya{bottom:799.229418px;}
.y50{bottom:801.888750px;}
.y86{bottom:812.923696px;}
.y11c{bottom:813.255360px;}
.y9{bottom:816.791354px;}
.y85{bottom:829.960336px;}
.y11b{bottom:830.292000px;}
.y8{bottom:834.353291px;}
.y178{bottom:843.380250px;}
.y4f{bottom:844.154700px;}
.y84{bottom:846.996976px;}
.y11a{bottom:847.328640px;}
.y7{bottom:851.915227px;}
.y83{bottom:864.033616px;}
.y119{bottom:864.365280px;}
.y6{bottom:869.477164px;}
.y82{bottom:881.070256px;}
.y118{bottom:881.401920px;}
.y5{bottom:887.039100px;}
.y81{bottom:898.106896px;}
.y117{bottom:898.438560px;}
.y4{bottom:904.818750px;}
.y80{bottom:915.299705px;}
.y116{bottom:915.475200px;}
.y7f{bottom:932.336345px;}
.y115{bottom:932.511840px;}
.y7e{bottom:949.372985px;}
.y114{bottom:949.548480px;}
.y7d{bottom:966.409625px;}
.y113{bottom:966.585120px;}
.y7c{bottom:983.446265px;}
.y112{bottom:983.621760px;}
.y7b{bottom:1000.482905px;}
.y111{bottom:1000.658400px;}
.y3{bottom:1002.603000px;}
.y7a{bottom:1017.675714px;}
.y110{bottom:1017.693330px;}
.y79{bottom:1034.712354px;}
.y10f{bottom:1034.729970px;}
.y2{bottom:1042.365000px;}
.y78{bottom:1051.748994px;}
.y10e{bottom:1051.766610px;}
.y77{bottom:1068.785634px;}
.y10d{bottom:1068.803250px;}
.y1{bottom:1082.127000px;}
.h8{height:31.255152px;}
.h7{height:35.467703px;}
.h6{height:35.723234px;}
.hc{height:38.786750px;}
.ha{height:38.787160px;}
.h5{height:39.070694px;}
.h9{height:39.071107px;}
.h4{height:39.354638px;}
.hb{height:39.411427px;}
.h3{height:42.977021px;}
.h2{height:43.289354px;}
.h1{height:95.398800px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:85.354950px;}
.x22{left:87.012053px;}
.x41{left:94.149450px;}
.x2d{left:99.552150px;}
.x21{left:101.206800px;}
.x27{left:102.373123px;}
.x2f{left:112.692370px;}
.x6{left:115.773000px;}
.x44{left:117.801985px;}
.x1{left:122.466000px;}
.x32{left:125.711250px;}
.x2{left:139.092000px;}
.x33{left:141.328170px;}
.x4e{left:154.146817px;}
.x51{left:157.525751px;}
.x26{left:164.443500px;}
.x15{left:172.911150px;}
.x4f{left:182.186287px;}
.xa{left:184.530040px;}
.x52{left:188.958352px;}
.x48{left:193.941569px;}
.x4{left:200.366700px;}
.x19{left:204.173384px;}
.x23{left:210.492900px;}
.x18{left:219.165628px;}
.x1a{left:221.181630px;}
.x8{left:223.472959px;}
.x28{left:231.248020px;}
.x9{left:249.127300px;}
.x49{left:255.188290px;}
.x16{left:268.756447px;}
.x4b{left:272.196535px;}
.x4a{left:281.197560px;}
.x53{left:302.053247px;}
.x7{left:308.741342px;}
.x45{left:313.340021px;}
.x2b{left:320.286750px;}
.x42{left:325.223077px;}
.x4c{left:333.471650px;}
.x40{left:341.235900px;}
.x5{left:344.024263px;}
.x46{left:377.724323px;}
.x17{left:379.054494px;}
.x43{left:384.879712px;}
.x3{left:393.429000px;}
.x47{left:403.747790px;}
.x50{left:424.731252px;}
.x4d{left:429.047201px;}
.x55{left:469.750573px;}
.x24{left:470.958677px;}
.x1e{left:478.512450px;}
.xe{left:482.049300px;}
.x25{left:485.155877px;}
.x29{left:487.656737px;}
.x34{left:491.310000px;}
.x2e{left:499.570200px;}
.x35{left:501.268350px;}
.x3a{left:512.401061px;}
.x54{left:528.896108px;}
.x30{left:548.353500px;}
.x2a{left:559.143600px;}
.x39{left:565.526983px;}
.x37{left:567.144864px;}
.x36{left:569.666850px;}
.x3b{left:579.653197px;}
.x1b{left:582.008700px;}
.x14{left:585.859226px;}
.x12{left:586.924016px;}
.x10{left:589.749259px;}
.xb{left:602.350650px;}
.x31{left:608.220300px;}
.x38{left:610.517310px;}
.x20{left:611.866750px;}
.x13{left:615.403600px;}
.x1c{left:618.457961px;}
.x11{left:642.633829px;}
.xc{left:658.976623px;}
.x1f{left:671.480792px;}
.xf{left:675.017642px;}
.xd{left:687.601942px;}
.x1d{left:703.506237px;}
.x3c{left:713.177863px;}
.x3f{left:716.130881px;}
.x3d{left:780.671352px;}
.x56{left:789.414728px;}
.x3e{left:806.680622px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-3.987836pt;}
.ls3{letter-spacing:-0.015144pt;}
.ls2{letter-spacing:-0.010096pt;}
.lse{letter-spacing:-0.005048pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:1.130677pt;}
.ls7{letter-spacing:2.487490pt;}
.ls0{letter-spacing:2.491528pt;}
.lsd{letter-spacing:2.495566pt;}
.ls5{letter-spacing:2.499605pt;}
.ls9{letter-spacing:2.503643pt;}
.ls16{letter-spacing:2.511671pt;}
.ls8{letter-spacing:2.521446pt;}
.ls6{letter-spacing:2.523354pt;}
.ls4{letter-spacing:2.523947pt;}
.ls13{letter-spacing:2.523973pt;}
.ls12{letter-spacing:2.524575pt;}
.lsa{letter-spacing:2.526818pt;}
.lsb{letter-spacing:2.527010pt;}
.ls18{letter-spacing:2.826820pt;}
.lsc{letter-spacing:17.667627pt;}
.ls15{letter-spacing:30.287360pt;}
.ls11{letter-spacing:30.294397pt;}
.ls14{letter-spacing:30.294931pt;}
.ls10{letter-spacing:30.299731pt;}
.wsbb{word-spacing:-2.574453pt;}
.wsba{word-spacing:-2.535948pt;}
.ws13{word-spacing:-2.531910pt;}
.ws8a{word-spacing:-1.171059pt;}
.ws2{word-spacing:-0.055526pt;}
.ws3{word-spacing:-0.050479pt;}
.ws4{word-spacing:-0.045428pt;}
.ws3e{word-spacing:0.000000pt;}
.ws88{word-spacing:10.034368pt;}
.ws50{word-spacing:10.046609pt;}
.ws87{word-spacing:10.067066pt;}
.ws51{word-spacing:10.071105pt;}
.ws89{word-spacing:10.092982pt;}
.ws103{word-spacing:10.660672pt;}
.ws6{word-spacing:11.175222pt;}
.ws10a{word-spacing:11.559676pt;}
.ws16{word-spacing:11.610155pt;}
.ws39{word-spacing:11.660634pt;}
.ws34{word-spacing:11.711113pt;}
.ws33{word-spacing:11.761591pt;}
.wsde{word-spacing:11.862549pt;}
.wsb2{word-spacing:11.913154pt;}
.wse3{word-spacing:11.963507pt;}
.ws3b{word-spacing:12.013986pt;}
.ws69{word-spacing:12.064465pt;}
.ws75{word-spacing:12.114944pt;}
.wsf8{word-spacing:12.165423pt;}
.ws128{word-spacing:12.215902pt;}
.ws97{word-spacing:12.367339pt;}
.wsc6{word-spacing:12.367469pt;}
.ws82{word-spacing:12.417818pt;}
.ws3c{word-spacing:12.468297pt;}
.ws1b{word-spacing:12.619733pt;}
.wsa{word-spacing:12.628910pt;}
.wsff{word-spacing:12.670212pt;}
.ws100{word-spacing:12.720691pt;}
.ws4d{word-spacing:12.872128pt;}
.ws10c{word-spacing:12.973086pt;}
.wsf{word-spacing:13.037759pt;}
.wsdf{word-spacing:13.124523pt;}
.ws9e{word-spacing:13.175002pt;}
.ws130{word-spacing:13.275959pt;}
.ws79{word-spacing:13.326438pt;}
.wsc9{word-spacing:13.326579pt;}
.ws7a{word-spacing:13.376917pt;}
.ws14{word-spacing:13.477875pt;}
.ws102{word-spacing:13.528354pt;}
.ws8{word-spacing:13.628320pt;}
.wsf9{word-spacing:13.730270pt;}
.ws121{word-spacing:13.780749pt;}
.ws90{word-spacing:13.881707pt;}
.ws60{word-spacing:13.932186pt;}
.ws9b{word-spacing:14.033143pt;}
.ws3f{word-spacing:14.093085pt;}
.ws95{word-spacing:14.134101pt;}
.wsc1{word-spacing:14.134251pt;}
.ws4c{word-spacing:14.184580pt;}
.wsf4{word-spacing:14.235059pt;}
.wsa5{word-spacing:14.285538pt;}
.ws122{word-spacing:14.336017pt;}
.wsea{word-spacing:14.386496pt;}
.wsef{word-spacing:14.638891pt;}
.ws55{word-spacing:14.790327pt;}
.ws54{word-spacing:14.840806pt;}
.ws86{word-spacing:14.896333pt;}
.ws3d{word-spacing:14.901333pt;}
.wsac{word-spacing:15.042881pt;}
.ws108{word-spacing:15.143680pt;}
.wsd3{word-spacing:15.143840pt;}
.ws27{word-spacing:15.194159pt;}
.ws7d{word-spacing:15.244638pt;}
.ws120{word-spacing:15.345596pt;}
.ws5d{word-spacing:15.396075pt;}
.wsc8{word-spacing:15.396237pt;}
.ws110{word-spacing:15.446554pt;}
.ws77{word-spacing:15.497033pt;}
.wsaa{word-spacing:15.598155pt;}
.ws28{word-spacing:15.648469pt;}
.ws111{word-spacing:15.749427pt;}
.wse7{word-spacing:15.799906pt;}
.wseb{word-spacing:15.850385pt;}
.ws67{word-spacing:15.951343pt;}
.wsad{word-spacing:15.951511pt;}
.ws9c{word-spacing:16.001822pt;}
.ws10b{word-spacing:16.052301pt;}
.ws7{word-spacing:16.081418pt;}
.wsfe{word-spacing:16.102780pt;}
.ws38{word-spacing:16.153259pt;}
.wsb8{word-spacing:16.203909pt;}
.ws45{word-spacing:16.254217pt;}
.ws32{word-spacing:16.304695pt;}
.wsab{word-spacing:16.304868pt;}
.ws6b{word-spacing:16.405653pt;}
.wsec{word-spacing:16.456132pt;}
.wsa9{word-spacing:16.556347pt;}
.ws12b{word-spacing:16.557090pt;}
.ws5e{word-spacing:16.658048pt;}
.wsbd{word-spacing:16.658224pt;}
.wsd6{word-spacing:16.708527pt;}
.wsbe{word-spacing:16.718799pt;}
.wsd0{word-spacing:16.809662pt;}
.ws81{word-spacing:16.960922pt;}
.ws11{word-spacing:16.989972pt;}
.ws21{word-spacing:17.011401pt;}
.wsa6{word-spacing:17.061879pt;}
.ws2d{word-spacing:17.112358pt;}
.wsd7{word-spacing:17.162837pt;}
.ws127{word-spacing:17.167885pt;}
.wsf0{word-spacing:17.213316pt;}
.ws7e{word-spacing:17.263795pt;}
.ws119{word-spacing:17.319322pt;}
.wscf{word-spacing:17.364937pt;}
.ws40{word-spacing:17.415232pt;}
.wse8{word-spacing:17.465711pt;}
.ws78{word-spacing:17.516190pt;}
.ws6a{word-spacing:17.566669pt;}
.ws1{word-spacing:17.617148pt;}
.wsaf{word-spacing:17.617334pt;}
.ws6e{word-spacing:17.622196pt;}
.ws12f{word-spacing:17.627244pt;}
.wsd8{word-spacing:17.667627pt;}
.wsfb{word-spacing:17.718106pt;}
.ws6c{word-spacing:17.768585pt;}
.ws104{word-spacing:17.819063pt;}
.ws41{word-spacing:17.869542pt;}
.wsb0{word-spacing:17.869731pt;}
.ws96{word-spacing:17.874590pt;}
.ws93{word-spacing:17.970500pt;}
.wsa8{word-spacing:18.020979pt;}
.ws15{word-spacing:18.273374pt;}
.ws1a{word-spacing:18.323853pt;}
.wse2{word-spacing:18.374332pt;}
.wsca{word-spacing:18.425005pt;}
.wsf2{word-spacing:18.475290pt;}
.ws56{word-spacing:18.525769pt;}
.ws5b{word-spacing:18.626726pt;}
.ws29{word-spacing:18.677205pt;}
.ws5{word-spacing:18.716226pt;}
.ws8f{word-spacing:18.727684pt;}
.ws85{word-spacing:18.828642pt;}
.ws10d{word-spacing:19.030558pt;}
.ws65{word-spacing:19.081037pt;}
.wsfa{word-spacing:19.131516pt;}
.wsd1{word-spacing:19.131718pt;}
.ws123{word-spacing:19.181995pt;}
.ws8e{word-spacing:19.221515pt;}
.ws12e{word-spacing:19.288000pt;}
.ws2e{word-spacing:19.333431pt;}
.ws0{word-spacing:19.378527pt;}
.ws98{word-spacing:19.434389pt;}
.wsda{word-spacing:19.535347pt;}
.ws94{word-spacing:19.636305pt;}
.ws12c{word-spacing:19.691832pt;}
.ws12d{word-spacing:19.737263pt;}
.ws114{word-spacing:19.787742pt;}
.ws101{word-spacing:19.838221pt;}
.ws5c{word-spacing:19.888700pt;}
.ws36{word-spacing:19.989658pt;}
.ws8d{word-spacing:20.090615pt;}
.wsa2{word-spacing:20.141094pt;}
.ws10{word-spacing:20.169914pt;}
.ws1f{word-spacing:20.242052pt;}
.wsc5{word-spacing:20.292746pt;}
.ws84{word-spacing:20.343010pt;}
.wsae{word-spacing:20.393705pt;}
.ws64{word-spacing:20.494447pt;}
.ws9{word-spacing:20.533335pt;}
.ws115{word-spacing:20.544926pt;}
.ws92{word-spacing:20.549974pt;}
.ws23{word-spacing:20.595405pt;}
.ws52{word-spacing:20.701411pt;}
.wsf1{word-spacing:20.797321pt;}
.ws11f{word-spacing:20.898278pt;}
.ws48{word-spacing:20.948757pt;}
.wsd5{word-spacing:21.049715pt;}
.wsb3{word-spacing:21.049938pt;}
.ws47{word-spacing:21.150673pt;}
.ws46{word-spacing:21.201152pt;}
.ws57{word-spacing:21.251631pt;}
.ws44{word-spacing:21.302110pt;}
.wsa4{word-spacing:21.453547pt;}
.wse{word-spacing:21.487318pt;}
.ws62{word-spacing:21.604983pt;}
.ws30{word-spacing:21.655462pt;}
.wsc2{word-spacing:21.706171pt;}
.ws70{word-spacing:21.756420pt;}
.ws5f{word-spacing:21.806899pt;}
.wsc7{word-spacing:21.807130pt;}
.ws117{word-spacing:21.857378pt;}
.wsc4{word-spacing:21.857609pt;}
.wsa3{word-spacing:22.109773pt;}
.ws9f{word-spacing:22.210731pt;}
.wsa0{word-spacing:22.261210pt;}
.ws91{word-spacing:22.362167pt;}
.ws116{word-spacing:22.412646pt;}
.wsd9{word-spacing:22.463125pt;}
.wsb6{word-spacing:22.513842pt;}
.ws99{word-spacing:22.518652pt;}
.ws6f{word-spacing:22.564083pt;}
.wsf5{word-spacing:22.614562pt;}
.wsbc{word-spacing:22.614801pt;}
.ws12{word-spacing:22.665041pt;}
.wsb9{word-spacing:22.665281pt;}
.ws31{word-spacing:22.816478pt;}
.ws1e{word-spacing:22.917436pt;}
.ws4a{word-spacing:23.018394pt;}
.ws61{word-spacing:23.220309pt;}
.ws72{word-spacing:23.270788pt;}
.wsf7{word-spacing:23.523183pt;}
.wsc{word-spacing:23.531566pt;}
.ws71{word-spacing:23.624141pt;}
.wse0{word-spacing:23.725099pt;}
.wsb{word-spacing:23.758705pt;}
.ws66{word-spacing:23.826057pt;}
.wsd{word-spacing:23.940415pt;}
.wsa7{word-spacing:23.977493pt;}
.ws5a{word-spacing:23.982541pt;}
.ws2c{word-spacing:24.027972pt;}
.wsdb{word-spacing:24.078451pt;}
.ws49{word-spacing:24.179409pt;}
.wse1{word-spacing:24.229888pt;}
.ws24{word-spacing:24.280367pt;}
.ws19{word-spacing:24.381325pt;}
.wsee{word-spacing:24.431804pt;}
.wsf3{word-spacing:24.532762pt;}
.ws42{word-spacing:24.633719pt;}
.ws7b{word-spacing:24.684198pt;}
.ws68{word-spacing:24.734677pt;}
.ws109{word-spacing:24.785156pt;}
.ws20{word-spacing:24.886114pt;}
.ws63{word-spacing:25.088030pt;}
.wsbf{word-spacing:25.138774pt;}
.ws10e{word-spacing:25.188988pt;}
.ws43{word-spacing:25.239467pt;}
.wsed{word-spacing:25.340425pt;}
.ws80{word-spacing:25.441382pt;}
.ws8c{word-spacing:25.491861pt;}
.ws7c{word-spacing:25.592819pt;}
.ws25{word-spacing:25.643298pt;}
.ws107{word-spacing:25.693777pt;}
.ws53{word-spacing:25.744256pt;}
.ws1d{word-spacing:25.794735pt;}
.wse6{word-spacing:25.845214pt;}
.wsfc{word-spacing:26.047130pt;}
.ws4e{word-spacing:26.097609pt;}
.ws2f{word-spacing:26.198566pt;}
.ws112{word-spacing:26.249045pt;}
.ws113{word-spacing:26.350003pt;}
.ws2b{word-spacing:26.501440pt;}
.wse9{word-spacing:26.602398pt;}
.wsb5{word-spacing:26.653158pt;}
.ws35{word-spacing:26.753835pt;}
.wse5{word-spacing:26.804314pt;}
.ws7f{word-spacing:26.854793pt;}
.ws17{word-spacing:26.955750pt;}
.ws58{word-spacing:27.056708pt;}
.wse4{word-spacing:27.107187pt;}
.wsd2{word-spacing:27.208433pt;}
.ws12a{word-spacing:27.213193pt;}
.ws22{word-spacing:27.410061pt;}
.ws26{word-spacing:27.460540pt;}
.ws37{word-spacing:27.561498pt;}
.wsfd{word-spacing:27.611977pt;}
.ws10f{word-spacing:27.662455pt;}
.wsc0{word-spacing:27.713227pt;}
.ws129{word-spacing:27.813892pt;}
.wsb7{word-spacing:27.814186pt;}
.ws59{word-spacing:27.864371pt;}
.ws11e{word-spacing:27.914850pt;}
.wsce{word-spacing:28.218022pt;}
.wscd{word-spacing:28.268501pt;}
.ws11c{word-spacing:28.419639pt;}
.ws18{word-spacing:28.470118pt;}
.ws73{word-spacing:28.722513pt;}
.wsd4{word-spacing:28.772992pt;}
.ws83{word-spacing:28.823471pt;}
.ws11b{word-spacing:28.924429pt;}
.ws2a{word-spacing:28.974908pt;}
.ws4b{word-spacing:29.126345pt;}
.ws106{word-spacing:29.176823pt;}
.ws9d{word-spacing:29.277781pt;}
.ws126{word-spacing:29.328260pt;}
.ws125{word-spacing:29.378739pt;}
.wsb4{word-spacing:29.379050pt;}
.wsb1{word-spacing:29.429529pt;}
.ws1c{word-spacing:29.479697pt;}
.ws6d{word-spacing:29.681613pt;}
.ws74{word-spacing:29.782571pt;}
.ws4f{word-spacing:29.984486pt;}
.wsa1{word-spacing:30.236881pt;}
.ws76{word-spacing:30.287360pt;}
.wsf6{word-spacing:30.337839pt;}
.wsdc{word-spacing:30.489276pt;}
.ws9a{word-spacing:30.539755pt;}
.wsdd{word-spacing:31.044544pt;}
.ws8b{word-spacing:31.145502pt;}
.wsc3{word-spacing:31.549667pt;}
.ws3a{word-spacing:31.650291pt;}
.ws11a{word-spacing:31.953165pt;}
.wscc{word-spacing:32.256379pt;}
.ws11d{word-spacing:32.306517pt;}
.ws118{word-spacing:34.325675pt;}
.ws105{word-spacing:35.688606pt;}
.ws124{word-spacing:35.991479pt;}
.wscb{word-spacing:36.143298pt;}
._5{margin-left:-6.511782pt;}
._6{margin-left:-5.603162pt;}
._14{margin-left:-4.543371pt;}
._3{margin-left:-3.533525pt;}
._a{margin-left:-2.584548pt;}
._0{margin-left:-1.554724pt;}
._d{width:0.929750pt;}
._9{width:2.019157pt;}
._2{width:3.053923pt;}
._1{width:4.189751pt;}
._11{width:6.513958pt;}
._4{width:12.174633pt;}
._7{width:15.446554pt;}
._e{width:19.434595pt;}
._12{width:20.393489pt;}
._10{width:21.361725pt;}
._f{width:25.239733pt;}
._8{width:28.266933pt;}
._c{width:33.193456pt;}
._13{width:36.041958pt;}
._b{width:38.564173pt;}
.fs5{font-size:35.334933pt;}
.fs4{font-size:40.381333pt;}
.fs3{font-size:45.427733pt;}
.fs2{font-size:50.478933pt;}
.fs6{font-size:50.479467pt;}
.fs1{font-size:55.525867pt;}
.fs0{font-size:121.141333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:97.406583pt;}
.y4e{bottom:97.419203pt;}
.y2e{bottom:112.550263pt;}
.y4d{bottom:112.562883pt;}
.y10c{bottom:114.634213pt;}
.y177{bottom:114.763627pt;}
.y191{bottom:115.027093pt;}
.yd7{bottom:115.190480pt;}
.yfb{bottom:115.191227pt;}
.yad{bottom:117.160053pt;}
.y142{bottom:117.173274pt;}
.yb5{bottom:118.133583pt;}
.y1b5{bottom:119.664613pt;}
.y163{bottom:122.194187pt;}
.y76{bottom:126.480497pt;}
.y2d{bottom:127.693943pt;}
.y4c{bottom:127.706563pt;}
.y10b{bottom:129.778053pt;}
.y176{bottom:129.907307pt;}
.y190{bottom:130.170773pt;}
.yd6{bottom:130.334160pt;}
.yfa{bottom:130.335067pt;}
.yac{bottom:132.303733pt;}
.y141{bottom:132.316954pt;}
.y1b4{bottom:134.808293pt;}
.yb4{bottom:135.940027pt;}
.y162{bottom:137.337867pt;}
.y75{bottom:141.624177pt;}
.y2c{bottom:142.837623pt;}
.y4b{bottom:142.850243pt;}
.y10a{bottom:144.921893pt;}
.y175{bottom:145.050987pt;}
.y18f{bottom:145.314453pt;}
.yf9{bottom:145.476880pt;}
.yd5{bottom:145.477840pt;}
.yab{bottom:147.447413pt;}
.y1b3{bottom:149.951973pt;}
.y140{bottom:151.069877pt;}
.yb3{bottom:151.083707pt;}
.y161{bottom:152.481387pt;}
.y74{bottom:156.767857pt;}
.y2b{bottom:157.981303pt;}
.y4a{bottom:157.993923pt;}
.y109{bottom:160.065733pt;}
.y174{bottom:160.194667pt;}
.y18e{bottom:160.458133pt;}
.yf8{bottom:160.620720pt;}
.yd4{bottom:160.621520pt;}
.yaa{bottom:162.591093pt;}
.y1b2{bottom:165.095653pt;}
.y13f{bottom:166.213557pt;}
.yb2{bottom:166.227387pt;}
.y160{bottom:167.625067pt;}
.y73{bottom:171.911537pt;}
.y2a{bottom:173.124983pt;}
.y49{bottom:173.137603pt;}
.y108{bottom:175.209573pt;}
.y173{bottom:175.338347pt;}
.y18d{bottom:175.601813pt;}
.yf7{bottom:175.764560pt;}
.yd3{bottom:175.765200pt;}
.ya9{bottom:177.734773pt;}
.y1b1{bottom:180.239333pt;}
.yb1{bottom:181.371067pt;}
.y15f{bottom:186.472959pt;}
.y72{bottom:187.055217pt;}
.y29{bottom:188.268663pt;}
.y48{bottom:188.281283pt;}
.y13e{bottom:189.433867pt;}
.y107{bottom:190.353413pt;}
.y172{bottom:190.482027pt;}
.y18c{bottom:190.745493pt;}
.yf6{bottom:190.908400pt;}
.ya8{bottom:192.878453pt;}
.yd2{bottom:194.286593pt;}
.y1b0{bottom:195.383013pt;}
.y15e{bottom:201.616639pt;}
.y71{bottom:202.060080pt;}
.y47{bottom:203.424963pt;}
.y28{bottom:203.576400pt;}
.y13d{bottom:204.577547pt;}
.y106{bottom:205.497253pt;}
.y171{bottom:205.625707pt;}
.y18b{bottom:205.889173pt;}
.yf5{bottom:206.049947pt;}
.ya7{bottom:208.022133pt;}
.yd1{bottom:209.430273pt;}
.y1af{bottom:210.526693pt;}
.y15d{bottom:216.760319pt;}
.y70{bottom:217.203760pt;}
.y46{bottom:218.568643pt;}
.y27{bottom:218.720080pt;}
.y13c{bottom:219.721227pt;}
.y105{bottom:220.641093pt;}
.y170{bottom:220.769387pt;}
.y18a{bottom:221.032853pt;}
.yf4{bottom:221.193787pt;}
.yd0{bottom:224.977785pt;}
.y1ae{bottom:225.670373pt;}
.ya6{bottom:228.000000pt;}
.yb0{bottom:229.255817pt;}
.y15c{bottom:231.903999pt;}
.y6f{bottom:232.347440pt;}
.y45{bottom:233.712323pt;}
.y26{bottom:233.863760pt;}
.y13b{bottom:234.864907pt;}
.y104{bottom:235.784933pt;}
.y16f{bottom:235.913067pt;}
.y189{bottom:236.176533pt;}
.yf3{bottom:236.337627pt;}
.ycf{bottom:240.121465pt;}
.yaf{bottom:240.613067pt;}
.y1ad{bottom:240.814053pt;}
.ya5{bottom:243.137312pt;}
.y15b{bottom:247.047679pt;}
.y6e{bottom:247.491120pt;}
.y44{bottom:248.856003pt;}
.y25{bottom:249.007440pt;}
.y13a{bottom:250.008587pt;}
.y188{bottom:251.320213pt;}
.yf2{bottom:251.481467pt;}
.y1cf{bottom:254.153111pt;}
.yce{bottom:255.265145pt;}
.y103{bottom:255.701197pt;}
.y1ac{bottom:255.957733pt;}
.y16e{bottom:260.138119pt;}
.y6d{bottom:262.634800pt;}
.y43{bottom:263.999683pt;}
.y24{bottom:264.151120pt;}
.y139{bottom:265.152267pt;}
.y187{bottom:266.463893pt;}
.yf1{bottom:266.623760pt;}
.ya4{bottom:268.010806pt;}
.y15a{bottom:268.122634pt;}
.y1ce{bottom:269.296791pt;}
.ycd{bottom:270.408825pt;}
.y102{bottom:270.845037pt;}
.y1ab{bottom:271.101413pt;}
.y6c{bottom:277.778480pt;}
.y42{bottom:279.143363pt;}
.y23{bottom:279.294800pt;}
.y138{bottom:280.295947pt;}
.y186{bottom:281.607573pt;}
.yf0{bottom:281.767600pt;}
.ya3{bottom:283.154486pt;}
.y1cd{bottom:284.440471pt;}
.ycc{bottom:285.552505pt;}
.y1aa{bottom:286.245093pt;}
.y16d{bottom:291.031227pt;}
.y6b{bottom:292.922160pt;}
.y41{bottom:294.287043pt;}
.y22{bottom:294.438480pt;}
.y137{bottom:295.439627pt;}
.y101{bottom:296.450747pt;}
.y159{bottom:296.529653pt;}
.y185{bottom:296.751253pt;}
.ya2{bottom:298.298166pt;}
.y1cc{bottom:299.584151pt;}
.yef{bottom:300.111120pt;}
.ycb{bottom:300.696185pt;}
.y1a9{bottom:301.388773pt;}
.y16c{bottom:306.174907pt;}
.y6a{bottom:308.065840pt;}
.y40{bottom:309.430723pt;}
.y21{bottom:309.582160pt;}
.y136{bottom:310.583307pt;}
.y100{bottom:311.594587pt;}
.y158{bottom:311.673333pt;}
.y184{bottom:311.894933pt;}
.ya1{bottom:313.441846pt;}
.y1cb{bottom:314.727831pt;}
.yee{bottom:315.254960pt;}
.yca{bottom:315.839865pt;}
.y1a8{bottom:316.532453pt;}
.y16b{bottom:321.318587pt;}
.y69{bottom:323.209520pt;}
.y3f{bottom:324.574403pt;}
.y20{bottom:324.725840pt;}
.y135{bottom:325.726987pt;}
.yff{bottom:326.738427pt;}
.y157{bottom:326.817013pt;}
.ya0{bottom:328.585526pt;}
.y1ca{bottom:329.871511pt;}
.yed{bottom:330.398800pt;}
.yc9{bottom:330.983545pt;}
.y183{bottom:331.014551pt;}
.y1a7{bottom:331.676133pt;}
.y16a{bottom:336.462267pt;}
.y68{bottom:338.353200pt;}
.y3e{bottom:339.718083pt;}
.y1f{bottom:339.869520pt;}
.y134{bottom:340.870667pt;}
.yfe{bottom:341.882267pt;}
.y156{bottom:341.960693pt;}
.y9f{bottom:343.729206pt;}
.y1c9{bottom:345.015191pt;}
.yc8{bottom:346.127225pt;}
.y1a6{bottom:346.819813pt;}
.yec{bottom:351.444467pt;}
.y169{bottom:351.604560pt;}
.y182{bottom:353.326240pt;}
.y3d{bottom:354.861763pt;}
.y1e{bottom:355.013200pt;}
.y155{bottom:357.104373pt;}
.y67{bottom:357.336733pt;}
.y133{bottom:357.729050pt;}
.y9e{bottom:358.872886pt;}
.y1c8{bottom:360.158871pt;}
.yc7{bottom:361.270905pt;}
.y1a5{bottom:361.963493pt;}
.yeb{bottom:366.588099pt;}
.y168{bottom:366.748240pt;}
.y181{bottom:368.469920pt;}
.y3c{bottom:370.005443pt;}
.y154{bottom:372.248053pt;}
.y66{bottom:372.486271pt;}
.y132{bottom:372.872730pt;}
.y9d{bottom:374.016566pt;}
.y1d{bottom:375.157067pt;}
.y1c7{bottom:375.302551pt;}
.y1a4{bottom:377.107173pt;}
.yc6{bottom:379.784053pt;}
.y167{bottom:381.891920pt;}
.yfd{bottom:383.293333pt;}
.y180{bottom:383.613600pt;}
.y3b{bottom:385.149123pt;}
.y153{bottom:387.391733pt;}
.y131{bottom:388.016410pt;}
.y9c{bottom:389.160246pt;}
.y1c6{bottom:390.446231pt;}
.y1a3{bottom:392.250853pt;}
.yea{bottom:392.976240pt;}
.yc5{bottom:394.927733pt;}
.y65{bottom:395.327988pt;}
.y166{bottom:397.035600pt;}
.y3a{bottom:400.292803pt;}
.y1c{bottom:400.293098pt;}
.y17f{bottom:402.507591pt;}
.y152{bottom:402.531307pt;}
.y130{bottom:403.160090pt;}
.y9b{bottom:404.303926pt;}
.y1c5{bottom:405.589911pt;}
.y1a2{bottom:407.394533pt;}
.ye9{bottom:408.120080pt;}
.yc4{bottom:410.070053pt;}
.y64{bottom:410.471668pt;}
.y1b{bottom:412.910651pt;}
.y39{bottom:415.436483pt;}
.y151{bottom:417.674987pt;}
.y12f{bottom:418.303770pt;}
.y9a{bottom:419.447606pt;}
.y1c4{bottom:420.733591pt;}
.y1a1{bottom:422.538213pt;}
.ye8{bottom:423.263920pt;}
.y17e{bottom:424.819280pt;}
.yc3{bottom:425.213733pt;}
.y1a{bottom:425.528204pt;}
.y63{bottom:425.615348pt;}
.y38{bottom:430.580163pt;}
.y150{bottom:432.818667pt;}
.y12e{bottom:433.447450pt;}
.y99{bottom:434.591286pt;}
.y1c3{bottom:435.877271pt;}
.y1a0{bottom:437.681893pt;}
.y19{bottom:438.145757pt;}
.ye7{bottom:438.407760pt;}
.y17d{bottom:439.962960pt;}
.y165{bottom:440.105683pt;}
.yc2{bottom:440.357387pt;}
.y62{bottom:440.759028pt;}
.y37{bottom:445.723843pt;}
.y14f{bottom:447.962347pt;}
.y12d{bottom:448.591130pt;}
.y98{bottom:449.734966pt;}
.y18{bottom:450.763310pt;}
.y1c2{bottom:451.020951pt;}
.y164{bottom:451.462933pt;}
.y19f{bottom:452.825573pt;}
.ye6{bottom:453.551600pt;}
.y17c{bottom:455.106640pt;}
.yc1{bottom:455.501067pt;}
.y61{bottom:455.763891pt;}
.y36{bottom:460.867523pt;}
.y14e{bottom:463.106027pt;}
.y17{bottom:463.380863pt;}
.y97{bottom:465.017463pt;}
.y1c1{bottom:466.164631pt;}
.y19e{bottom:467.969253pt;}
.ye5{bottom:468.692640pt;}
.y17b{bottom:470.250320pt;}
.y60{bottom:470.907571pt;}
.yc0{bottom:473.997443pt;}
.y16{bottom:475.998416pt;}
.y35{bottom:476.011203pt;}
.y14d{bottom:478.249707pt;}
.y12c{bottom:478.878490pt;}
.y96{bottom:480.161143pt;}
.y1c0{bottom:481.308311pt;}
.y19d{bottom:483.112933pt;}
.ye4{bottom:483.836480pt;}
.y17a{bottom:485.394000pt;}
.y5f{bottom:486.051251pt;}
.y15{bottom:488.615969pt;}
.ybf{bottom:489.141123pt;}
.y34{bottom:491.154883pt;}
.y14c{bottom:493.393387pt;}
.y12b{bottom:494.022170pt;}
.y95{bottom:495.304823pt;}
.y1bf{bottom:496.451991pt;}
.y19c{bottom:498.256613pt;}
.ye3{bottom:498.980320pt;}
.y5e{bottom:501.194931pt;}
.y14{bottom:501.233522pt;}
.ybe{bottom:504.688635pt;}
.y33{bottom:506.298563pt;}
.y14b{bottom:508.537067pt;}
.y12a{bottom:509.165850pt;}
.y94{bottom:510.448503pt;}
.y1be{bottom:511.595671pt;}
.y19b{bottom:513.400293pt;}
.y13{bottom:513.851075pt;}
.ye2{bottom:514.124160pt;}
.y5d{bottom:516.199794pt;}
.ybd{bottom:519.832315pt;}
.y32{bottom:521.442243pt;}
.y14a{bottom:523.678613pt;}
.y179{bottom:523.799333pt;}
.y129{bottom:524.309530pt;}
.y93{bottom:525.592183pt;}
.y12{bottom:526.468627pt;}
.y1bd{bottom:526.739351pt;}
.y19a{bottom:528.543973pt;}
.ye1{bottom:529.268000pt;}
.y5c{bottom:531.343474pt;}
.ybc{bottom:534.975995pt;}
.y31{bottom:536.585923pt;}
.y149{bottom:538.822293pt;}
.y11{bottom:539.086180pt;}
.y128{bottom:539.453210pt;}
.y92{bottom:540.735863pt;}
.y1bc{bottom:541.883031pt;}
.y199{bottom:543.687653pt;}
.ye0{bottom:544.407227pt;}
.y5b{bottom:546.487154pt;}
.ybb{bottom:550.119675pt;}
.y10{bottom:551.703733pt;}
.y30{bottom:551.729603pt;}
.y148{bottom:553.965973pt;}
.y91{bottom:555.879543pt;}
.y127{bottom:556.313173pt;}
.y1bb{bottom:557.026711pt;}
.y198{bottom:558.831333pt;}
.ydf{bottom:559.551067pt;}
.y5a{bottom:561.630834pt;}
.yba{bottom:565.263355pt;}
.y147{bottom:569.109653pt;}
.y90{bottom:571.023223pt;}
.y126{bottom:571.456853pt;}
.y1ba{bottom:572.170391pt;}
.y197{bottom:573.975013pt;}
.yde{bottom:574.694907pt;}
.y59{bottom:576.774514pt;}
.yb9{bottom:580.407035pt;}
.y146{bottom:584.253333pt;}
.y8f{bottom:586.166903pt;}
.y125{bottom:586.600533pt;}
.y1b9{bottom:587.314071pt;}
.y196{bottom:589.118693pt;}
.ydd{bottom:589.838747pt;}
.y58{bottom:591.779377pt;}
.yb8{bottom:595.550715pt;}
.y8e{bottom:601.310583pt;}
.y124{bottom:601.744213pt;}
.y1b8{bottom:602.457751pt;}
.y145{bottom:603.100587pt;}
.y195{bottom:604.262373pt;}
.ydc{bottom:604.982587pt;}
.y57{bottom:606.923057pt;}
.yb7{bottom:610.694395pt;}
.yf{bottom:616.091503pt;}
.y8d{bottom:616.454263pt;}
.y123{bottom:616.887893pt;}
.y1b7{bottom:617.601431pt;}
.y144{bottom:618.244267pt;}
.y194{bottom:619.406053pt;}
.ydb{bottom:620.126427pt;}
.y56{bottom:622.066737pt;}
.yb6{bottom:625.838075pt;}
.ye{bottom:631.702113pt;}
.y8c{bottom:631.736761pt;}
.y122{bottom:632.031573pt;}
.y1b6{bottom:632.745111pt;}
.y193{bottom:634.549733pt;}
.yda{bottom:635.270267pt;}
.y55{bottom:637.210417pt;}
.y8b{bottom:646.880441pt;}
.y121{bottom:647.175253pt;}
.yd{bottom:647.312723pt;}
.y54{bottom:652.354097pt;}
.y143{bottom:660.535733pt;}
.y8a{bottom:662.024121pt;}
.y120{bottom:662.318933pt;}
.yc{bottom:662.923333pt;}
.yae{bottom:666.658133pt;}
.y53{bottom:667.497777pt;}
.yfc{bottom:671.032000pt;}
.yd9{bottom:674.882350pt;}
.y192{bottom:675.350267pt;}
.y89{bottom:677.167801pt;}
.y11f{bottom:677.462613pt;}
.yb{bottom:678.727600pt;}
.y52{bottom:682.502640pt;}
.yd8{bottom:686.239600pt;}
.y88{bottom:692.311481pt;}
.y11e{bottom:692.606293pt;}
.y51{bottom:697.646320pt;}
.y87{bottom:707.455161pt;}
.y11d{bottom:707.749973pt;}
.ya{bottom:710.426149pt;}
.y50{bottom:712.790000pt;}
.y86{bottom:722.598841pt;}
.y11c{bottom:722.893653pt;}
.y9{bottom:726.036759pt;}
.y85{bottom:737.742521pt;}
.y11b{bottom:738.037333pt;}
.y8{bottom:741.647370pt;}
.y178{bottom:749.671333pt;}
.y4f{bottom:750.359733pt;}
.y84{bottom:752.886201pt;}
.y11a{bottom:753.181013pt;}
.y7{bottom:757.257980pt;}
.y83{bottom:768.029881pt;}
.y119{bottom:768.324693pt;}
.y6{bottom:772.868590pt;}
.y82{bottom:783.173561pt;}
.y118{bottom:783.468373pt;}
.y5{bottom:788.479200pt;}
.y81{bottom:798.317241pt;}
.y117{bottom:798.612053pt;}
.y4{bottom:804.283333pt;}
.y80{bottom:813.599738pt;}
.y116{bottom:813.755733pt;}
.y7f{bottom:828.743418pt;}
.y115{bottom:828.899413pt;}
.y7e{bottom:843.887098pt;}
.y114{bottom:844.043093pt;}
.y7d{bottom:859.030778pt;}
.y113{bottom:859.186773pt;}
.y7c{bottom:874.174458pt;}
.y112{bottom:874.330453pt;}
.y7b{bottom:889.318138pt;}
.y111{bottom:889.474133pt;}
.y3{bottom:891.202667pt;}
.y7a{bottom:904.600635pt;}
.y110{bottom:904.616293pt;}
.y79{bottom:919.744315pt;}
.y10f{bottom:919.759973pt;}
.y2{bottom:926.546667pt;}
.y78{bottom:934.887995pt;}
.y10e{bottom:934.903653pt;}
.y77{bottom:950.031675pt;}
.y10d{bottom:950.047333pt;}
.y1{bottom:961.890667pt;}
.h8{height:27.782357pt;}
.h7{height:31.526847pt;}
.h6{height:31.753986pt;}
.hc{height:34.477111pt;}
.ha{height:34.477476pt;}
.h5{height:34.729506pt;}
.h9{height:34.729873pt;}
.h4{height:34.981901pt;}
.hb{height:35.032380pt;}
.h3{height:38.201796pt;}
.h2{height:38.479426pt;}
.h1{height:84.798933pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:75.871067pt;}
.x22{left:77.344047pt;}
.x41{left:83.688400pt;}
.x2d{left:88.490800pt;}
.x21{left:89.961600pt;}
.x27{left:90.998332pt;}
.x2f{left:100.170995pt;}
.x6{left:102.909333pt;}
.x44{left:104.712876pt;}
.x1{left:108.858667pt;}
.x32{left:111.743333pt;}
.x2{left:123.637333pt;}
.x33{left:125.625040pt;}
.x4e{left:137.019393pt;}
.x51{left:140.022890pt;}
.x26{left:146.172000pt;}
.x15{left:153.698800pt;}
.x4f{left:161.943366pt;}
.xa{left:164.026702pt;}
.x52{left:167.962979pt;}
.x48{left:172.392506pt;}
.x4{left:178.103733pt;}
.x19{left:181.487453pt;}
.x23{left:187.104800pt;}
.x18{left:194.813891pt;}
.x1a{left:196.605893pt;}
.x8{left:198.642630pt;}
.x28{left:205.553795pt;}
.x9{left:221.446489pt;}
.x49{left:226.834035pt;}
.x16{left:238.894620pt;}
.x4b{left:241.952476pt;}
.x4a{left:249.953387pt;}
.x53{left:268.491775pt;}
.x7{left:274.436749pt;}
.x45{left:278.524463pt;}
.x2b{left:284.699333pt;}
.x42{left:289.087180pt;}
.x4c{left:296.419245pt;}
.x40{left:303.320800pt;}
.x5{left:305.799345pt;}
.x46{left:335.754954pt;}
.x17{left:336.937328pt;}
.x43{left:342.115299pt;}
.x3{left:349.714667pt;}
.x47{left:358.886925pt;}
.x50{left:377.538891pt;}
.x4d{left:381.375290pt;}
.x55{left:417.556065pt;}
.x24{left:418.629935pt;}
.x1e{left:425.344400pt;}
.xe{left:428.488267pt;}
.x25{left:431.249668pt;}
.x29{left:433.472655pt;}
.x34{left:436.720000pt;}
.x2e{left:444.062400pt;}
.x35{left:445.571867pt;}
.x3a{left:455.467610pt;}
.x54{left:470.129874pt;}
.x30{left:487.425333pt;}
.x2a{left:497.016533pt;}
.x39{left:502.690652pt;}
.x37{left:504.128768pt;}
.x36{left:506.370533pt;}
.x3b{left:515.247286pt;}
.x1b{left:517.341067pt;}
.x14{left:520.763757pt;}
.x12{left:521.710237pt;}
.x10{left:524.221564pt;}
.xb{left:535.422800pt;}
.x31{left:540.640267pt;}
.x38{left:542.682053pt;}
.x20{left:543.881555pt;}
.x13{left:547.025422pt;}
.x1c{left:549.740410pt;}
.x11{left:571.230070pt;}
.xc{left:585.756998pt;}
.x1f{left:596.871815pt;}
.xf{left:600.015682pt;}
.xd{left:611.201727pt;}
.x1d{left:625.338877pt;}
.x3c{left:633.935878pt;}
.x3f{left:636.560783pt;}
.x3d{left:693.930091pt;}
.x56{left:701.701981pt;}
.x3e{left:717.049442pt;}
}




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