
    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_1e6a8c1599cbf3ef89230a86.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_995aafef7d31d58119c85251.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_73d8386f186c6ffdcf0d2c06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_d3c3bb090dd8979d75e54b75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910000;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_a83d51e78895088a21c8e5ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_067c41ec0fc537a5e4a94a71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939000;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_28cbbdc71eec0cd9615dd0b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_73d8386f186c6ffdcf0d2c06.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,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);}
.v8{vertical-align:-46.797000px;}
.v7{vertical-align:-28.198200px;}
.v2{vertical-align:-24.497400px;}
.v6{vertical-align:-18.598800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.465000px;}
.v1{vertical-align:29.899800px;}
.v3{vertical-align:41.535000px;}
.v5{vertical-align:44.412600px;}
.ls1e{letter-spacing:-1.199988px;}
.ls26{letter-spacing:-1.074582px;}
.lsc{letter-spacing:-0.624188px;}
.ls5{letter-spacing:-0.599994px;}
.ls18{letter-spacing:-0.593994px;}
.ls27{letter-spacing:-0.539991px;}
.lsf{letter-spacing:-0.221815px;}
.ls8{letter-spacing:-0.208063px;}
.ls9{letter-spacing:-0.204347px;}
.ls11{letter-spacing:-0.166361px;}
.lsa{letter-spacing:-0.070593px;}
.ls10{letter-spacing:-0.055454px;}
.ls6{letter-spacing:-0.033439px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000225px;}
.ls16{letter-spacing:0.000450px;}
.ls20{letter-spacing:0.000570px;}
.ls0{letter-spacing:0.000630px;}
.ls1{letter-spacing:0.001230px;}
.ls22{letter-spacing:0.001393px;}
.ls17{letter-spacing:0.002267px;}
.ls7{letter-spacing:0.104031px;}
.lsb{letter-spacing:0.107747px;}
.lsd{letter-spacing:0.110907px;}
.lse{letter-spacing:0.166361px;}
.ls13{letter-spacing:1.799982px;}
.ls1b{letter-spacing:8.771850px;}
.ls15{letter-spacing:8.777850px;}
.ls1f{letter-spacing:9.545370px;}
.ls25{letter-spacing:9.860236px;}
.ls1c{letter-spacing:13.499850px;}
.ls1a{letter-spacing:13.505850px;}
.ls1d{letter-spacing:14.123850px;}
.ls21{letter-spacing:14.716843px;}
.ls2{letter-spacing:16.501950px;}
.ls14{letter-spacing:18.914306px;}
.ls12{letter-spacing:20.999340px;}
.ls23{letter-spacing:23.259030px;}
.ls3{letter-spacing:27.002256px;}
.ls19{letter-spacing:153.582450px;}
.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;}
}
.ws58{word-spacing:-0.221815px;}
.ws57{word-spacing:-0.166361px;}
.ws54{word-spacing:-0.144901px;}
.ws50{word-spacing:-0.141185px;}
.ws23{word-spacing:-0.059999px;}
.ws56{word-spacing:-0.055454px;}
.ws93{word-spacing:-0.053999px;}
.wsea{word-spacing:-0.047999px;}
.ws45{word-spacing:-0.042900px;}
.ws5c{word-spacing:-0.040132px;}
.ws4e{word-spacing:-0.037154px;}
.ws47{word-spacing:-0.035100px;}
.ws4f{word-spacing:-0.003715px;}
.ws5a{word-spacing:0.000000px;}
.ws53{word-spacing:0.033439px;}
.ws5b{word-spacing:0.110907px;}
.ws59{word-spacing:0.166361px;}
.ws52{word-spacing:0.167193px;}
.ws51{word-spacing:0.170909px;}
.ws35{word-spacing:0.539995px;}
.ws55{word-spacing:0.587034px;}
.ws10e{word-spacing:7.505875px;}
.ws119{word-spacing:7.662472px;}
.ws102{word-spacing:8.332061px;}
.ws103{word-spacing:8.337461px;}
.ws106{word-spacing:8.359061px;}
.wse{word-spacing:8.549915px;}
.ws12b{word-spacing:8.585857px;}
.ws36{word-spacing:8.597914px;}
.wsc1{word-spacing:8.731400px;}
.ws24{word-spacing:8.939911px;}
.wsab{word-spacing:9.047910px;}
.ws7{word-spacing:9.098848px;}
.ws10c{word-spacing:9.120448px;}
.wsf3{word-spacing:9.191908px;}
.wsa3{word-spacing:9.209908px;}
.ws12{word-spacing:9.245908px;}
.ws77{word-spacing:9.311907px;}
.ws5{word-spacing:9.347244px;}
.wsdf{word-spacing:9.401906px;}
.ws33{word-spacing:9.443906px;}
.wse5{word-spacing:9.479905px;}
.wse4{word-spacing:9.483567px;}
.wse7{word-spacing:9.485905px;}
.ws7f{word-spacing:9.515905px;}
.wsb0{word-spacing:9.539905px;}
.ws8b{word-spacing:9.551904px;}
.wse1{word-spacing:9.557904px;}
.ws67{word-spacing:9.659903px;}
.ws63{word-spacing:9.743903px;}
.ws129{word-spacing:9.746838px;}
.ws34{word-spacing:9.779902px;}
.wsfd{word-spacing:9.806237px;}
.ws118{word-spacing:9.817036px;}
.ws101{word-spacing:9.854836px;}
.ws1{word-spacing:9.892635px;}
.ws71{word-spacing:9.953900px;}
.wsa0{word-spacing:10.079899px;}
.wscb{word-spacing:10.114031px;}
.wsca{word-spacing:10.119431px;}
.ws12d{word-spacing:10.124831px;}
.wsa2{word-spacing:10.139899px;}
.ws123{word-spacing:10.157231px;}
.ws8{word-spacing:10.178830px;}
.ws11c{word-spacing:10.200430px;}
.wscc{word-spacing:10.205830px;}
.wsd8{word-spacing:10.283897px;}
.ws6{word-spacing:10.308428px;}
.ws11{word-spacing:10.439896px;}
.ws6e{word-spacing:10.445896px;}
.ws121{word-spacing:10.551424px;}
.ws1d{word-spacing:10.559894px;}
.ws62{word-spacing:10.589894px;}
.ws39{word-spacing:10.601894px;}
.ws3c{word-spacing:10.679893px;}
.ws18{word-spacing:10.781892px;}
.ws66{word-spacing:10.889891px;}
.ws115{word-spacing:11.058427px;}
.ws117{word-spacing:11.059016px;}
.ws116{word-spacing:11.060026px;}
.ws80{word-spacing:11.075889px;}
.ws86{word-spacing:11.081889px;}
.ws4d{word-spacing:11.204301px;}
.ws9f{word-spacing:11.213888px;}
.ws12c{word-spacing:11.231813px;}
.ws74{word-spacing:11.237888px;}
.wsd5{word-spacing:11.309887px;}
.wsfe{word-spacing:11.356011px;}
.wsd3{word-spacing:11.459885px;}
.ws109{word-spacing:11.577407px;}
.wsf{word-spacing:11.633884px;}
.ws0{word-spacing:11.680005px;}
.ws20{word-spacing:11.777882px;}
.wsa8{word-spacing:11.795882px;}
.ws12a{word-spacing:11.863602px;}
.ws6d{word-spacing:11.891881px;}
.ws17{word-spacing:11.939881px;}
.ws6a{word-spacing:12.173878px;}
.ws120{word-spacing:12.182197px;}
.ws21{word-spacing:12.359876px;}
.ws87{word-spacing:12.365876px;}
.ws64{word-spacing:12.455875px;}
.ws22{word-spacing:12.551874px;}
.wse0{word-spacing:12.761872px;}
.wsd0{word-spacing:12.821872px;}
.ws72{word-spacing:12.845872px;}
.ws10f{word-spacing:12.986626px;}
.ws110{word-spacing:12.986784px;}
.ws6c{word-spacing:13.049870px;}
.wsd6{word-spacing:13.073869px;}
.wsc8{word-spacing:13.078582px;}
.ws10{word-spacing:13.091869px;}
.ws11d{word-spacing:13.343178px;}
.ws98{word-spacing:13.440463px;}
.ws96{word-spacing:13.442299px;}
.ws94{word-spacing:13.442499px;}
.ws97{word-spacing:13.442549px;}
.ws99{word-spacing:13.442674px;}
.wsc5{word-spacing:13.442765px;}
.wsc2{word-spacing:13.442839px;}
.wsc3{word-spacing:13.443588px;}
.ws95{word-spacing:13.443714px;}
.wsc6{word-spacing:13.444152px;}
.ws111{word-spacing:13.444326px;}
.ws11e{word-spacing:13.445126px;}
.ws128{word-spacing:13.445326px;}
.ws91{word-spacing:13.445449px;}
.ws4c{word-spacing:13.445451px;}
.wsbb{word-spacing:13.445500px;}
.wsd{word-spacing:13.445501px;}
.ws4a{word-spacing:13.445551px;}
.ws105{word-spacing:13.445576px;}
.wsb6{word-spacing:13.445600px;}
.wsbf{word-spacing:13.445650px;}
.ws4b{word-spacing:13.445651px;}
.ws48{word-spacing:13.445700px;}
.ws49{word-spacing:13.445726px;}
.wsb{word-spacing:13.445741px;}
.wscf{word-spacing:13.445751px;}
.ws8f{word-spacing:13.445760px;}
.ws9b{word-spacing:13.445761px;}
.wsb3{word-spacing:13.445776px;}
.ws9a{word-spacing:13.445781px;}
.ws9c{word-spacing:13.445801px;}
.ws8d{word-spacing:13.445826px;}
.wsba{word-spacing:13.445851px;}
.wsbe{word-spacing:13.445900px;}
.wsbc{word-spacing:13.445950px;}
.wsb1{word-spacing:13.445951px;}
.ws92{word-spacing:13.445975px;}
.ws11b{word-spacing:13.446026px;}
.ws8e{word-spacing:13.446051px;}
.ws90{word-spacing:13.446101px;}
.ws9e{word-spacing:13.446151px;}
.wsc4{word-spacing:13.447415px;}
.wsc0{word-spacing:13.451176px;}
.ws10b{word-spacing:13.453924px;}
.wsc{word-spacing:13.472775px;}
.ws5f{word-spacing:13.553864px;}
.ws2f{word-spacing:13.655863px;}
.wsd7{word-spacing:13.667863px;}
.ws5e{word-spacing:13.673863px;}
.wsdc{word-spacing:13.781862px;}
.ws107{word-spacing:13.899368px;}
.ws108{word-spacing:13.904768px;}
.ws1a{word-spacing:13.925861px;}
.ws61{word-spacing:13.961860px;}
.ws3{word-spacing:13.991167px;}
.ws11f{word-spacing:14.055966px;}
.wscd{word-spacing:14.066766px;}
.wsce{word-spacing:14.072165px;}
.wsc7{word-spacing:14.153164px;}
.ws16{word-spacing:14.183858px;}
.ws104{word-spacing:14.331361px;}
.ws1b{word-spacing:14.411856px;}
.wse9{word-spacing:14.657853px;}
.ws89{word-spacing:14.753852px;}
.wsd1{word-spacing:14.765852px;}
.ws3e{word-spacing:14.939200px;}
.ws81{word-spacing:14.939401px;}
.ws5d{word-spacing:14.939534px;}
.wsf7{word-spacing:14.939541px;}
.ws3f{word-spacing:14.939551px;}
.ws15{word-spacing:14.939600px;}
.wsfc{word-spacing:14.939668px;}
.ws32{word-spacing:14.939701px;}
.ws31{word-spacing:14.939834px;}
.wsf4{word-spacing:14.939840px;}
.ws2b{word-spacing:14.939851px;}
.wsf9{word-spacing:14.939867px;}
.wsf1{word-spacing:14.939967px;}
.wsda{word-spacing:14.940100px;}
.ws78{word-spacing:14.944200px;}
.ws65{word-spacing:14.957850px;}
.ws1e{word-spacing:14.975850px;}
.ws9d{word-spacing:15.162947px;}
.wsf5{word-spacing:15.173848px;}
.wsc9{word-spacing:15.389743px;}
.ws6f{word-spacing:15.395846px;}
.ws83{word-spacing:15.455845px;}
.ws6b{word-spacing:15.539845px;}
.wsd2{word-spacing:15.905841px;}
.wse2{word-spacing:15.923841px;}
.ws30{word-spacing:15.935841px;}
.ws28{word-spacing:15.989840px;}
.ws2d{word-spacing:16.049840px;}
.wse6{word-spacing:16.163838px;}
.wsaf{word-spacing:16.271837px;}
.ws122{word-spacing:16.313128px;}
.wsed{word-spacing:16.367836px;}
.ws42{word-spacing:16.433450px;}
.ws44{word-spacing:16.433551px;}
.ws43{word-spacing:16.433851px;}
.ws46{word-spacing:16.434050px;}
.ws13{word-spacing:16.463835px;}
.ws60{word-spacing:16.481835px;}
.ws3d{word-spacing:16.613834px;}
.ws27{word-spacing:16.625834px;}
.ws7b{word-spacing:16.631834px;}
.ws11a{word-spacing:16.766721px;}
.ws84{word-spacing:16.817832px;}
.ws124{word-spacing:16.858519px;}
.wsf6{word-spacing:16.931831px;}
.wsdd{word-spacing:16.979830px;}
.ws10d{word-spacing:17.009717px;}
.ws100{word-spacing:17.123115px;}
.ws2c{word-spacing:17.189828px;}
.wsee{word-spacing:17.237828px;}
.ws76{word-spacing:17.249828px;}
.wsa{word-spacing:17.339111px;}
.ws7d{word-spacing:17.357826px;}
.wseb{word-spacing:17.525825px;}
.wsfa{word-spacing:17.543825px;}
.ws68{word-spacing:17.639824px;}
.wsad{word-spacing:17.675823px;}
.ws1f{word-spacing:17.747823px;}
.ws114{word-spacing:17.819703px;}
.ws113{word-spacing:17.821426px;}
.ws112{word-spacing:17.824426px;}
.ws14{word-spacing:17.963820px;}
.ws38{word-spacing:18.077819px;}
.wsa4{word-spacing:18.125819px;}
.wsff{word-spacing:18.143698px;}
.ws25{word-spacing:18.251817px;}
.ws73{word-spacing:18.269817px;}
.ws29{word-spacing:18.299817px;}
.ws1c{word-spacing:18.485815px;}
.wsd9{word-spacing:18.515815px;}
.ws4{word-spacing:18.780887px;}
.wsac{word-spacing:18.965810px;}
.wsde{word-spacing:19.127809px;}
.ws79{word-spacing:19.163808px;}
.ws2{word-spacing:19.180480px;}
.ws41{word-spacing:19.421536px;}
.ws40{word-spacing:19.421869px;}
.wsae{word-spacing:19.493805px;}
.ws2e{word-spacing:19.649803px;}
.wsa6{word-spacing:19.751802px;}
.wsd4{word-spacing:19.955800px;}
.ws126{word-spacing:20.595257px;}
.wsf0{word-spacing:20.681793px;}
.wsfb{word-spacing:20.693793px;}
.ws3a{word-spacing:20.951790px;}
.ws75{word-spacing:21.113789px;}
.ws85{word-spacing:21.221788px;}
.ws70{word-spacing:21.641784px;}
.ws9{word-spacing:21.977634px;}
.ws7c{word-spacing:22.007780px;}
.ws37{word-spacing:22.367776px;}
.ws127{word-spacing:22.377227px;}
.wsec{word-spacing:22.391776px;}
.ws19{word-spacing:22.673773px;}
.wsef{word-spacing:23.195768px;}
.wsf2{word-spacing:23.219768px;}
.wsf8{word-spacing:23.705763px;}
.wsa1{word-spacing:23.717763px;}
.ws125{word-spacing:23.819003px;}
.ws69{word-spacing:24.179758px;}
.wsa7{word-spacing:25.355746px;}
.wse8{word-spacing:25.679743px;}
.wsa5{word-spacing:25.703743px;}
.ws7a{word-spacing:25.829742px;}
.ws10a{word-spacing:25.908768px;}
.ws82{word-spacing:26.297737px;}
.ws12e{word-spacing:26.599957px;}
.wse3{word-spacing:26.633734px;}
.ws7e{word-spacing:26.843732px;}
.ws8a{word-spacing:27.197728px;}
.ws26{word-spacing:27.743723px;}
.ws88{word-spacing:29.345707px;}
.wsaa{word-spacing:29.393706px;}
.wsa9{word-spacing:29.394750px;}
.ws2a{word-spacing:29.939701px;}
.ws8c{word-spacing:32.189678px;}
.wsdb{word-spacing:36.281637px;}
.ws3b{word-spacing:37.331627px;}
.wsbd{word-spacing:121.357577px;}
.wsb9{word-spacing:134.857352px;}
.wsb7{word-spacing:175.356677px;}
.wsb4{word-spacing:188.856452px;}
.wsb8{word-spacing:202.356227px;}
.wsb5{word-spacing:215.856002px;}
.wsb2{word-spacing:283.354877px;}
._b{margin-left:-43.143010px;}
._c{margin-left:-37.100833px;}
._d{margin-left:-36.088877px;}
._e{margin-left:-33.931212px;}
._5{margin-left:-30.916149px;}
._8{margin-left:-29.827850px;}
._7{margin-left:-28.081176px;}
._6{margin-left:-26.963154px;}
._9{margin-left:-25.835447px;}
._a{margin-left:-24.024888px;}
._f{margin-left:-18.206133px;}
._4{margin-left:-14.452922px;}
._12{margin-left:-2.399976px;}
._0{margin-left:-1.199988px;}
._1{width:11.855881px;}
._11{width:14.255857px;}
._10{width:16.793832px;}
._3{width:22.499040px;}
._2b{width:26.999619px;}
._4e{width:28.257729px;}
._2{width:36.191638px;}
._2f{width:83.158443px;}
._38{width:119.224692px;}
._30{width:132.722463px;}
._3b{width:134.911351px;}
._39{width:148.411126px;}
._16{width:157.347977px;}
._34{width:159.729416px;}
._35{width:161.910901px;}
._22{width:164.097865px;}
._2e{width:165.717838px;}
._37{width:175.410676px;}
._33{width:188.910451px;}
._31{width:202.410226px;}
._3a{width:215.910001px;}
._32{width:227.168814px;}
._36{width:240.668589px;}
._23{width:250.069832px;}
._4c{width:276.884150px;}
._14{width:285.139640px;}
._1b{width:288.868320px;}
._41{width:291.060549px;}
._4d{width:296.352461px;}
._49{width:303.103048px;}
._42{width:305.301033px;}
._3e{width:310.581224px;}
._3f{width:312.093198px;}
._25{width:323.378897px;}
._45{width:325.565974px;}
._48{width:327.739723px;}
._1f{width:332.337461px;}
._17{width:335.361411px;}
._29{width:343.164281px;}
._20{width:344.961692px;}
._27{width:358.462063px;}
._1d{width:360.697788px;}
._18{width:371.961243px;}
._21{width:375.806736px;}
._1c{width:385.452962px;}
._19{width:387.691938px;}
._3d{width:389.317311px;}
._47{width:390.796887px;}
._40{width:395.806803px;}
._2a{width:397.737156px;}
._1a{width:400.537125px;}
._44{width:404.296662px;}
._4b{width:411.802537px;}
._15{width:418.628023px;}
._24{width:424.742005px;}
._1e{width:451.567474px;}
._46{width:455.871202px;}
._28{width:474.841086px;}
._3c{width:491.942601px;}
._2d{width:497.836628px;}
._26{width:512.316461px;}
._43{width:524.882052px;}
._4a{width:554.905551px;}
._2c{width:587.282160px;}
._13{width:1044.727350px;}
.fc1{color:rgb(11,12,11);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.100300px;}
.fs7{font-size:37.154040px;}
.fs9{font-size:40.131660px;}
.fs4{font-size:42.899940px;}
.fs6{font-size:44.998680px;}
.fsa{font-size:47.998860px;}
.fs0{font-size:53.999100px;}
.fs8{font-size:55.453740px;}
.fs1{font-size:59.999400px;}
.fs3{font-size:65.999400px;}
.fs2{font-size:77.998800px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.612600px;}
.y4a{bottom:21.443100px;}
.y49{bottom:21.444300px;}
.y48{bottom:37.526100px;}
.y45{bottom:126.537150px;}
.y46{bottom:126.754500px;}
.y91{bottom:127.747950px;}
.ya8{bottom:132.452550px;}
.y9e{bottom:135.026250px;}
.y90{bottom:149.802750px;}
.ya7{bottom:151.652850px;}
.y9d{bottom:154.226550px;}
.y1d{bottom:165.474900px;}
.y3a{bottom:166.774800px;}
.ya6{bottom:170.853150px;}
.y8f{bottom:172.010250px;}
.y9c{bottom:173.426850px;}
.y1c{bottom:183.624600px;}
.y39{bottom:184.924500px;}
.ya5{bottom:190.053450px;}
.y9b{bottom:192.627150px;}
.y8e{bottom:194.217750px;}
.y1b{bottom:201.774300px;}
.y38{bottom:203.074200px;}
.ya4{bottom:209.253750px;}
.y9a{bottom:211.827450px;}
.y8d{bottom:216.425250px;}
.y1a{bottom:219.924000px;}
.y37{bottom:221.223900px;}
.y139{bottom:221.263500px;}
.y104{bottom:227.853000px;}
.ya3{bottom:228.454050px;}
.y99{bottom:229.977150px;}
.y138{bottom:237.598500px;}
.y19{bottom:238.073700px;}
.y8c{bottom:238.632750px;}
.y36{bottom:239.373600px;}
.y103{bottom:246.303750px;}
.ya2{bottom:247.654350px;}
.y98{bottom:248.126850px;}
.y137{bottom:253.932750px;}
.y18{bottom:256.223400px;}
.y35{bottom:257.523300px;}
.y8b{bottom:260.841000px;}
.y102{bottom:264.754500px;}
.y97{bottom:266.276550px;}
.ya1{bottom:266.854650px;}
.y136{bottom:270.267000px;}
.y17{bottom:274.373850px;}
.y34{bottom:275.673000px;}
.y8a{bottom:283.048500px;}
.y101{bottom:283.204500px;}
.y96{bottom:284.427000px;}
.y135{bottom:285.866550px;}
.ya0{bottom:286.054950px;}
.y16{bottom:292.523550px;}
.y33{bottom:293.822700px;}
.y134{bottom:301.466850px;}
.y100{bottom:301.655250px;}
.y9f{bottom:305.255250px;}
.y87{bottom:309.755250px;}
.y89{bottom:309.756000px;}
.y15{bottom:310.673250px;}
.y32{bottom:311.972400px;}
.y86{bottom:315.639000px;}
.y95{bottom:316.077000px;}
.y133{bottom:317.067150px;}
.yff{bottom:320.105250px;}
.y88{bottom:326.023500px;}
.y14{bottom:328.822950px;}
.y31{bottom:330.122850px;}
.y132{bottom:332.666700px;}
.yfe{bottom:338.555250px;}
.y13{bottom:346.972650px;}
.y131{bottom:348.266250px;}
.y30{bottom:348.272550px;}
.yfd{bottom:357.006000px;}
.yd3{bottom:362.577000px;}
.y130{bottom:363.866550px;}
.y12{bottom:365.122350px;}
.y2f{bottom:366.422250px;}
.y92{bottom:370.485900px;}
.yfc{bottom:375.456750px;}
.yd2{bottom:378.777000px;}
.y12f{bottom:379.466850px;}
.y11{bottom:383.272050px;}
.y2e{bottom:384.571950px;}
.yfb{bottom:393.906750px;}
.yd1{bottom:394.977000px;}
.y12e{bottom:395.801100px;}
.y10{bottom:401.422500px;}
.y2d{bottom:402.721650px;}
.y94{bottom:405.606000px;}
.y71{bottom:409.436550px;}
.yd0{bottom:411.177000px;}
.y12d{bottom:412.135350px;}
.yfa{bottom:412.356750px;}
.y2c{bottom:420.871350px;}
.y93{bottom:421.806000px;}
.y70{bottom:427.137000px;}
.ycf{bottom:427.377000px;}
.y12c{bottom:428.469600px;}
.yf9{bottom:430.807500px;}
.yf{bottom:431.046000px;}
.y2b{bottom:439.021050px;}
.y12b{bottom:444.803850px;}
.y6f{bottom:444.836700px;}
.yf8{bottom:449.257500px;}
.yce{bottom:449.692500px;}
.y2a{bottom:457.170750px;}
.y12a{bottom:460.404150px;}
.y6e{bottom:462.537150px;}
.ye{bottom:466.314000px;}
.ycd{bottom:473.247000px;}
.y29{bottom:475.320450px;}
.y129{bottom:476.004450px;}
.y6d{bottom:480.686850px;}
.yf7{bottom:481.207500px;}
.yd{bottom:482.514000px;}
.y128{bottom:491.604000px;}
.y28{bottom:493.470150px;}
.ycc{bottom:495.454500px;}
.yc{bottom:498.714000px;}
.y6c{bottom:498.836550px;}
.y127{bottom:507.204300px;}
.y27{bottom:511.619850px;}
.yb{bottom:514.914000px;}
.y6b{bottom:516.986250px;}
.ycb{bottom:517.662000px;}
.yf6{bottom:519.459000px;}
.y126{bottom:523.538550px;}
.y26{bottom:529.769550px;}
.ya{bottom:531.114000px;}
.y6a{bottom:535.135950px;}
.yf5{bottom:537.909750px;}
.yca{bottom:539.869500px;}
.y125{bottom:539.872800px;}
.y9{bottom:547.314000px;}
.y25{bottom:547.919250px;}
.y69{bottom:553.285650px;}
.y124{bottom:556.207050px;}
.yf4{bottom:556.359750px;}
.yc9{bottom:562.077000px;}
.y8{bottom:563.514000px;}
.y24{bottom:566.068950px;}
.y68{bottom:571.435350px;}
.y123{bottom:571.807350px;}
.yf3{bottom:574.809750px;}
.y7{bottom:579.714000px;}
.y23{bottom:584.218650px;}
.yc8{bottom:584.284500px;}
.y122{bottom:587.407650px;}
.y67{bottom:589.585800px;}
.yf2{bottom:593.260500px;}
.y6{bottom:595.914000px;}
.y22{bottom:602.369100px;}
.y121{bottom:603.007950px;}
.yc7{bottom:606.492000px;}
.y66{bottom:607.735500px;}
.yf1{bottom:611.711250px;}
.y5{bottom:612.114000px;}
.y120{bottom:618.607500px;}
.y21{bottom:620.518800px;}
.y65{bottom:626.185500px;}
.y4{bottom:628.314000px;}
.yf0{bottom:630.162000px;}
.yc1{bottom:633.198750px;}
.yc4{bottom:633.199500px;}
.y11f{bottom:634.208250px;}
.y20{bottom:638.668500px;}
.y3{bottom:644.514000px;}
.y64{bottom:644.635500px;}
.ybe{bottom:647.217000px;}
.yee{bottom:648.612000px;}
.yc0{bottom:649.466250px;}
.yc6{bottom:649.467000px;}
.yc3{bottom:649.467750px;}
.y11e{bottom:650.542500px;}
.yef{bottom:655.661550px;}
.y1f{bottom:656.818200px;}
.y2{bottom:660.714000px;}
.y63{bottom:663.085500px;}
.ybf{bottom:665.734500px;}
.yc5{bottom:665.735250px;}
.yc2{bottom:665.736000px;}
.y11d{bottom:666.876750px;}
.yed{bottom:667.062750px;}
.y1e{bottom:674.967900px;}
.y1{bottom:676.914000px;}
.y62{bottom:681.535500px;}
.y11c{bottom:683.211000px;}
.yec{bottom:685.512750px;}
.y11b{bottom:699.546000px;}
.y61{bottom:699.985500px;}
.yd5{bottom:701.706000px;}
.yeb{bottom:703.963500px;}
.y11a{bottom:715.881000px;}
.yd4{bottom:717.906000px;}
.y60{bottom:718.435500px;}
.yea{bottom:722.413500px;}
.y119{bottom:732.215250px;}
.y5f{bottom:736.885500px;}
.ye9{bottom:740.864250px;}
.y118{bottom:748.549500px;}
.y5e{bottom:755.336250px;}
.ye8{bottom:759.315000px;}
.y44{bottom:763.434750px;}
.y117{bottom:764.883000px;}
.y5d{bottom:773.485950px;}
.y84{bottom:773.572200px;}
.ye7{bottom:777.765750px;}
.y116{bottom:781.215750px;}
.y83{bottom:791.272650px;}
.y5c{bottom:791.635650px;}
.y43{bottom:793.978500px;}
.ye6{bottom:796.216500px;}
.y115{bottom:797.550750px;}
.ybc{bottom:799.245000px;}
.y82{bottom:808.973100px;}
.y5b{bottom:809.785350px;}
.y114{bottom:813.885750px;}
.ye5{bottom:814.667250px;}
.y42{bottom:816.294000px;}
.ybb{bottom:822.800400px;}
.y81{bottom:826.673550px;}
.y5a{bottom:827.935050px;}
.y113{bottom:830.220000px;}
.yb9{bottom:831.654000px;}
.y41{bottom:832.494000px;}
.ye4{bottom:833.118000px;}
.y40{bottom:842.578500px;}
.y80{bottom:844.374000px;}
.yba{bottom:845.007900px;}
.y59{bottom:846.084750px;}
.y112{bottom:846.554250px;}
.ye3{bottom:851.568750px;}
.y7f{bottom:862.074450px;}
.y111{bottom:862.888500px;}
.y58{bottom:864.234450px;}
.y3f{bottom:864.902850px;}
.yb8{bottom:867.215400px;}
.ye2{bottom:870.019500px;}
.yb6{bottom:873.155400px;}
.yb5{bottom:878.319750px;}
.y110{bottom:879.223500px;}
.y7e{bottom:879.774900px;}
.y57{bottom:882.384150px;}
.yaa{bottom:886.692000px;}
.ye1{bottom:888.469500px;}
.y3e{bottom:889.011600px;}
.yb7{bottom:889.422750px;}
.y10f{bottom:895.557750px;}
.y7d{bottom:897.475350px;}
.y56{bottom:900.534600px;}
.ye0{bottom:906.920250px;}
.yb4{bottom:911.631000px;}
.y10e{bottom:911.892000px;}
.y7c{bottom:915.175800px;}
.yb2{bottom:917.571150px;}
.y55{bottom:918.684300px;}
.yb1{bottom:922.734900px;}
.y3d{bottom:922.836150px;}
.ydf{bottom:925.371000px;}
.y10d{bottom:928.227000px;}
.y7b{bottom:932.876250px;}
.yb3{bottom:933.838500px;}
.y54{bottom:936.834000px;}
.yde{bottom:943.821750px;}
.y10c{bottom:944.561250px;}
.y3c{bottom:946.234800px;}
.y7a{bottom:950.576700px;}
.yb0{bottom:956.046000px;}
.y10b{bottom:960.895500px;}
.yae{bottom:961.986000px;}
.ydd{bottom:962.272500px;}
.y53{bottom:966.459000px;}
.yad{bottom:967.149750px;}
.y79{bottom:968.277150px;}
.y10a{bottom:977.230500px;}
.yaf{bottom:978.253500px;}
.ydc{bottom:980.723250px;}
.y78{bottom:985.977600px;}
.y109{bottom:993.564750px;}
.ydb{bottom:999.174000px;}
.yac{bottom:1000.461150px;}
.y52{bottom:1001.727000px;}
.y77{bottom:1003.677300px;}
.y4c{bottom:1007.025000px;}
.y108{bottom:1009.898250px;}
.yab{bottom:1011.565500px;}
.yda{bottom:1017.624750px;}
.y51{bottom:1019.727000px;}
.y76{bottom:1021.377750px;}
.yd9{bottom:1036.075500px;}
.y107{bottom:1037.707500px;}
.y50{bottom:1037.720700px;}
.y75{bottom:1039.078200px;}
.ya9{bottom:1049.375100px;}
.yd8{bottom:1054.526250px;}
.y4f{bottom:1055.727000px;}
.y74{bottom:1056.778650px;}
.y47{bottom:1068.449400px;}
.y106{bottom:1072.975500px;}
.yd7{bottom:1072.977000px;}
.y4e{bottom:1073.719950px;}
.y73{bottom:1074.479100px;}
.ybd{bottom:1083.919500px;}
.y105{bottom:1091.425500px;}
.yd6{bottom:1091.427000px;}
.y4d{bottom:1091.727000px;}
.y72{bottom:1092.179550px;}
.y3b{bottom:1116.276300px;}
.y85{bottom:1134.750000px;}
.h6{height:24.394708px;}
.h9{height:27.048141px;}
.hb{height:28.734269px;}
.h18{height:33.359208px;}
.h1a{height:36.989384px;}
.h7{height:37.475375px;}
.h1{height:37.529374px;}
.h19{height:37.532374px;}
.ha{height:40.370323px;}
.h3{height:41.639584px;}
.h2{height:41.699583px;}
.he{height:41.724783px;}
.hd{height:41.727783px;}
.h17{height:48.850708px;}
.h16{height:48.853709px;}
.h11{height:48.856709px;}
.h10{height:48.859709px;}
.h8{height:49.145400px;}
.h4{height:53.429178px;}
.hc{height:54.131167px;}
.h5{height:59.715258px;}
.hf{height:79.064374px;}
.h15{height:81.941375px;}
.h12{height:81.941975px;}
.h14{height:81.943775px;}
.h13{height:81.944375px;}
.h0{height:1263.000000px;}
.w1{width:173.079000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:4.811400px;}
.x11{left:42.150000px;}
.x10{left:46.307400px;}
.x2{left:84.736650px;}
.xe{left:86.477400px;}
.x16{left:88.183200px;}
.x14{left:97.492560px;}
.x1{left:110.236650px;}
.x6{left:118.039920px;}
.x21{left:132.154500px;}
.xb{left:150.358500px;}
.x9{left:159.365100px;}
.x8{left:168.037950px;}
.x22{left:198.243000px;}
.x3{left:210.403350px;}
.x35{left:214.143000px;}
.x25{left:220.148400px;}
.x17{left:227.056650px;}
.x15{left:228.769500px;}
.x1e{left:232.138500px;}
.x26{left:234.018000px;}
.x27{left:237.407100px;}
.x20{left:243.389400px;}
.x1f{left:251.796000px;}
.xc{left:301.805100px;}
.x18{left:319.156500px;}
.x2a{left:339.048000px;}
.x28{left:343.543500px;}
.x24{left:356.206200px;}
.x33{left:366.856050px;}
.x29{left:370.408500px;}
.x23{left:376.253100px;}
.x7{left:380.509950px;}
.xa{left:390.265500px;}
.x34{left:405.941550px;}
.x4{left:454.400550px;}
.x2d{left:456.442800px;}
.x2b{left:459.622650px;}
.x2c{left:469.832700px;}
.x5{left:479.900100px;}
.x37{left:488.416500px;}
.x38{left:491.527500px;}
.x19{left:507.605700px;}
.xd{left:518.493000px;}
.x2e{left:576.717900px;}
.x36{left:588.673500px;}
.x30{left:603.346800px;}
.x1a{left:607.336950px;}
.x2f{left:609.720300px;}
.xf{left:618.303600px;}
.x1b{left:623.463150px;}
.x1c{left:697.139400px;}
.x32{left:724.647750px;}
.x31{left:729.922500px;}
.x1d{left:732.283650px;}
.x13{left:770.730000px;}
@media print{
.v8{vertical-align:-41.597333pt;}
.v7{vertical-align:-25.065067pt;}
.v2{vertical-align:-21.775467pt;}
.v6{vertical-align:-16.532267pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.746667pt;}
.v1{vertical-align:26.577600pt;}
.v3{vertical-align:36.920000pt;}
.v5{vertical-align:39.477867pt;}
.ls1e{letter-spacing:-1.066656pt;}
.ls26{letter-spacing:-0.955184pt;}
.lsc{letter-spacing:-0.554834pt;}
.ls5{letter-spacing:-0.533328pt;}
.ls18{letter-spacing:-0.527995pt;}
.ls27{letter-spacing:-0.479992pt;}
.lsf{letter-spacing:-0.197169pt;}
.ls8{letter-spacing:-0.184945pt;}
.ls9{letter-spacing:-0.181642pt;}
.ls11{letter-spacing:-0.147877pt;}
.lsa{letter-spacing:-0.062749pt;}
.ls10{letter-spacing:-0.049292pt;}
.ls6{letter-spacing:-0.029723pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000200pt;}
.ls16{letter-spacing:0.000400pt;}
.ls20{letter-spacing:0.000507pt;}
.ls0{letter-spacing:0.000560pt;}
.ls1{letter-spacing:0.001093pt;}
.ls22{letter-spacing:0.001238pt;}
.ls17{letter-spacing:0.002015pt;}
.ls7{letter-spacing:0.092472pt;}
.lsb{letter-spacing:0.095775pt;}
.lsd{letter-spacing:0.098584pt;}
.lse{letter-spacing:0.147877pt;}
.ls13{letter-spacing:1.599984pt;}
.ls1b{letter-spacing:7.797200pt;}
.ls15{letter-spacing:7.802533pt;}
.ls1f{letter-spacing:8.484773pt;}
.ls25{letter-spacing:8.764654pt;}
.ls1c{letter-spacing:11.999867pt;}
.ls1a{letter-spacing:12.005200pt;}
.ls1d{letter-spacing:12.554533pt;}
.ls21{letter-spacing:13.081638pt;}
.ls2{letter-spacing:14.668400pt;}
.ls14{letter-spacing:16.812717pt;}
.ls12{letter-spacing:18.666080pt;}
.ls23{letter-spacing:20.674693pt;}
.ls3{letter-spacing:24.002005pt;}
.ls19{letter-spacing:136.517733pt;}
.ws58{word-spacing:-0.197169pt;}
.ws57{word-spacing:-0.147877pt;}
.ws54{word-spacing:-0.128801pt;}
.ws50{word-spacing:-0.125498pt;}
.ws23{word-spacing:-0.053333pt;}
.ws56{word-spacing:-0.049292pt;}
.ws93{word-spacing:-0.047999pt;}
.wsea{word-spacing:-0.042666pt;}
.ws45{word-spacing:-0.038133pt;}
.ws5c{word-spacing:-0.035673pt;}
.ws4e{word-spacing:-0.033026pt;}
.ws47{word-spacing:-0.031200pt;}
.ws4f{word-spacing:-0.003303pt;}
.ws5a{word-spacing:0.000000pt;}
.ws53{word-spacing:0.029723pt;}
.ws5b{word-spacing:0.098584pt;}
.ws59{word-spacing:0.147877pt;}
.ws52{word-spacing:0.148616pt;}
.ws51{word-spacing:0.151919pt;}
.ws35{word-spacing:0.479995pt;}
.ws55{word-spacing:0.521808pt;}
.ws10e{word-spacing:6.671889pt;}
.ws119{word-spacing:6.811086pt;}
.ws102{word-spacing:7.406277pt;}
.ws103{word-spacing:7.411076pt;}
.ws106{word-spacing:7.430276pt;}
.wse{word-spacing:7.599924pt;}
.ws12b{word-spacing:7.631873pt;}
.ws36{word-spacing:7.642590pt;}
.wsc1{word-spacing:7.761245pt;}
.ws24{word-spacing:7.946587pt;}
.wsab{word-spacing:8.042586pt;}
.ws7{word-spacing:8.087865pt;}
.ws10c{word-spacing:8.107065pt;}
.wsf3{word-spacing:8.170585pt;}
.wsa3{word-spacing:8.186585pt;}
.ws12{word-spacing:8.218584pt;}
.ws77{word-spacing:8.277251pt;}
.ws5{word-spacing:8.308662pt;}
.wsdf{word-spacing:8.357250pt;}
.ws33{word-spacing:8.394583pt;}
.wse5{word-spacing:8.426582pt;}
.wse4{word-spacing:8.429837pt;}
.wse7{word-spacing:8.431916pt;}
.ws7f{word-spacing:8.458582pt;}
.wsb0{word-spacing:8.479915pt;}
.ws8b{word-spacing:8.490582pt;}
.wse1{word-spacing:8.495915pt;}
.ws67{word-spacing:8.586581pt;}
.ws63{word-spacing:8.661247pt;}
.ws129{word-spacing:8.663856pt;}
.ws34{word-spacing:8.693246pt;}
.wsfd{word-spacing:8.716655pt;}
.ws118{word-spacing:8.726255pt;}
.ws101{word-spacing:8.759854pt;}
.ws1{word-spacing:8.793453pt;}
.ws71{word-spacing:8.847912pt;}
.wsa0{word-spacing:8.959910pt;}
.wscb{word-spacing:8.990250pt;}
.wsca{word-spacing:8.995050pt;}
.ws12d{word-spacing:8.999850pt;}
.wsa2{word-spacing:9.013243pt;}
.ws123{word-spacing:9.028650pt;}
.ws8{word-spacing:9.047849pt;}
.ws11c{word-spacing:9.067049pt;}
.wscc{word-spacing:9.071849pt;}
.wsd8{word-spacing:9.141242pt;}
.ws6{word-spacing:9.163047pt;}
.ws11{word-spacing:9.279907pt;}
.ws6e{word-spacing:9.285240pt;}
.ws121{word-spacing:9.379044pt;}
.ws1d{word-spacing:9.386573pt;}
.ws62{word-spacing:9.413239pt;}
.ws39{word-spacing:9.423906pt;}
.ws3c{word-spacing:9.493238pt;}
.ws18{word-spacing:9.583904pt;}
.ws66{word-spacing:9.679903pt;}
.ws115{word-spacing:9.829713pt;}
.ws117{word-spacing:9.830236pt;}
.ws116{word-spacing:9.831134pt;}
.ws80{word-spacing:9.845235pt;}
.ws86{word-spacing:9.850568pt;}
.ws4d{word-spacing:9.959379pt;}
.ws9f{word-spacing:9.967900pt;}
.ws12c{word-spacing:9.983834pt;}
.ws74{word-spacing:9.989233pt;}
.wsd5{word-spacing:10.053233pt;}
.wsfe{word-spacing:10.094232pt;}
.wsd3{word-spacing:10.186565pt;}
.ws109{word-spacing:10.291028pt;}
.wsf{word-spacing:10.341230pt;}
.ws0{word-spacing:10.382227pt;}
.ws20{word-spacing:10.469229pt;}
.wsa8{word-spacing:10.485228pt;}
.ws12a{word-spacing:10.545424pt;}
.ws6d{word-spacing:10.570561pt;}
.ws17{word-spacing:10.613227pt;}
.ws6a{word-spacing:10.821225pt;}
.ws120{word-spacing:10.828620pt;}
.ws21{word-spacing:10.986557pt;}
.ws87{word-spacing:10.991890pt;}
.ws64{word-spacing:11.071889pt;}
.ws22{word-spacing:11.157222pt;}
.wse0{word-spacing:11.343887pt;}
.wsd0{word-spacing:11.397219pt;}
.ws72{word-spacing:11.418552pt;}
.ws10f{word-spacing:11.543667pt;}
.ws110{word-spacing:11.543808pt;}
.ws6c{word-spacing:11.599884pt;}
.wsd6{word-spacing:11.621217pt;}
.wsc8{word-spacing:11.625406pt;}
.ws10{word-spacing:11.637217pt;}
.ws11d{word-spacing:11.860602pt;}
.ws98{word-spacing:11.947079pt;}
.ws96{word-spacing:11.948710pt;}
.ws94{word-spacing:11.948888pt;}
.ws97{word-spacing:11.948933pt;}
.ws99{word-spacing:11.949044pt;}
.wsc5{word-spacing:11.949124pt;}
.wsc2{word-spacing:11.949190pt;}
.wsc3{word-spacing:11.949856pt;}
.ws95{word-spacing:11.949968pt;}
.wsc6{word-spacing:11.950357pt;}
.ws111{word-spacing:11.950512pt;}
.ws11e{word-spacing:11.951223pt;}
.ws128{word-spacing:11.951401pt;}
.ws91{word-spacing:11.951510pt;}
.ws4c{word-spacing:11.951512pt;}
.wsbb{word-spacing:11.951556pt;}
.wsd{word-spacing:11.951557pt;}
.ws4a{word-spacing:11.951601pt;}
.ws105{word-spacing:11.951623pt;}
.wsb6{word-spacing:11.951644pt;}
.wsbf{word-spacing:11.951689pt;}
.ws4b{word-spacing:11.951690pt;}
.ws48{word-spacing:11.951733pt;}
.ws49{word-spacing:11.951757pt;}
.wsb{word-spacing:11.951770pt;}
.wscf{word-spacing:11.951778pt;}
.ws8f{word-spacing:11.951787pt;}
.ws9b{word-spacing:11.951788pt;}
.wsb3{word-spacing:11.951801pt;}
.ws9a{word-spacing:11.951805pt;}
.ws9c{word-spacing:11.951823pt;}
.ws8d{word-spacing:11.951845pt;}
.wsba{word-spacing:11.951867pt;}
.wsbe{word-spacing:11.951911pt;}
.wsbc{word-spacing:11.951955pt;}
.wsb1{word-spacing:11.951957pt;}
.ws92{word-spacing:11.951978pt;}
.ws11b{word-spacing:11.952023pt;}
.ws8e{word-spacing:11.952045pt;}
.ws90{word-spacing:11.952090pt;}
.ws9e{word-spacing:11.952134pt;}
.wsc4{word-spacing:11.953258pt;}
.wsc0{word-spacing:11.956601pt;}
.ws10b{word-spacing:11.959043pt;}
.wsc{word-spacing:11.975800pt;}
.ws5f{word-spacing:12.047880pt;}
.ws2f{word-spacing:12.138545pt;}
.wsd7{word-spacing:12.149212pt;}
.ws5e{word-spacing:12.154545pt;}
.wsdc{word-spacing:12.250544pt;}
.ws107{word-spacing:12.354994pt;}
.ws108{word-spacing:12.359794pt;}
.ws1a{word-spacing:12.378543pt;}
.ws61{word-spacing:12.410543pt;}
.ws3{word-spacing:12.436593pt;}
.ws11f{word-spacing:12.494192pt;}
.wscd{word-spacing:12.503792pt;}
.wsce{word-spacing:12.508592pt;}
.wsc7{word-spacing:12.580590pt;}
.ws16{word-spacing:12.607874pt;}
.ws104{word-spacing:12.738988pt;}
.ws1b{word-spacing:12.810539pt;}
.wse9{word-spacing:13.029203pt;}
.ws89{word-spacing:13.114536pt;}
.wsd1{word-spacing:13.125202pt;}
.ws3e{word-spacing:13.279289pt;}
.ws81{word-spacing:13.279467pt;}
.ws5d{word-spacing:13.279586pt;}
.wsf7{word-spacing:13.279592pt;}
.ws3f{word-spacing:13.279601pt;}
.ws15{word-spacing:13.279645pt;}
.wsfc{word-spacing:13.279705pt;}
.ws32{word-spacing:13.279734pt;}
.ws31{word-spacing:13.279852pt;}
.wsf4{word-spacing:13.279858pt;}
.ws2b{word-spacing:13.279867pt;}
.wsf9{word-spacing:13.279882pt;}
.wsf1{word-spacing:13.279971pt;}
.wsda{word-spacing:13.280089pt;}
.ws78{word-spacing:13.283733pt;}
.ws65{word-spacing:13.295867pt;}
.ws1e{word-spacing:13.311867pt;}
.ws9d{word-spacing:13.478175pt;}
.wsf5{word-spacing:13.487865pt;}
.wsc9{word-spacing:13.679772pt;}
.ws6f{word-spacing:13.685196pt;}
.ws83{word-spacing:13.738529pt;}
.ws6b{word-spacing:13.813195pt;}
.wsd2{word-spacing:14.138525pt;}
.wse2{word-spacing:14.154525pt;}
.ws30{word-spacing:14.165192pt;}
.ws28{word-spacing:14.213191pt;}
.ws2d{word-spacing:14.266524pt;}
.wse6{word-spacing:14.367856pt;}
.wsaf{word-spacing:14.463855pt;}
.ws122{word-spacing:14.500558pt;}
.wsed{word-spacing:14.549188pt;}
.ws42{word-spacing:14.607511pt;}
.ws44{word-spacing:14.607601pt;}
.ws43{word-spacing:14.607867pt;}
.ws46{word-spacing:14.608045pt;}
.ws13{word-spacing:14.634520pt;}
.ws60{word-spacing:14.650520pt;}
.ws3d{word-spacing:14.767852pt;}
.ws27{word-spacing:14.778519pt;}
.ws7b{word-spacing:14.783852pt;}
.ws11a{word-spacing:14.903752pt;}
.ws84{word-spacing:14.949184pt;}
.ws124{word-spacing:14.985350pt;}
.wsf6{word-spacing:15.050516pt;}
.wsdd{word-spacing:15.093182pt;}
.ws10d{word-spacing:15.119748pt;}
.ws100{word-spacing:15.220546pt;}
.ws2c{word-spacing:15.279847pt;}
.wsee{word-spacing:15.322513pt;}
.ws76{word-spacing:15.333180pt;}
.wsa{word-spacing:15.412543pt;}
.ws7d{word-spacing:15.429179pt;}
.wseb{word-spacing:15.578511pt;}
.wsfa{word-spacing:15.594511pt;}
.ws68{word-spacing:15.679843pt;}
.wsad{word-spacing:15.711843pt;}
.ws1f{word-spacing:15.775842pt;}
.ws114{word-spacing:15.839736pt;}
.ws113{word-spacing:15.841267pt;}
.ws112{word-spacing:15.843934pt;}
.ws14{word-spacing:15.967840pt;}
.ws38{word-spacing:16.069173pt;}
.wsa4{word-spacing:16.111839pt;}
.wsff{word-spacing:16.127731pt;}
.ws25{word-spacing:16.223838pt;}
.ws73{word-spacing:16.239838pt;}
.ws29{word-spacing:16.266504pt;}
.ws1c{word-spacing:16.431836pt;}
.wsd9{word-spacing:16.458502pt;}
.ws4{word-spacing:16.694122pt;}
.wsac{word-spacing:16.858498pt;}
.wsde{word-spacing:17.002497pt;}
.ws79{word-spacing:17.034496pt;}
.ws2{word-spacing:17.049316pt;}
.ws41{word-spacing:17.263587pt;}
.ws40{word-spacing:17.263884pt;}
.wsae{word-spacing:17.327827pt;}
.ws2e{word-spacing:17.466492pt;}
.wsa6{word-spacing:17.557158pt;}
.wsd4{word-spacing:17.738489pt;}
.ws126{word-spacing:18.306895pt;}
.wsf0{word-spacing:18.383816pt;}
.wsfb{word-spacing:18.394483pt;}
.ws3a{word-spacing:18.623814pt;}
.ws75{word-spacing:18.767812pt;}
.ws85{word-spacing:18.863811pt;}
.ws70{word-spacing:19.237141pt;}
.ws9{word-spacing:19.535674pt;}
.ws7c{word-spacing:19.562471pt;}
.ws37{word-spacing:19.882468pt;}
.ws127{word-spacing:19.890868pt;}
.wsec{word-spacing:19.903801pt;}
.ws19{word-spacing:20.154465pt;}
.wsef{word-spacing:20.618460pt;}
.wsf2{word-spacing:20.639794pt;}
.wsf8{word-spacing:21.071789pt;}
.wsa1{word-spacing:21.082456pt;}
.ws125{word-spacing:21.172447pt;}
.ws69{word-spacing:21.493118pt;}
.wsa7{word-spacing:22.538441pt;}
.wse8{word-spacing:22.826438pt;}
.wsa5{word-spacing:22.847772pt;}
.ws7a{word-spacing:22.959770pt;}
.ws10a{word-spacing:23.030016pt;}
.ws82{word-spacing:23.375766pt;}
.ws12e{word-spacing:23.644406pt;}
.wse3{word-spacing:23.674430pt;}
.ws7e{word-spacing:23.861095pt;}
.ws8a{word-spacing:24.175758pt;}
.ws26{word-spacing:24.661087pt;}
.ws88{word-spacing:26.085072pt;}
.wsaa{word-spacing:26.127739pt;}
.wsa9{word-spacing:26.128667pt;}
.ws2a{word-spacing:26.613067pt;}
.ws8c{word-spacing:28.613047pt;}
.wsdb{word-spacing:32.250344pt;}
.ws3b{word-spacing:33.183668pt;}
.wsbd{word-spacing:107.873402pt;}
.wsb9{word-spacing:119.873202pt;}
.wsb7{word-spacing:155.872602pt;}
.wsb4{word-spacing:167.872402pt;}
.wsb8{word-spacing:179.872202pt;}
.wsb5{word-spacing:191.872002pt;}
.wsb2{word-spacing:251.871002pt;}
._b{margin-left:-38.349342pt;}
._c{margin-left:-32.978518pt;}
._d{margin-left:-32.079002pt;}
._e{margin-left:-30.161077pt;}
._5{margin-left:-27.481021pt;}
._8{margin-left:-26.513644pt;}
._7{margin-left:-24.961045pt;}
._6{margin-left:-23.967248pt;}
._9{margin-left:-22.964842pt;}
._a{margin-left:-21.355456pt;}
._f{margin-left:-16.183229pt;}
._4{margin-left:-12.847041pt;}
._12{margin-left:-2.133312pt;}
._0{margin-left:-1.066656pt;}
._1{width:10.538561pt;}
._11{width:12.671873pt;}
._10{width:14.927851pt;}
._3{width:19.999147pt;}
._2b{width:23.999662pt;}
._4e{width:25.117981pt;}
._2{width:32.170345pt;}
._2f{width:73.918616pt;}
._38{width:105.977504pt;}
._30{width:117.975523pt;}
._3b{width:119.921201pt;}
._39{width:131.921001pt;}
._16{width:139.864869pt;}
._34{width:141.981704pt;}
._35{width:143.920801pt;}
._22{width:145.864769pt;}
._2e{width:147.304745pt;}
._37{width:155.920601pt;}
._33{width:167.920401pt;}
._31{width:179.920201pt;}
._3a{width:191.920001pt;}
._32{width:201.927834pt;}
._36{width:213.927634pt;}
._23{width:222.284295pt;}
._4c{width:246.119244pt;}
._14{width:253.457457pt;}
._1b{width:256.771840pt;}
._41{width:258.720488pt;}
._4d{width:263.424410pt;}
._49{width:269.424932pt;}
._42{width:271.378696pt;}
._3e{width:276.072199pt;}
._3f{width:277.416176pt;}
._25{width:287.447908pt;}
._45{width:289.391977pt;}
._48{width:291.324198pt;}
._1f{width:295.411076pt;}
._17{width:298.099032pt;}
._29{width:305.034916pt;}
._20{width:306.632615pt;}
._27{width:318.632945pt;}
._1d{width:320.620256pt;}
._18{width:330.632216pt;}
._21{width:334.050432pt;}
._1c{width:342.624855pt;}
._19{width:344.615056pt;}
._3d{width:346.059832pt;}
._47{width:347.375010pt;}
._40{width:351.828270pt;}
._2a{width:353.544139pt;}
._1a{width:356.033000pt;}
._44{width:359.374810pt;}
._4b{width:366.046699pt;}
._15{width:372.113798pt;}
._24{width:377.548449pt;}
._1e{width:401.393310pt;}
._46{width:405.218846pt;}
._28{width:422.080965pt;}
._3c{width:437.282312pt;}
._2d{width:442.521447pt;}
._26{width:455.392410pt;}
._43{width:466.561824pt;}
._4a{width:493.249379pt;}
._2c{width:522.028586pt;}
._13{width:928.646533pt;}
.fs5{font-size:31.200267pt;}
.fs7{font-size:33.025813pt;}
.fs9{font-size:35.672587pt;}
.fs4{font-size:38.133280pt;}
.fs6{font-size:39.998827pt;}
.fsa{font-size:42.665653pt;}
.fs0{font-size:47.999200pt;}
.fs8{font-size:49.292213pt;}
.fs1{font-size:53.332800pt;}
.fs3{font-size:58.666133pt;}
.fs2{font-size:69.332267pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.211200pt;}
.y4a{bottom:19.060533pt;}
.y49{bottom:19.061600pt;}
.y48{bottom:33.356533pt;}
.y45{bottom:112.477467pt;}
.y46{bottom:112.670667pt;}
.y91{bottom:113.553733pt;}
.ya8{bottom:117.735600pt;}
.y9e{bottom:120.023333pt;}
.y90{bottom:133.158000pt;}
.ya7{bottom:134.802533pt;}
.y9d{bottom:137.090267pt;}
.y1d{bottom:147.088800pt;}
.y3a{bottom:148.244267pt;}
.ya6{bottom:151.869467pt;}
.y8f{bottom:152.898000pt;}
.y9c{bottom:154.157200pt;}
.y1c{bottom:163.221867pt;}
.y39{bottom:164.377333pt;}
.ya5{bottom:168.936400pt;}
.y9b{bottom:171.224133pt;}
.y8e{bottom:172.638000pt;}
.y1b{bottom:179.354933pt;}
.y38{bottom:180.510400pt;}
.ya4{bottom:186.003333pt;}
.y9a{bottom:188.291067pt;}
.y8d{bottom:192.378000pt;}
.y1a{bottom:195.488000pt;}
.y37{bottom:196.643467pt;}
.y139{bottom:196.678667pt;}
.y104{bottom:202.536000pt;}
.ya3{bottom:203.070267pt;}
.y99{bottom:204.424133pt;}
.y138{bottom:211.198667pt;}
.y19{bottom:211.621067pt;}
.y8c{bottom:212.118000pt;}
.y36{bottom:212.776533pt;}
.y103{bottom:218.936667pt;}
.ya2{bottom:220.137200pt;}
.y98{bottom:220.557200pt;}
.y137{bottom:225.718000pt;}
.y18{bottom:227.754133pt;}
.y35{bottom:228.909600pt;}
.y8b{bottom:231.858667pt;}
.y102{bottom:235.337333pt;}
.y97{bottom:236.690267pt;}
.ya1{bottom:237.204133pt;}
.y136{bottom:240.237333pt;}
.y17{bottom:243.887867pt;}
.y34{bottom:245.042667pt;}
.y8a{bottom:251.598667pt;}
.y101{bottom:251.737333pt;}
.y96{bottom:252.824000pt;}
.y135{bottom:254.103600pt;}
.ya0{bottom:254.271067pt;}
.y16{bottom:260.020933pt;}
.y33{bottom:261.175733pt;}
.y134{bottom:267.970533pt;}
.y100{bottom:268.138000pt;}
.y9f{bottom:271.338000pt;}
.y87{bottom:275.338000pt;}
.y89{bottom:275.338667pt;}
.y15{bottom:276.154000pt;}
.y32{bottom:277.308800pt;}
.y86{bottom:280.568000pt;}
.y95{bottom:280.957333pt;}
.y133{bottom:281.837467pt;}
.yff{bottom:284.538000pt;}
.y88{bottom:289.798667pt;}
.y14{bottom:292.287067pt;}
.y31{bottom:293.442533pt;}
.y132{bottom:295.703733pt;}
.yfe{bottom:300.938000pt;}
.y13{bottom:308.420133pt;}
.y131{bottom:309.570000pt;}
.y30{bottom:309.575600pt;}
.yfd{bottom:317.338667pt;}
.yd3{bottom:322.290667pt;}
.y130{bottom:323.436933pt;}
.y12{bottom:324.553200pt;}
.y2f{bottom:325.708667pt;}
.y92{bottom:329.320800pt;}
.yfc{bottom:333.739333pt;}
.yd2{bottom:336.690667pt;}
.y12f{bottom:337.303867pt;}
.y11{bottom:340.686267pt;}
.y2e{bottom:341.841733pt;}
.yfb{bottom:350.139333pt;}
.yd1{bottom:351.090667pt;}
.y12e{bottom:351.823200pt;}
.y10{bottom:356.820000pt;}
.y2d{bottom:357.974800pt;}
.y94{bottom:360.538667pt;}
.y71{bottom:363.943600pt;}
.yd0{bottom:365.490667pt;}
.y12d{bottom:366.342533pt;}
.yfa{bottom:366.539333pt;}
.y2c{bottom:374.107867pt;}
.y93{bottom:374.938667pt;}
.y70{bottom:379.677333pt;}
.ycf{bottom:379.890667pt;}
.y12c{bottom:380.861867pt;}
.yf9{bottom:382.940000pt;}
.yf{bottom:383.152000pt;}
.y2b{bottom:390.240933pt;}
.y12b{bottom:395.381200pt;}
.y6f{bottom:395.410400pt;}
.yf8{bottom:399.340000pt;}
.yce{bottom:399.726667pt;}
.y2a{bottom:406.374000pt;}
.y12a{bottom:409.248133pt;}
.y6e{bottom:411.144133pt;}
.ye{bottom:414.501333pt;}
.ycd{bottom:420.664000pt;}
.y29{bottom:422.507067pt;}
.y129{bottom:423.115067pt;}
.y6d{bottom:427.277200pt;}
.yf7{bottom:427.740000pt;}
.yd{bottom:428.901333pt;}
.y128{bottom:436.981333pt;}
.y28{bottom:438.640133pt;}
.ycc{bottom:440.404000pt;}
.yc{bottom:443.301333pt;}
.y6c{bottom:443.410267pt;}
.y127{bottom:450.848267pt;}
.y27{bottom:454.773200pt;}
.yb{bottom:457.701333pt;}
.y6b{bottom:459.543333pt;}
.ycb{bottom:460.144000pt;}
.yf6{bottom:461.741333pt;}
.y126{bottom:465.367600pt;}
.y26{bottom:470.906267pt;}
.ya{bottom:472.101333pt;}
.y6a{bottom:475.676400pt;}
.yf5{bottom:478.142000pt;}
.yca{bottom:479.884000pt;}
.y125{bottom:479.886933pt;}
.y9{bottom:486.501333pt;}
.y25{bottom:487.039333pt;}
.y69{bottom:491.809467pt;}
.y124{bottom:494.406267pt;}
.yf4{bottom:494.542000pt;}
.yc9{bottom:499.624000pt;}
.y8{bottom:500.901333pt;}
.y24{bottom:503.172400pt;}
.y68{bottom:507.942533pt;}
.y123{bottom:508.273200pt;}
.yf3{bottom:510.942000pt;}
.y7{bottom:515.301333pt;}
.y23{bottom:519.305467pt;}
.yc8{bottom:519.364000pt;}
.y122{bottom:522.140133pt;}
.y67{bottom:524.076267pt;}
.yf2{bottom:527.342667pt;}
.y6{bottom:529.701333pt;}
.y22{bottom:535.439200pt;}
.y121{bottom:536.007067pt;}
.yc7{bottom:539.104000pt;}
.y66{bottom:540.209333pt;}
.yf1{bottom:543.743333pt;}
.y5{bottom:544.101333pt;}
.y120{bottom:549.873333pt;}
.y21{bottom:551.572267pt;}
.y65{bottom:556.609333pt;}
.y4{bottom:558.501333pt;}
.yf0{bottom:560.144000pt;}
.yc1{bottom:562.843333pt;}
.yc4{bottom:562.844000pt;}
.y11f{bottom:563.740667pt;}
.y20{bottom:567.705333pt;}
.y3{bottom:572.901333pt;}
.y64{bottom:573.009333pt;}
.ybe{bottom:575.304000pt;}
.yee{bottom:576.544000pt;}
.yc0{bottom:577.303333pt;}
.yc6{bottom:577.304000pt;}
.yc3{bottom:577.304667pt;}
.y11e{bottom:578.260000pt;}
.yef{bottom:582.810267pt;}
.y1f{bottom:583.838400pt;}
.y2{bottom:587.301333pt;}
.y63{bottom:589.409333pt;}
.ybf{bottom:591.764000pt;}
.yc5{bottom:591.764667pt;}
.yc2{bottom:591.765333pt;}
.y11d{bottom:592.779333pt;}
.yed{bottom:592.944667pt;}
.y1e{bottom:599.971467pt;}
.y1{bottom:601.701333pt;}
.y62{bottom:605.809333pt;}
.y11c{bottom:607.298667pt;}
.yec{bottom:609.344667pt;}
.y11b{bottom:621.818667pt;}
.y61{bottom:622.209333pt;}
.yd5{bottom:623.738667pt;}
.yeb{bottom:625.745333pt;}
.y11a{bottom:636.338667pt;}
.yd4{bottom:638.138667pt;}
.y60{bottom:638.609333pt;}
.yea{bottom:642.145333pt;}
.y119{bottom:650.858000pt;}
.y5f{bottom:655.009333pt;}
.ye9{bottom:658.546000pt;}
.y118{bottom:665.377333pt;}
.y5e{bottom:671.410000pt;}
.ye8{bottom:674.946667pt;}
.y44{bottom:678.608667pt;}
.y117{bottom:679.896000pt;}
.y5d{bottom:687.543067pt;}
.y84{bottom:687.619733pt;}
.ye7{bottom:691.347333pt;}
.y116{bottom:694.414000pt;}
.y83{bottom:703.353467pt;}
.y5c{bottom:703.676133pt;}
.y43{bottom:705.758667pt;}
.ye6{bottom:707.748000pt;}
.y115{bottom:708.934000pt;}
.ybc{bottom:710.440000pt;}
.y82{bottom:719.087200pt;}
.y5b{bottom:719.809200pt;}
.y114{bottom:723.454000pt;}
.ye5{bottom:724.148667pt;}
.y42{bottom:725.594667pt;}
.ybb{bottom:731.378133pt;}
.y81{bottom:734.820933pt;}
.y5a{bottom:735.942267pt;}
.y113{bottom:737.973333pt;}
.yb9{bottom:739.248000pt;}
.y41{bottom:739.994667pt;}
.ye4{bottom:740.549333pt;}
.y40{bottom:748.958667pt;}
.y80{bottom:750.554667pt;}
.yba{bottom:751.118133pt;}
.y59{bottom:752.075333pt;}
.y112{bottom:752.492667pt;}
.ye3{bottom:756.950000pt;}
.y7f{bottom:766.288400pt;}
.y111{bottom:767.012000pt;}
.y58{bottom:768.208400pt;}
.y3f{bottom:768.802533pt;}
.yb8{bottom:770.858133pt;}
.ye2{bottom:773.350667pt;}
.yb6{bottom:776.138133pt;}
.yb5{bottom:780.728667pt;}
.y110{bottom:781.532000pt;}
.y7e{bottom:782.022133pt;}
.y57{bottom:784.341467pt;}
.yaa{bottom:788.170667pt;}
.ye1{bottom:789.750667pt;}
.y3e{bottom:790.232533pt;}
.yb7{bottom:790.598000pt;}
.y10f{bottom:796.051333pt;}
.y7d{bottom:797.755867pt;}
.y56{bottom:800.475200pt;}
.ye0{bottom:806.151333pt;}
.yb4{bottom:810.338667pt;}
.y10e{bottom:810.570667pt;}
.y7c{bottom:813.489600pt;}
.yb2{bottom:815.618800pt;}
.y55{bottom:816.608267pt;}
.yb1{bottom:820.208800pt;}
.y3d{bottom:820.298800pt;}
.ydf{bottom:822.552000pt;}
.y10d{bottom:825.090667pt;}
.y7b{bottom:829.223333pt;}
.yb3{bottom:830.078667pt;}
.y54{bottom:832.741333pt;}
.yde{bottom:838.952667pt;}
.y10c{bottom:839.610000pt;}
.y3c{bottom:841.097600pt;}
.y7a{bottom:844.957067pt;}
.yb0{bottom:849.818667pt;}
.y10b{bottom:854.129333pt;}
.yae{bottom:855.098667pt;}
.ydd{bottom:855.353333pt;}
.y53{bottom:859.074667pt;}
.yad{bottom:859.688667pt;}
.y79{bottom:860.690800pt;}
.y10a{bottom:868.649333pt;}
.yaf{bottom:869.558667pt;}
.ydc{bottom:871.754000pt;}
.y78{bottom:876.424533pt;}
.y109{bottom:883.168667pt;}
.ydb{bottom:888.154667pt;}
.yac{bottom:889.298800pt;}
.y52{bottom:890.424000pt;}
.y77{bottom:892.157600pt;}
.y4c{bottom:895.133333pt;}
.y108{bottom:897.687333pt;}
.yab{bottom:899.169333pt;}
.yda{bottom:904.555333pt;}
.y51{bottom:906.424000pt;}
.y76{bottom:907.891333pt;}
.yd9{bottom:920.956000pt;}
.y107{bottom:922.406667pt;}
.y50{bottom:922.418400pt;}
.y75{bottom:923.625067pt;}
.ya9{bottom:932.777867pt;}
.yd8{bottom:937.356667pt;}
.y4f{bottom:938.424000pt;}
.y74{bottom:939.358800pt;}
.y47{bottom:949.732800pt;}
.y106{bottom:953.756000pt;}
.yd7{bottom:953.757333pt;}
.y4e{bottom:954.417733pt;}
.y73{bottom:955.092533pt;}
.ybd{bottom:963.484000pt;}
.y105{bottom:970.156000pt;}
.yd6{bottom:970.157333pt;}
.y4d{bottom:970.424000pt;}
.y72{bottom:970.826267pt;}
.y3b{bottom:992.245600pt;}
.y85{bottom:1008.666667pt;}
.h6{height:21.684185pt;}
.h9{height:24.042792pt;}
.hb{height:25.541572pt;}
.h18{height:29.652629pt;}
.h1a{height:32.879452pt;}
.h7{height:33.311445pt;}
.h1{height:33.359444pt;}
.h19{height:33.362111pt;}
.ha{height:35.884731pt;}
.h3{height:37.012963pt;}
.h2{height:37.066296pt;}
.he{height:37.088696pt;}
.hd{height:37.091363pt;}
.h17{height:43.422852pt;}
.h16{height:43.425519pt;}
.h11{height:43.428185pt;}
.h10{height:43.430852pt;}
.h8{height:43.684800pt;}
.h4{height:47.492603pt;}
.hc{height:48.116593pt;}
.h5{height:53.080230pt;}
.hf{height:70.279444pt;}
.h15{height:72.836777pt;}
.h12{height:72.837311pt;}
.h14{height:72.838911pt;}
.h13{height:72.839444pt;}
.h0{height:1122.666667pt;}
.w1{width:153.848000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:4.276800pt;}
.x11{left:37.466667pt;}
.x10{left:41.162133pt;}
.x2{left:75.321467pt;}
.xe{left:76.868800pt;}
.x16{left:78.385067pt;}
.x14{left:86.660053pt;}
.x1{left:97.988133pt;}
.x6{left:104.924373pt;}
.x21{left:117.470667pt;}
.xb{left:133.652000pt;}
.x9{left:141.657867pt;}
.x8{left:149.367067pt;}
.x22{left:176.216000pt;}
.x3{left:187.025200pt;}
.x35{left:190.349333pt;}
.x25{left:195.687467pt;}
.x17{left:201.828133pt;}
.x15{left:203.350667pt;}
.x1e{left:206.345333pt;}
.x26{left:208.016000pt;}
.x27{left:211.028533pt;}
.x20{left:216.346133pt;}
.x1f{left:223.818667pt;}
.xc{left:268.271200pt;}
.x18{left:283.694667pt;}
.x2a{left:301.376000pt;}
.x28{left:305.372000pt;}
.x24{left:316.627733pt;}
.x33{left:326.094267pt;}
.x29{left:329.252000pt;}
.x23{left:334.447200pt;}
.x7{left:338.231067pt;}
.xa{left:346.902667pt;}
.x34{left:360.836933pt;}
.x4{left:403.911600pt;}
.x2d{left:405.726933pt;}
.x2b{left:408.553467pt;}
.x2c{left:417.629067pt;}
.x5{left:426.577867pt;}
.x37{left:434.148000pt;}
.x38{left:436.913333pt;}
.x19{left:451.205067pt;}
.xd{left:460.882667pt;}
.x2e{left:512.638133pt;}
.x36{left:523.265333pt;}
.x30{left:536.308267pt;}
.x1a{left:539.855067pt;}
.x2f{left:541.973600pt;}
.xf{left:549.603200pt;}
.x1b{left:554.189467pt;}
.x1c{left:619.679467pt;}
.x32{left:644.131333pt;}
.x31{left:648.820000pt;}
.x1d{left:650.918800pt;}
.x13{left:685.093333pt;}
}




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