
    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_b72960ee8028be9b20b8b1e1.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_8aed75274cd55d895278c234.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0163d2c15aa44568e3cc4cda.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_25b17c3c8fe99381a58c34e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_ea09b410741880b7b5949daa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;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_bff3bb83b00f007b98a77586.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_3ed495e31a654661c2a9f5b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.653000;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_602c06f987eb9d80f0d9fdfc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8c5ad2151626b8f00e1e5fe9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-49.748400px;}
.v2{vertical-align:-23.215920px;}
.v5{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.696000px;}
.v1{vertical-align:23.215920px;}
.ls33{letter-spacing:-0.001227px;}
.ls29{letter-spacing:-0.000962px;}
.ls32{letter-spacing:-0.000663px;}
.ls3f{letter-spacing:-0.000298px;}
.ls30{letter-spacing:-0.000199px;}
.ls3d{letter-spacing:-0.000099px;}
.lsc{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000232px;}
.ls34{letter-spacing:0.000265px;}
.ls2c{letter-spacing:0.000531px;}
.ls38{letter-spacing:0.001293px;}
.ls3a{letter-spacing:0.001393px;}
.ls2a{letter-spacing:0.001492px;}
.lsd{letter-spacing:0.001890px;}
.ls37{letter-spacing:0.001957px;}
.lsf{letter-spacing:0.001990px;}
.ls2f{letter-spacing:0.002023px;}
.ls2d{letter-spacing:0.002454px;}
.ls35{letter-spacing:0.002487px;}
.ls28{letter-spacing:0.002885px;}
.ls3b{letter-spacing:0.002919px;}
.ls26{letter-spacing:0.003051px;}
.ls2e{letter-spacing:0.003250px;}
.ls3e{letter-spacing:0.003516px;}
.ls2b{letter-spacing:0.003615px;}
.ls11{letter-spacing:0.004013px;}
.lse{letter-spacing:0.004046px;}
.ls36{letter-spacing:0.004146px;}
.ls12{letter-spacing:0.004179px;}
.ls39{letter-spacing:0.004776px;}
.ls3c{letter-spacing:0.006898px;}
.ls27{letter-spacing:0.007595px;}
.ls17{letter-spacing:0.618564px;}
.ls13{letter-spacing:0.748661px;}
.lsa{letter-spacing:0.754661px;}
.ls1c{letter-spacing:0.774564px;}
.ls45{letter-spacing:0.834017px;}
.ls14{letter-spacing:1.966612px;}
.ls0{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.986766px;}
.ls3{letter-spacing:2.987108px;}
.ls46{letter-spacing:2.987675px;}
.ls42{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.988780px;}
.ls43{letter-spacing:2.989200px;}
.ls7{letter-spacing:3.724009px;}
.ls22{letter-spacing:5.452738px;}
.ls21{letter-spacing:5.458320px;}
.lsb{letter-spacing:5.584320px;}
.ls15{letter-spacing:5.584348px;}
.ls4{letter-spacing:5.590348px;}
.ls25{letter-spacing:6.527477px;}
.ls6{letter-spacing:6.733702px;}
.ls5{letter-spacing:6.736320px;}
.ls1f{letter-spacing:6.739702px;}
.ls18{letter-spacing:7.317300px;}
.ls9{letter-spacing:7.323300px;}
.ls23{letter-spacing:7.324320px;}
.ls24{letter-spacing:11.172028px;}
.ls19{letter-spacing:20.202564px;}
.ls44{letter-spacing:21.054600px;}
.ls1e{letter-spacing:24.384600px;}
.ls1a{letter-spacing:25.417409px;}
.ls40{letter-spacing:30.688348px;}
.ls41{letter-spacing:30.694348px;}
.ls1d{letter-spacing:30.997409px;}
.ls1b{letter-spacing:31.003409px;}
.ls16{letter-spacing:31.837702px;}
.ls8{letter-spacing:31.843702px;}
.ls20{letter-spacing:32.427300px;}
.ls10{letter-spacing:148.319880px;}
.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;}
}
.ws5f{word-spacing:-47.654765px;}
.ws9f{word-spacing:-21.632728px;}
.wsc1{word-spacing:-16.988177px;}
.ws3{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.ws73{word-spacing:-12.427312px;}
.ws37{word-spacing:-11.955150px;}
.ws83{word-spacing:-10.460700px;}
.ws6f{word-spacing:-10.146219px;}
.ws6d{word-spacing:-10.144030px;}
.ws6c{word-spacing:-10.141941px;}
.ws72{word-spacing:-3.849538px;}
.ws67{word-spacing:-3.727031px;}
.wsad{word-spacing:-3.700434px;}
.wsa1{word-spacing:-3.135232px;}
.ws61{word-spacing:-3.012682px;}
.ws33{word-spacing:-2.989656px;}
.wse9{word-spacing:-1.195512px;}
.ws2f{word-spacing:-0.896634px;}
.wsf{word-spacing:-0.753178px;}
.wsd0{word-spacing:-0.717307px;}
.ws1b{word-spacing:-0.597756px;}
.wsd5{word-spacing:-0.358654px;}
.ws75{word-spacing:-0.248050px;}
.ws76{word-spacing:-0.239102px;}
.ws46{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.041843px;}
.ws6a{word-spacing:0.000000px;}
.ws36{word-spacing:0.010850px;}
.ws24{word-spacing:0.119551px;}
.ws108{word-spacing:0.478205px;}
.ws2e{word-spacing:0.597756px;}
.ws78{word-spacing:0.657532px;}
.wsa7{word-spacing:0.711328px;}
.ws2a{word-spacing:0.777083px;}
.ws109{word-spacing:0.836858px;}
.wsdb{word-spacing:0.956410px;}
.wsff{word-spacing:1.374839px;}
.ws77{word-spacing:1.673717px;}
.wsda{word-spacing:1.793268px;}
.wsaa{word-spacing:1.882926px;}
.wsdd{word-spacing:1.912819px;}
.wse1{word-spacing:2.032370px;}
.wsf5{word-spacing:2.211697px;}
.ws4d{word-spacing:2.450800px;}
.ws2d{word-spacing:2.570351px;}
.ws25{word-spacing:2.689902px;}
.ws1c{word-spacing:2.988780px;}
.wscb{word-spacing:3.021520px;}
.wscc{word-spacing:3.048556px;}
.wsd8{word-spacing:3.108331px;}
.wsa{word-spacing:3.281702px;}
.ws41{word-spacing:3.347434px;}
.ws3d{word-spacing:3.407209px;}
.wse8{word-spacing:3.526760px;}
.ws53{word-spacing:3.586536px;}
.ws54{word-spacing:3.945190px;}
.wsd7{word-spacing:4.004965px;}
.ws52{word-spacing:4.602721px;}
.ws39{word-spacing:4.662497px;}
.ws107{word-spacing:4.782048px;}
.ws70{word-spacing:4.782060px;}
.ws110{word-spacing:4.786423px;}
.wsea{word-spacing:4.841824px;}
.wsa5{word-spacing:4.895608px;}
.wsca{word-spacing:4.901599px;}
.wsc8{word-spacing:5.021150px;}
.ws100{word-spacing:5.200477px;}
.wsd6{word-spacing:5.379804px;}
.wsf0{word-spacing:5.439580px;}
.wsa9{word-spacing:5.540797px;}
.wsbd{word-spacing:5.541757px;}
.wsab{word-spacing:5.542717px;}
.ws9e{word-spacing:5.543437px;}
.ws74{word-spacing:5.544397px;}
.ws59{word-spacing:5.545117px;}
.ws65{word-spacing:5.546077px;}
.wsb9{word-spacing:5.547757px;}
.wsbc{word-spacing:5.547997px;}
.wsa2{word-spacing:5.548717px;}
.ws5a{word-spacing:5.549437px;}
.ws9d{word-spacing:5.549677px;}
.wsbe{word-spacing:5.550637px;}
.wsc5{word-spacing:5.551357px;}
.wsba{word-spacing:5.551597px;}
.wsbb{word-spacing:5.552317px;}
.wsa4{word-spacing:5.553037px;}
.wsc4{word-spacing:5.553997px;}
.wsb8{word-spacing:5.554237px;}
.ws23{word-spacing:5.559131px;}
.ws7c{word-spacing:5.738458px;}
.wsfe{word-spacing:5.858009px;}
.wsf4{word-spacing:5.928011px;}
.ws35{word-spacing:5.929754px;}
.ws34{word-spacing:5.963497px;}
.ws2{word-spacing:5.977560px;}
.ws51{word-spacing:5.978134px;}
.ws4f{word-spacing:5.979568px;}
.wsf6{word-spacing:6.216662px;}
.wsd2{word-spacing:6.276438px;}
.ws103{word-spacing:6.455765px;}
.wsc0{word-spacing:6.487117px;}
.wsc9{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws71{word-spacing:6.590797px;}
.wsac{word-spacing:6.692797px;}
.ws1d{word-spacing:6.694867px;}
.ws9a{word-spacing:6.697357px;}
.ws9c{word-spacing:6.698077px;}
.ws9b{word-spacing:6.698797px;}
.wsb0{word-spacing:6.699757px;}
.ws63{word-spacing:6.699997px;}
.ws69{word-spacing:6.700237px;}
.ws68{word-spacing:6.700717px;}
.ws80{word-spacing:6.701437px;}
.ws5c{word-spacing:6.702397px;}
.wsaf{word-spacing:6.703357px;}
.ws11{word-spacing:6.724800px;}
.wsd9{word-spacing:6.814418px;}
.ws8{word-spacing:6.939994px;}
.wsb2{word-spacing:7.113296px;}
.ws10f{word-spacing:7.268731px;}
.ws5d{word-spacing:7.277437px;}
.wsa8{word-spacing:7.280077px;}
.wsa3{word-spacing:7.280797px;}
.ws64{word-spacing:7.283437px;}
.wsc3{word-spacing:7.285117px;}
.wsae{word-spacing:7.285357px;}
.wsa6{word-spacing:7.286797px;}
.wsbf{word-spacing:7.287997px;}
.ws8c{word-spacing:7.403437px;}
.ws8e{word-spacing:7.405117px;}
.wsa0{word-spacing:7.406077px;}
.ws99{word-spacing:7.407757px;}
.ws60{word-spacing:7.409437px;}
.ws66{word-spacing:7.411117px;}
.wsdc{word-spacing:7.412174px;}
.ws10e{word-spacing:7.412193px;}
.ws15{word-spacing:7.591501px;}
.ws3f{word-spacing:7.711052px;}
.ws10c{word-spacing:7.794758px;}
.ws21{word-spacing:8.009930px;}
.ws112{word-spacing:8.081681px;}
.ws7a{word-spacing:8.129482px;}
.wse2{word-spacing:8.189257px;}
.ws32{word-spacing:8.249033px;}
.ws2b{word-spacing:8.308808px;}
.wsf9{word-spacing:8.368584px;}
.wsb4{word-spacing:8.428360px;}
.wsb1{word-spacing:8.787013px;}
.ws3c{word-spacing:9.026116px;}
.wsc{word-spacing:9.091930px;}
.ws4c{word-spacing:9.205442px;}
.ws10b{word-spacing:9.277196px;}
.wse6{word-spacing:9.324994px;}
.wsf7{word-spacing:9.384769px;}
.ws102{word-spacing:9.444545px;}
.wsee{word-spacing:9.504320px;}
.wsce{word-spacing:9.564096px;}
.ws116{word-spacing:9.611941px;}
.ws40{word-spacing:9.623872px;}
.ws1a{word-spacing:9.803198px;}
.ws101{word-spacing:10.341179px;}
.wse{word-spacing:10.436890px;}
.ws26{word-spacing:10.460730px;}
.ws7b{word-spacing:10.520506px;}
.wsb{word-spacing:10.544486px;}
.ws14{word-spacing:10.580281px;}
.wscd{word-spacing:10.640057px;}
.wsfa{word-spacing:10.819384px;}
.ws5b{word-spacing:10.918260px;}
.ws22{word-spacing:11.058486px;}
.wsdf{word-spacing:11.118262px;}
.ws9{word-spacing:11.136269px;}
.ws105{word-spacing:11.237813px;}
.ws5{word-spacing:11.243866px;}
.wse7{word-spacing:11.297588px;}
.ws58{word-spacing:11.417140px;}
.ws57{word-spacing:11.462134px;}
.ws55{word-spacing:11.476915px;}
.ws4b{word-spacing:11.536691px;}
.wsd1{word-spacing:11.656242px;}
.ws104{word-spacing:11.835569px;}
.wsf3{word-spacing:11.955120px;}
.ws1e{word-spacing:12.074671px;}
.wsfd{word-spacing:12.134447px;}
.ws18{word-spacing:12.194222px;}
.ws3e{word-spacing:12.612652px;}
.wsf1{word-spacing:12.851754px;}
.wse0{word-spacing:12.911530px;}
.ws27{word-spacing:13.389734px;}
.ws113{word-spacing:13.389768px;}
.wsb5{word-spacing:13.449510px;}
.wscf{word-spacing:13.569061px;}
.wsc6{word-spacing:13.628837px;}
.wsb6{word-spacing:13.688612px;}
.wsf8{word-spacing:13.927715px;}
.ws3b{word-spacing:13.987490px;}
.wsd{word-spacing:14.041382px;}
.ws29{word-spacing:14.047266px;}
.wsd3{word-spacing:14.107042px;}
.ws1f{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws79{word-spacing:14.525471px;}
.ws30{word-spacing:14.585246px;}
.ws7e{word-spacing:14.704798px;}
.ws16{word-spacing:14.764573px;}
.wseb{word-spacing:15.123227px;}
.wse3{word-spacing:15.183002px;}
.ws91{word-spacing:15.256606px;}
.ws85{word-spacing:15.263437px;}
.ws8a{word-spacing:15.266077px;}
.ws88{word-spacing:15.267757px;}
.wsde{word-spacing:15.362329px;}
.ws89{word-spacing:15.401234px;}
.ws90{word-spacing:15.443077px;}
.wse5{word-spacing:15.541656px;}
.ws45{word-spacing:15.661207px;}
.ws19{word-spacing:15.780758px;}
.ws20{word-spacing:15.900310px;}
.wsb3{word-spacing:16.019861px;}
.wsf2{word-spacing:16.199188px;}
.wsef{word-spacing:16.258963px;}
.wsd4{word-spacing:16.318739px;}
.ws6{word-spacing:16.623706px;}
.ws38{word-spacing:16.677392px;}
.ws111{word-spacing:16.689389px;}
.wse4{word-spacing:16.796944px;}
.ws43{word-spacing:16.916495px;}
.ws17{word-spacing:16.976270px;}
.wsec{word-spacing:17.095822px;}
.ws31{word-spacing:17.155597px;}
.ws10{word-spacing:17.161690px;}
.ws12{word-spacing:17.932680px;}
.wsc7{word-spacing:18.052231px;}
.wsed{word-spacing:18.171782px;}
.wsfc{word-spacing:18.351109px;}
.ws8f{word-spacing:18.878506px;}
.ws10a{word-spacing:19.008641px;}
.ws2c{word-spacing:19.068416px;}
.ws48{word-spacing:19.128192px;}
.ws7{word-spacing:19.528819px;}
.wsb7{word-spacing:19.536704px;}
.ws10d{word-spacing:19.702087px;}
.ws62{word-spacing:19.859437px;}
.ws28{word-spacing:19.965050px;}
.ws98{word-spacing:20.431664px;}
.ws7d{word-spacing:20.622582px;}
.ws4e{word-spacing:20.860784px;}
.ws42{word-spacing:20.861684px;}
.ws50{word-spacing:20.863424px;}
.wsfb{word-spacing:21.041011px;}
.ws115{word-spacing:21.519270px;}
.ws3a{word-spacing:22.654952px;}
.ws7f{word-spacing:25.063837px;}
.ws114{word-spacing:25.297097px;}
.ws8b{word-spacing:25.370077px;}
.ws86{word-spacing:25.371757px;}
.ws8d{word-spacing:25.373437px;}
.ws87{word-spacing:25.376077px;}
.ws82{word-spacing:25.688077px;}
.ws106{word-spacing:26.115926px;}
.ws56{word-spacing:26.341424px;}
.ws49{word-spacing:27.257674px;}
.ws47{word-spacing:30.534704px;}
.wsc2{word-spacing:30.656077px;}
.ws44{word-spacing:31.780784px;}
.ws4a{word-spacing:42.160544px;}
.ws94{word-spacing:47.700929px;}
.ws95{word-spacing:48.956216px;}
.ws81{word-spacing:55.761757px;}
.ws6b{word-spacing:58.122780px;}
.ws6e{word-spacing:58.202345px;}
.ws93{word-spacing:65.633609px;}
.ws92{word-spacing:65.669383px;}
.ws84{word-spacing:80.867437px;}
.ws96{word-spacing:95.939838px;}
.ws97{word-spacing:110.855744px;}
._10{margin-left:-267.890325px;}
._14{margin-left:-145.445417px;}
._12{margin-left:-127.964824px;}
._13{margin-left:-105.646697px;}
._11{margin-left:-87.347843px;}
._1d{margin-left:-15.392076px;}
._f{margin-left:-12.257436px;}
._0{margin-left:-10.042326px;}
._1{margin-left:-8.607708px;}
._6{margin-left:-7.298627px;}
._e{margin-left:-6.122400px;}
._a{margin-left:-4.722272px;}
._2{margin-left:-3.586545px;}
._7{margin-left:-2.535408px;}
._3{margin-left:-1.183561px;}
._18{width:1.007850px;}
._d{width:2.282800px;}
._5{width:3.294395px;}
._19{width:4.451850px;}
._4{width:5.490944px;}
._1a{width:8.685641px;}
._17{width:11.665105px;}
._1e{width:13.368635px;}
._8{width:15.709133px;}
._1f{width:18.817363px;}
._20{width:20.784886px;}
._b{width:22.236523px;}
._1c{width:25.105680px;}
._c{width:29.887800px;}
._9{width:30.903985px;}
._15{width:33.474420px;}
._16{width:34.503134px;}
._21{width:47.147828px;}
._1b{width:91.743595px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,76,0);}
.fc1{color:rgb(128,0,84);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:36.482160px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y5e{bottom:5.803980px;}
.y6b{bottom:11.607960px;}
.y67{bottom:13.266240px;}
.y6a{bottom:25.703340px;}
.y66{bottom:27.361620px;}
.y78{bottom:38.969580px;}
.y69{bottom:40.627860px;}
.y65{bottom:42.286140px;}
.y77{bottom:53.894100px;}
.y60{bottom:54.723240px;}
.y68{bottom:55.552380px;}
.y64{bottom:57.210660px;}
.y63{bottom:79.597440px;}
.y6c{bottom:92.863680px;}
.y62{bottom:93.692820px;}
.y61{bottom:111.933900px;}
.y33{bottom:113.332500px;}
.y73{bottom:113.592180px;}
.y79{bottom:116.079600px;}
.yce{bottom:117.552000px;}
.y5c{bottom:125.289000px;}
.y10b{bottom:128.470500px;}
.y32{bottom:131.265000px;}
.y104{bottom:131.266500px;}
.y7b{bottom:131.833260px;}
.yde{bottom:132.346500px;}
.y5b{bottom:137.244000px;}
.ycd{bottom:141.181500px;}
.y71{bottom:142.612080px;}
.y10a{bottom:146.403000px;}
.y31{bottom:149.199000px;}
.y7d{bottom:151.732620px;}
.y70{bottom:156.707460px;}
.yfa{bottom:157.032000px;}
.ydd{bottom:157.558500px;}
.ycc{bottom:159.114000px;}
.y5a{bottom:161.154000px;}
.y7c{bottom:161.682300px;}
.y109{bottom:164.335500px;}
.y30{bottom:167.131500px;}
.y6f{bottom:170.802840px;}
.y76{bottom:172.461120px;}
.y59{bottom:173.109000px;}
.ydc{bottom:175.491000px;}
.ycb{bottom:177.048000px;}
.y108{bottom:182.268000px;}
.y2f{bottom:185.064000px;}
.y6e{bottom:185.727360px;}
.y7a{bottom:186.556500px;}
.y75{bottom:187.385640px;}
.yf9{bottom:189.480000px;}
.ydb{bottom:193.423500px;}
.y58{bottom:194.053500px;}
.yca{bottom:194.980500px;}
.y97{bottom:197.019000px;}
.y107{bottom:200.202000px;}
.y6d{bottom:200.651880px;}
.y74{bottom:202.310160px;}
.y2e{bottom:202.996500px;}
.y72{bottom:203.139300px;}
.yf8{bottom:207.412500px;}
.y96{bottom:208.974000px;}
.yda{bottom:211.356000px;}
.y57{bottom:211.986000px;}
.yc9{bottom:212.913000px;}
.y106{bottom:218.134500px;}
.y95{bottom:220.929000px;}
.y2d{bottom:221.119500px;}
.yf7{bottom:225.345000px;}
.y56{bottom:229.920000px;}
.yc8{bottom:230.416500px;}
.y94{bottom:232.885500px;}
.yd9{bottom:233.865000px;}
.y103{bottom:236.067000px;}
.y2c{bottom:239.052000px;}
.yf6{bottom:243.277500px;}
.yec{bottom:243.799500px;}
.y93{bottom:244.840500px;}
.y55{bottom:247.852500px;}
.yc7{bottom:248.350500px;}
.y102{bottom:253.999500px;}
.y92{bottom:256.795500px;}
.y2b{bottom:256.984500px;}
.yd8{bottom:261.093000px;}
.yf5{bottom:261.210000px;}
.yeb{bottom:261.732000px;}
.y54{bottom:265.785000px;}
.yc6{bottom:266.283000px;}
.y91{bottom:268.750500px;}
.y101{bottom:271.932000px;}
.y2a{bottom:274.918500px;}
.yd7{bottom:279.025500px;}
.yf4{bottom:279.144000px;}
.yea{bottom:279.664500px;}
.y90{bottom:280.705500px;}
.y53{bottom:283.717500px;}
.yc5{bottom:284.215500px;}
.y105{bottom:289.864500px;}
.y100{bottom:289.866000px;}
.y8f{bottom:292.660500px;}
.y29{bottom:292.851000px;}
.yd6{bottom:296.958000px;}
.yf3{bottom:297.076500px;}
.ye9{bottom:297.597000px;}
.yb6{bottom:301.765500px;}
.yc4{bottom:302.148000px;}
.y8e{bottom:304.615500px;}
.y52{bottom:306.396000px;}
.yff{bottom:307.798500px;}
.y28{bottom:310.783500px;}
.yd5{bottom:314.890500px;}
.yf2{bottom:315.009000px;}
.ye8{bottom:315.529500px;}
.y8d{bottom:316.570500px;}
.yb5{bottom:319.699500px;}
.yfe{bottom:325.731000px;}
.yc3{bottom:326.713500px;}
.y8c{bottom:328.525500px;}
.y27{bottom:328.716000px;}
.yd4{bottom:332.823000px;}
.yf1{bottom:332.941500px;}
.ye7{bottom:333.463500px;}
.y51{bottom:334.506000px;}
.yb4{bottom:337.632000px;}
.yc2{bottom:338.668500px;}
.y8b{bottom:340.482000px;}
.yfd{bottom:343.663500px;}
.y26{bottom:346.839000px;}
.yc1{bottom:350.625000px;}
.yd3{bottom:350.755500px;}
.yf0{bottom:350.874000px;}
.ye6{bottom:351.396000px;}
.y50{bottom:352.440000px;}
.yb3{bottom:355.564500px;}
.y8a{bottom:361.173000px;}
.yc0{bottom:362.580000px;}
.y25{bottom:364.771500px;}
.yd2{bottom:368.689500px;}
.yef{bottom:368.808000px;}
.ye5{bottom:369.328500px;}
.y4f{bottom:370.372500px;}
.yb2{bottom:373.497000px;}
.ybf{bottom:374.535000px;}
.y89{bottom:379.105500px;}
.y24{bottom:382.704000px;}
.ybe{bottom:386.490000px;}
.yd1{bottom:386.622000px;}
.yee{bottom:386.740500px;}
.ye4{bottom:387.261000px;}
.y4e{bottom:388.305000px;}
.yb1{bottom:391.429500px;}
.yfc{bottom:391.980000px;}
.y88{bottom:397.038000px;}
.ybd{bottom:398.445000px;}
.y23{bottom:400.638000px;}
.yd0{bottom:404.422500px;}
.yed{bottom:404.673000px;}
.ye3{bottom:405.193500px;}
.y4d{bottom:406.237500px;}
.yb0{bottom:409.362000px;}
.ybc{bottom:410.400000px;}
.y87{bottom:414.970500px;}
.y22{bottom:418.570500px;}
.ybb{bottom:422.355000px;}
.ye2{bottom:423.126000px;}
.y4c{bottom:424.170000px;}
.yaf{bottom:427.296000px;}
.y86{bottom:432.904500px;}
.yba{bottom:434.310000px;}
.y21{bottom:436.503000px;}
.ycf{bottom:440.287500px;}
.ye1{bottom:441.060000px;}
.y4b{bottom:442.102500px;}
.yb9{bottom:446.265000px;}
.y85{bottom:450.837000px;}
.yae{bottom:454.396500px;}
.y20{bottom:454.435500px;}
.yb8{bottom:458.221500px;}
.ye0{bottom:458.992500px;}
.y4a{bottom:460.036500px;}
.yad{bottom:466.351500px;}
.y84{bottom:468.769500px;}
.y1f{bottom:472.368000px;}
.y49{bottom:477.969000px;}
.yac{bottom:478.306500px;}
.y83{bottom:486.702000px;}
.yab{bottom:490.261500px;}
.y1e{bottom:490.300500px;}
.y48{bottom:500.646000px;}
.yaa{bottom:502.216500px;}
.y82{bottom:504.634500px;}
.yb7{bottom:506.538000px;}
.ydf{bottom:507.309000px;}
.y1d{bottom:508.234500px;}
.y1c{bottom:526.167000px;}
.y47{bottom:528.757500px;}
.ya9{bottom:532.383000px;}
.y81{bottom:536.536500px;}
.y1b{bottom:544.099500px;}
.ya8{bottom:544.338000px;}
.y46{bottom:546.690000px;}
.ya7{bottom:556.293000px;}
.y1a{bottom:562.032000px;}
.y45{bottom:564.622500px;}
.ya6{bottom:568.248000px;}
.y19{bottom:579.964500px;}
.ya5{bottom:580.204500px;}
.y44{bottom:582.556500px;}
.ya4{bottom:592.159500px;}
.y18{bottom:597.898500px;}
.y43{bottom:600.489000px;}
.ya3{bottom:604.114500px;}
.y17{bottom:615.831000px;}
.ya2{bottom:616.069500px;}
.y42{bottom:618.421500px;}
.ya1{bottom:628.024500px;}
.y16{bottom:633.763500px;}
.y41{bottom:636.354000px;}
.ya0{bottom:639.979500px;}
.y15{bottom:651.696000px;}
.y9f{bottom:651.934500px;}
.y40{bottom:654.297000px;}
.y9e{bottom:663.889500px;}
.y3f{bottom:672.231000px;}
.y14{bottom:675.477000px;}
.y9d{bottom:675.844500px;}
.y3e{bottom:690.163500px;}
.y9c{bottom:696.906000px;}
.y123{bottom:702.648000px;}
.y13{bottom:705.114000px;}
.yfb{bottom:705.715500px;}
.y3d{bottom:708.096000px;}
.y9b{bottom:714.838500px;}
.y122{bottom:716.098500px;}
.y12{bottom:720.058500px;}
.y3c{bottom:726.028500px;}
.y121{bottom:729.547500px;}
.y9a{bottom:732.771000px;}
.y11{bottom:735.001500px;}
.y120{bottom:742.996500px;}
.y3b{bottom:743.961000px;}
.y10{bottom:749.946000px;}
.y99{bottom:750.703500px;}
.y11f{bottom:756.447000px;}
.yf{bottom:764.889000px;}
.y3a{bottom:766.666500px;}
.y98{bottom:768.637500px;}
.y11e{bottom:769.896000px;}
.y80{bottom:774.615000px;}
.ye{bottom:779.833500px;}
.y11d{bottom:783.346500px;}
.y39{bottom:784.599000px;}
.y7f{bottom:786.570000px;}
.yd{bottom:794.778000px;}
.y11c{bottom:796.795500px;}
.yc{bottom:809.721000px;}
.y11b{bottom:810.244500px;}
.y38{bottom:812.710500px;}
.y11a{bottom:823.695000px;}
.yb{bottom:824.665500px;}
.y37{bottom:830.643000px;}
.y7e{bottom:834.886500px;}
.y119{bottom:837.144000px;}
.ya{bottom:839.610000px;}
.y36{bottom:848.575500px;}
.y118{bottom:850.593000px;}
.y9{bottom:854.553000px;}
.y35{bottom:866.508000px;}
.y5f{bottom:867.589980px;}
.y8{bottom:869.497500px;}
.y117{bottom:872.785500px;}
.y34{bottom:884.440500px;}
.y7{bottom:884.442000px;}
.y116{bottom:900.805500px;}
.y115{bottom:918.738000px;}
.y114{bottom:936.670500px;}
.y113{bottom:959.311500px;}
.y6{bottom:959.884500px;}
.y5{bottom:978.378000px;}
.y112{bottom:987.330000px;}
.y4{bottom:996.870000px;}
.y111{bottom:1005.264000px;}
.y3{bottom:1015.363500px;}
.y110{bottom:1023.196500px;}
.y2{bottom:1034.079000px;}
.y10f{bottom:1041.129000px;}
.y10e{bottom:1059.061500px;}
.y10d{bottom:1076.994000px;}
.y1{bottom:1081.152000px;}
.y5d{bottom:1089.799500px;}
.y10c{bottom:1099.635000px;}
.hd{height:18.241080px;}
.h14{height:24.675533px;}
.h12{height:26.109907px;}
.ha{height:28.787846px;}
.hc{height:28.955218px;}
.hb{height:31.382100px;}
.h11{height:32.900573px;}
.h16{height:33.140573px;}
.h7{height:37.228493px;}
.h6{height:37.605082px;}
.he{height:38.049753px;}
.h8{height:41.006062px;}
.h5{height:41.125613px;}
.h9{height:41.364715px;}
.h4{height:41.425613px;}
.h3{height:45.238339px;}
.h2{height:45.568339px;}
.h15{height:50.477846px;}
.h13{height:50.483846px;}
.h10{height:61.265673px;}
.h1{height:98.701718px;}
.hf{height:221.380380px;}
.h0{height:1188.000000px;}
.w2{width:606.101340px;}
.w1{width:608.588760px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:9.949680px;}
.x1f{left:14.095380px;}
.x19{left:23.215920px;}
.x26{left:48.919260px;}
.x10{left:73.446000px;}
.x3c{left:74.842500px;}
.x34{left:85.999500px;}
.xf{left:88.390500px;}
.x6{left:94.156500px;}
.x35{left:98.551500px;}
.x1e{left:102.813360px;}
.x1d{left:107.788200px;}
.x32{left:111.105000px;}
.x45{left:117.843000px;}
.x1c{left:121.054440px;}
.x36{left:123.658500px;}
.x1{left:131.262000px;}
.x4{left:147.445500px;}
.x18{left:152.086200px;}
.x28{left:160.024020px;}
.x33{left:163.797000px;}
.x44{left:182.572500px;}
.x1b{left:188.214780px;}
.x2{left:190.981500px;}
.x27{left:192.360480px;}
.x7{left:195.102000px;}
.x42{left:196.570500px;}
.x41{left:201.568500px;}
.x11{left:203.428500px;}
.x43{left:219.897000px;}
.x5{left:257.746500px;}
.x30{left:268.641360px;}
.x3{left:272.236500px;}
.x2e{left:277.761900px;}
.x3b{left:281.209500px;}
.x40{left:283.846500px;}
.x2f{left:303.465240px;}
.x25{left:310.098360px;}
.x31{left:322.879500px;}
.x23{left:331.656000px;}
.x24{left:335.801700px;}
.x3f{left:377.071500px;}
.x3d{left:392.691000px;}
.x9{left:406.210500px;}
.x1a{left:431.152800px;}
.x8{left:437.271000px;}
.x2d{left:441.102480px;}
.x22{left:447.735600px;}
.xb{left:453.268500px;}
.x2b{left:464.318400px;}
.x13{left:467.967000px;}
.x21{left:469.293240px;}
.x14{left:475.725000px;}
.x16{left:480.519000px;}
.x12{left:482.910000px;}
.x3a{left:486.796500px;}
.x2c{left:490.850880px;}
.x17{left:494.004000px;}
.x2a{left:502.458840px;}
.xa{left:516.511500px;}
.x39{left:518.178000px;}
.x29{left:526.503900px;}
.x37{left:530.731500px;}
.x38{left:555.838500px;}
.x3e{left:579.412500px;}
.xe{left:611.686500px;}
.xd{left:619.233000px;}
.x15{left:630.004500px;}
.xc{left:666.034500px;}
@media print{
.v3{vertical-align:-44.220800pt;}
.v2{vertical-align:-20.636373pt;}
.v5{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.285333pt;}
.v1{vertical-align:20.636373pt;}
.ls33{letter-spacing:-0.001091pt;}
.ls29{letter-spacing:-0.000855pt;}
.ls32{letter-spacing:-0.000590pt;}
.ls3f{letter-spacing:-0.000265pt;}
.ls30{letter-spacing:-0.000177pt;}
.ls3d{letter-spacing:-0.000088pt;}
.lsc{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000206pt;}
.ls34{letter-spacing:0.000236pt;}
.ls2c{letter-spacing:0.000472pt;}
.ls38{letter-spacing:0.001150pt;}
.ls3a{letter-spacing:0.001238pt;}
.ls2a{letter-spacing:0.001327pt;}
.lsd{letter-spacing:0.001680pt;}
.ls37{letter-spacing:0.001739pt;}
.lsf{letter-spacing:0.001769pt;}
.ls2f{letter-spacing:0.001798pt;}
.ls2d{letter-spacing:0.002182pt;}
.ls35{letter-spacing:0.002211pt;}
.ls28{letter-spacing:0.002565pt;}
.ls3b{letter-spacing:0.002594pt;}
.ls26{letter-spacing:0.002712pt;}
.ls2e{letter-spacing:0.002889pt;}
.ls3e{letter-spacing:0.003125pt;}
.ls2b{letter-spacing:0.003213pt;}
.ls11{letter-spacing:0.003567pt;}
.lse{letter-spacing:0.003597pt;}
.ls36{letter-spacing:0.003685pt;}
.ls12{letter-spacing:0.003715pt;}
.ls39{letter-spacing:0.004245pt;}
.ls3c{letter-spacing:0.006132pt;}
.ls27{letter-spacing:0.006751pt;}
.ls17{letter-spacing:0.549835pt;}
.ls13{letter-spacing:0.665476pt;}
.lsa{letter-spacing:0.670810pt;}
.ls1c{letter-spacing:0.688501pt;}
.ls45{letter-spacing:0.741348pt;}
.ls14{letter-spacing:1.748099pt;}
.ls0{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.654903pt;}
.ls3{letter-spacing:2.655207pt;}
.ls46{letter-spacing:2.655711pt;}
.ls42{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.656693pt;}
.ls43{letter-spacing:2.657067pt;}
.ls7{letter-spacing:3.310230pt;}
.ls22{letter-spacing:4.846878pt;}
.ls21{letter-spacing:4.851840pt;}
.lsb{letter-spacing:4.963840pt;}
.ls15{letter-spacing:4.963865pt;}
.ls4{letter-spacing:4.969198pt;}
.ls25{letter-spacing:5.802202pt;}
.ls6{letter-spacing:5.985513pt;}
.ls5{letter-spacing:5.987840pt;}
.ls1f{letter-spacing:5.990846pt;}
.ls18{letter-spacing:6.504267pt;}
.ls9{letter-spacing:6.509600pt;}
.ls23{letter-spacing:6.510507pt;}
.ls24{letter-spacing:9.930691pt;}
.ls19{letter-spacing:17.957835pt;}
.ls44{letter-spacing:18.715200pt;}
.ls1e{letter-spacing:21.675200pt;}
.ls1a{letter-spacing:22.593253pt;}
.ls40{letter-spacing:27.278531pt;}
.ls41{letter-spacing:27.283865pt;}
.ls1d{letter-spacing:27.553253pt;}
.ls1b{letter-spacing:27.558586pt;}
.ls16{letter-spacing:28.300179pt;}
.ls8{letter-spacing:28.305513pt;}
.ls20{letter-spacing:28.824267pt;}
.ls10{letter-spacing:131.839893pt;}
.ws5f{word-spacing:-42.359791pt;}
.ws9f{word-spacing:-19.229091pt;}
.wsc1{word-spacing:-15.100602pt;}
.ws3{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.ws73{word-spacing:-11.046499pt;}
.ws37{word-spacing:-10.626800pt;}
.ws83{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-9.018862pt;}
.ws6d{word-spacing:-9.016916pt;}
.ws6c{word-spacing:-9.015059pt;}
.ws72{word-spacing:-3.421811pt;}
.ws67{word-spacing:-3.312916pt;}
.wsad{word-spacing:-3.289275pt;}
.wsa1{word-spacing:-2.786873pt;}
.ws61{word-spacing:-2.677939pt;}
.ws33{word-spacing:-2.657472pt;}
.wse9{word-spacing:-1.062677pt;}
.ws2f{word-spacing:-0.797008pt;}
.wsf{word-spacing:-0.669491pt;}
.wsd0{word-spacing:-0.637606pt;}
.ws1b{word-spacing:-0.531339pt;}
.wsd5{word-spacing:-0.318803pt;}
.ws75{word-spacing:-0.220489pt;}
.ws76{word-spacing:-0.212535pt;}
.ws46{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.037194pt;}
.ws6a{word-spacing:0.000000pt;}
.ws36{word-spacing:0.009645pt;}
.ws24{word-spacing:0.106268pt;}
.ws108{word-spacing:0.425071pt;}
.ws2e{word-spacing:0.531339pt;}
.ws78{word-spacing:0.584473pt;}
.wsa7{word-spacing:0.632291pt;}
.ws2a{word-spacing:0.690740pt;}
.ws109{word-spacing:0.743874pt;}
.wsdb{word-spacing:0.850142pt;}
.wsff{word-spacing:1.222079pt;}
.ws77{word-spacing:1.487748pt;}
.wsda{word-spacing:1.594016pt;}
.wsaa{word-spacing:1.673712pt;}
.wsdd{word-spacing:1.700284pt;}
.wse1{word-spacing:1.806551pt;}
.wsf5{word-spacing:1.965953pt;}
.ws4d{word-spacing:2.178489pt;}
.ws2d{word-spacing:2.284756pt;}
.ws25{word-spacing:2.391024pt;}
.ws1c{word-spacing:2.656693pt;}
.wscb{word-spacing:2.685795pt;}
.wscc{word-spacing:2.709827pt;}
.wsd8{word-spacing:2.762961pt;}
.wsa{word-spacing:2.917069pt;}
.ws41{word-spacing:2.975497pt;}
.ws3d{word-spacing:3.028630pt;}
.wse8{word-spacing:3.134898pt;}
.ws53{word-spacing:3.188032pt;}
.ws54{word-spacing:3.506835pt;}
.wsd7{word-spacing:3.559969pt;}
.ws52{word-spacing:4.091308pt;}
.ws39{word-spacing:4.144442pt;}
.ws107{word-spacing:4.250709pt;}
.ws70{word-spacing:4.250720pt;}
.ws110{word-spacing:4.254598pt;}
.wsea{word-spacing:4.303843pt;}
.wsa5{word-spacing:4.351651pt;}
.wsca{word-spacing:4.356977pt;}
.wsc8{word-spacing:4.463245pt;}
.ws100{word-spacing:4.622646pt;}
.wsd6{word-spacing:4.782048pt;}
.wsf0{word-spacing:4.835182pt;}
.wsa9{word-spacing:4.925153pt;}
.wsbd{word-spacing:4.926006pt;}
.wsab{word-spacing:4.926860pt;}
.ws9e{word-spacing:4.927500pt;}
.ws74{word-spacing:4.928353pt;}
.ws59{word-spacing:4.928993pt;}
.ws65{word-spacing:4.929846pt;}
.wsb9{word-spacing:4.931340pt;}
.wsbc{word-spacing:4.931553pt;}
.wsa2{word-spacing:4.932193pt;}
.ws5a{word-spacing:4.932833pt;}
.ws9d{word-spacing:4.933046pt;}
.wsbe{word-spacing:4.933900pt;}
.wsc5{word-spacing:4.934540pt;}
.wsba{word-spacing:4.934753pt;}
.wsbb{word-spacing:4.935393pt;}
.wsa4{word-spacing:4.936033pt;}
.wsc4{word-spacing:4.936886pt;}
.wsb8{word-spacing:4.937100pt;}
.ws23{word-spacing:4.941450pt;}
.ws7c{word-spacing:5.100851pt;}
.wsfe{word-spacing:5.207119pt;}
.wsf4{word-spacing:5.269343pt;}
.ws35{word-spacing:5.270893pt;}
.ws34{word-spacing:5.300886pt;}
.ws2{word-spacing:5.313387pt;}
.ws51{word-spacing:5.313897pt;}
.ws4f{word-spacing:5.315171pt;}
.wsf6{word-spacing:5.525922pt;}
.wsd2{word-spacing:5.579056pt;}
.ws103{word-spacing:5.738458pt;}
.wsc0{word-spacing:5.766326pt;}
.wsc9{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws71{word-spacing:5.858486pt;}
.wsac{word-spacing:5.949153pt;}
.ws1d{word-spacing:5.950993pt;}
.ws9a{word-spacing:5.953206pt;}
.ws9c{word-spacing:5.953846pt;}
.ws9b{word-spacing:5.954486pt;}
.wsb0{word-spacing:5.955340pt;}
.ws63{word-spacing:5.955553pt;}
.ws69{word-spacing:5.955766pt;}
.ws68{word-spacing:5.956193pt;}
.ws80{word-spacing:5.956833pt;}
.ws5c{word-spacing:5.957686pt;}
.wsaf{word-spacing:5.958540pt;}
.ws11{word-spacing:5.977600pt;}
.wsd9{word-spacing:6.057261pt;}
.ws8{word-spacing:6.168883pt;}
.wsb2{word-spacing:6.322930pt;}
.ws10f{word-spacing:6.461094pt;}
.ws5d{word-spacing:6.468833pt;}
.wsa8{word-spacing:6.471180pt;}
.wsa3{word-spacing:6.471820pt;}
.ws64{word-spacing:6.474166pt;}
.wsc3{word-spacing:6.475660pt;}
.wsae{word-spacing:6.475873pt;}
.wsa6{word-spacing:6.477153pt;}
.wsbf{word-spacing:6.478220pt;}
.ws8c{word-spacing:6.580833pt;}
.ws8e{word-spacing:6.582326pt;}
.wsa0{word-spacing:6.583180pt;}
.ws99{word-spacing:6.584673pt;}
.ws60{word-spacing:6.586166pt;}
.ws66{word-spacing:6.587660pt;}
.wsdc{word-spacing:6.588599pt;}
.ws10e{word-spacing:6.588616pt;}
.ws15{word-spacing:6.748001pt;}
.ws3f{word-spacing:6.854269pt;}
.ws10c{word-spacing:6.928674pt;}
.ws21{word-spacing:7.119938pt;}
.ws112{word-spacing:7.183717pt;}
.ws7a{word-spacing:7.226206pt;}
.wse2{word-spacing:7.279340pt;}
.ws32{word-spacing:7.332474pt;}
.ws2b{word-spacing:7.385607pt;}
.wsf9{word-spacing:7.438741pt;}
.wsb4{word-spacing:7.491875pt;}
.wsb1{word-spacing:7.810678pt;}
.ws3c{word-spacing:8.023214pt;}
.wsc{word-spacing:8.081715pt;}
.ws4c{word-spacing:8.182615pt;}
.ws10b{word-spacing:8.246397pt;}
.wse6{word-spacing:8.288883pt;}
.wsf7{word-spacing:8.342017pt;}
.ws102{word-spacing:8.395151pt;}
.wsee{word-spacing:8.448285pt;}
.wsce{word-spacing:8.501419pt;}
.ws116{word-spacing:8.543947pt;}
.ws40{word-spacing:8.554553pt;}
.ws1a{word-spacing:8.713954pt;}
.ws101{word-spacing:9.192159pt;}
.wse{word-spacing:9.277235pt;}
.ws26{word-spacing:9.298427pt;}
.ws7b{word-spacing:9.351561pt;}
.wsb{word-spacing:9.372877pt;}
.ws14{word-spacing:9.404694pt;}
.wscd{word-spacing:9.457828pt;}
.wsfa{word-spacing:9.617230pt;}
.ws5b{word-spacing:9.705120pt;}
.ws22{word-spacing:9.829765pt;}
.wsdf{word-spacing:9.882899pt;}
.ws9{word-spacing:9.898906pt;}
.ws105{word-spacing:9.989167pt;}
.ws5{word-spacing:9.994547pt;}
.wse7{word-spacing:10.042301pt;}
.ws58{word-spacing:10.148569pt;}
.ws57{word-spacing:10.188563pt;}
.ws55{word-spacing:10.201702pt;}
.ws4b{word-spacing:10.254836pt;}
.wsd1{word-spacing:10.361104pt;}
.ws104{word-spacing:10.520506pt;}
.wsf3{word-spacing:10.626773pt;}
.ws1e{word-spacing:10.733041pt;}
.wsfd{word-spacing:10.786175pt;}
.ws18{word-spacing:10.839309pt;}
.ws3e{word-spacing:11.211246pt;}
.wsf1{word-spacing:11.423781pt;}
.wse0{word-spacing:11.476915pt;}
.ws27{word-spacing:11.901986pt;}
.ws113{word-spacing:11.902016pt;}
.wsb5{word-spacing:11.955120pt;}
.wscf{word-spacing:12.061388pt;}
.wsc6{word-spacing:12.114522pt;}
.wsb6{word-spacing:12.167655pt;}
.wsf8{word-spacing:12.380191pt;}
.ws3b{word-spacing:12.433325pt;}
.wsd{word-spacing:12.481229pt;}
.ws29{word-spacing:12.486459pt;}
.wsd3{word-spacing:12.539593pt;}
.ws1f{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws79{word-spacing:12.911530pt;}
.ws30{word-spacing:12.964663pt;}
.ws7e{word-spacing:13.070931pt;}
.ws16{word-spacing:13.124065pt;}
.wseb{word-spacing:13.442868pt;}
.wse3{word-spacing:13.496002pt;}
.ws91{word-spacing:13.561427pt;}
.ws85{word-spacing:13.567500pt;}
.ws8a{word-spacing:13.569846pt;}
.ws88{word-spacing:13.571340pt;}
.wsde{word-spacing:13.655404pt;}
.ws89{word-spacing:13.689986pt;}
.ws90{word-spacing:13.727180pt;}
.wse5{word-spacing:13.814805pt;}
.ws45{word-spacing:13.921073pt;}
.ws19{word-spacing:14.027341pt;}
.ws20{word-spacing:14.133609pt;}
.wsb3{word-spacing:14.239876pt;}
.wsf2{word-spacing:14.399278pt;}
.wsef{word-spacing:14.452412pt;}
.wsd4{word-spacing:14.505546pt;}
.ws6{word-spacing:14.776627pt;}
.ws38{word-spacing:14.824349pt;}
.ws111{word-spacing:14.835013pt;}
.wse4{word-spacing:14.930617pt;}
.ws43{word-spacing:15.036884pt;}
.ws17{word-spacing:15.090018pt;}
.wsec{word-spacing:15.196286pt;}
.ws31{word-spacing:15.249420pt;}
.ws10{word-spacing:15.254835pt;}
.ws12{word-spacing:15.940160pt;}
.wsc7{word-spacing:16.046428pt;}
.wsed{word-spacing:16.152695pt;}
.wsfc{word-spacing:16.312097pt;}
.ws8f{word-spacing:16.780894pt;}
.ws10a{word-spacing:16.896570pt;}
.ws2c{word-spacing:16.949703pt;}
.ws48{word-spacing:17.002837pt;}
.ws7{word-spacing:17.358950pt;}
.wsb7{word-spacing:17.365959pt;}
.ws10d{word-spacing:17.512966pt;}
.ws62{word-spacing:17.652833pt;}
.ws28{word-spacing:17.746711pt;}
.ws98{word-spacing:18.161479pt;}
.ws7d{word-spacing:18.331184pt;}
.ws4e{word-spacing:18.542919pt;}
.ws42{word-spacing:18.543719pt;}
.ws50{word-spacing:18.545266pt;}
.wsfb{word-spacing:18.703121pt;}
.ws115{word-spacing:19.128240pt;}
.ws3a{word-spacing:20.137735pt;}
.ws7f{word-spacing:22.278966pt;}
.ws114{word-spacing:22.486309pt;}
.ws8b{word-spacing:22.551180pt;}
.ws86{word-spacing:22.552673pt;}
.ws8d{word-spacing:22.554166pt;}
.ws87{word-spacing:22.556513pt;}
.ws82{word-spacing:22.833846pt;}
.ws106{word-spacing:23.214157pt;}
.ws56{word-spacing:23.414599pt;}
.ws49{word-spacing:24.229043pt;}
.ws47{word-spacing:27.141959pt;}
.wsc2{word-spacing:27.249846pt;}
.ws44{word-spacing:28.249586pt;}
.ws4a{word-spacing:37.476039pt;}
.ws94{word-spacing:42.400826pt;}
.ws95{word-spacing:43.516637pt;}
.ws81{word-spacing:49.566006pt;}
.ws6b{word-spacing:51.664694pt;}
.ws6e{word-spacing:51.735417pt;}
.ws93{word-spacing:58.340986pt;}
.ws92{word-spacing:58.372785pt;}
.ws84{word-spacing:71.882166pt;}
.ws96{word-spacing:85.279856pt;}
.ws97{word-spacing:98.538439pt;}
._10{margin-left:-238.124733pt;}
._14{margin-left:-129.284815pt;}
._12{margin-left:-113.746511pt;}
._13{margin-left:-93.908175pt;}
._11{margin-left:-77.642527pt;}
._1d{margin-left:-13.681845pt;}
._f{margin-left:-10.895499pt;}
._0{margin-left:-8.926512pt;}
._1{margin-left:-7.651296pt;}
._6{margin-left:-6.487669pt;}
._e{margin-left:-5.442133pt;}
._a{margin-left:-4.197575pt;}
._2{margin-left:-3.188040pt;}
._7{margin-left:-2.253696pt;}
._3{margin-left:-1.052054pt;}
._18{width:0.895867pt;}
._d{width:2.029156pt;}
._5{width:2.928351pt;}
._19{width:3.957200pt;}
._4{width:4.880839pt;}
._1a{width:7.720569pt;}
._17{width:10.368982pt;}
._1e{width:11.883231pt;}
._8{width:13.963674pt;}
._1f{width:16.726545pt;}
._20{width:18.475454pt;}
._b{width:19.765798pt;}
._1c{width:22.316160pt;}
._c{width:26.566933pt;}
._9{width:27.470209pt;}
._15{width:29.755040pt;}
._16{width:30.669453pt;}
._21{width:41.909180pt;}
._1b{width:81.549862pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:32.428587pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:5.159093pt;}
.y6b{bottom:10.318187pt;}
.y67{bottom:11.792213pt;}
.y6a{bottom:22.847413pt;}
.y66{bottom:24.321440pt;}
.y78{bottom:34.639627pt;}
.y69{bottom:36.113653pt;}
.y65{bottom:37.587680pt;}
.y77{bottom:47.905867pt;}
.y60{bottom:48.642880pt;}
.y68{bottom:49.379893pt;}
.y64{bottom:50.853920pt;}
.y63{bottom:70.753280pt;}
.y6c{bottom:82.545493pt;}
.y62{bottom:83.282507pt;}
.y61{bottom:99.496800pt;}
.y33{bottom:100.740000pt;}
.y73{bottom:100.970827pt;}
.y79{bottom:103.181867pt;}
.yce{bottom:104.490667pt;}
.y5c{bottom:111.368000pt;}
.y10b{bottom:114.196000pt;}
.y32{bottom:116.680000pt;}
.y104{bottom:116.681333pt;}
.y7b{bottom:117.185120pt;}
.yde{bottom:117.641333pt;}
.y5b{bottom:121.994667pt;}
.ycd{bottom:125.494667pt;}
.y71{bottom:126.766293pt;}
.y10a{bottom:130.136000pt;}
.y31{bottom:132.621333pt;}
.y7d{bottom:134.873440pt;}
.y70{bottom:139.295520pt;}
.yfa{bottom:139.584000pt;}
.ydd{bottom:140.052000pt;}
.ycc{bottom:141.434667pt;}
.y5a{bottom:143.248000pt;}
.y7c{bottom:143.717600pt;}
.y109{bottom:146.076000pt;}
.y30{bottom:148.561333pt;}
.y6f{bottom:151.824747pt;}
.y76{bottom:153.298773pt;}
.y59{bottom:153.874667pt;}
.ydc{bottom:155.992000pt;}
.ycb{bottom:157.376000pt;}
.y108{bottom:162.016000pt;}
.y2f{bottom:164.501333pt;}
.y6e{bottom:165.090987pt;}
.y7a{bottom:165.828000pt;}
.y75{bottom:166.565013pt;}
.yf9{bottom:168.426667pt;}
.ydb{bottom:171.932000pt;}
.y58{bottom:172.492000pt;}
.yca{bottom:173.316000pt;}
.y97{bottom:175.128000pt;}
.y107{bottom:177.957333pt;}
.y6d{bottom:178.357227pt;}
.y74{bottom:179.831253pt;}
.y2e{bottom:180.441333pt;}
.y72{bottom:180.568267pt;}
.yf8{bottom:184.366667pt;}
.y96{bottom:185.754667pt;}
.yda{bottom:187.872000pt;}
.y57{bottom:188.432000pt;}
.yc9{bottom:189.256000pt;}
.y106{bottom:193.897333pt;}
.y95{bottom:196.381333pt;}
.y2d{bottom:196.550667pt;}
.yf7{bottom:200.306667pt;}
.y56{bottom:204.373333pt;}
.yc8{bottom:204.814667pt;}
.y94{bottom:207.009333pt;}
.yd9{bottom:207.880000pt;}
.y103{bottom:209.837333pt;}
.y2c{bottom:212.490667pt;}
.yf6{bottom:216.246667pt;}
.yec{bottom:216.710667pt;}
.y93{bottom:217.636000pt;}
.y55{bottom:220.313333pt;}
.yc7{bottom:220.756000pt;}
.y102{bottom:225.777333pt;}
.y92{bottom:228.262667pt;}
.y2b{bottom:228.430667pt;}
.yd8{bottom:232.082667pt;}
.yf5{bottom:232.186667pt;}
.yeb{bottom:232.650667pt;}
.y54{bottom:236.253333pt;}
.yc6{bottom:236.696000pt;}
.y91{bottom:238.889333pt;}
.y101{bottom:241.717333pt;}
.y2a{bottom:244.372000pt;}
.yd7{bottom:248.022667pt;}
.yf4{bottom:248.128000pt;}
.yea{bottom:248.590667pt;}
.y90{bottom:249.516000pt;}
.y53{bottom:252.193333pt;}
.yc5{bottom:252.636000pt;}
.y105{bottom:257.657333pt;}
.y100{bottom:257.658667pt;}
.y8f{bottom:260.142667pt;}
.y29{bottom:260.312000pt;}
.yd6{bottom:263.962667pt;}
.yf3{bottom:264.068000pt;}
.ye9{bottom:264.530667pt;}
.yb6{bottom:268.236000pt;}
.yc4{bottom:268.576000pt;}
.y8e{bottom:270.769333pt;}
.y52{bottom:272.352000pt;}
.yff{bottom:273.598667pt;}
.y28{bottom:276.252000pt;}
.yd5{bottom:279.902667pt;}
.yf2{bottom:280.008000pt;}
.ye8{bottom:280.470667pt;}
.y8d{bottom:281.396000pt;}
.yb5{bottom:284.177333pt;}
.yfe{bottom:289.538667pt;}
.yc3{bottom:290.412000pt;}
.y8c{bottom:292.022667pt;}
.y27{bottom:292.192000pt;}
.yd4{bottom:295.842667pt;}
.yf1{bottom:295.948000pt;}
.ye7{bottom:296.412000pt;}
.y51{bottom:297.338667pt;}
.yb4{bottom:300.117333pt;}
.yc2{bottom:301.038667pt;}
.y8b{bottom:302.650667pt;}
.yfd{bottom:305.478667pt;}
.y26{bottom:308.301333pt;}
.yc1{bottom:311.666667pt;}
.yd3{bottom:311.782667pt;}
.yf0{bottom:311.888000pt;}
.ye6{bottom:312.352000pt;}
.y50{bottom:313.280000pt;}
.yb3{bottom:316.057333pt;}
.y8a{bottom:321.042667pt;}
.yc0{bottom:322.293333pt;}
.y25{bottom:324.241333pt;}
.yd2{bottom:327.724000pt;}
.yef{bottom:327.829333pt;}
.ye5{bottom:328.292000pt;}
.y4f{bottom:329.220000pt;}
.yb2{bottom:331.997333pt;}
.ybf{bottom:332.920000pt;}
.y89{bottom:336.982667pt;}
.y24{bottom:340.181333pt;}
.ybe{bottom:343.546667pt;}
.yd1{bottom:343.664000pt;}
.yee{bottom:343.769333pt;}
.ye4{bottom:344.232000pt;}
.y4e{bottom:345.160000pt;}
.yb1{bottom:347.937333pt;}
.yfc{bottom:348.426667pt;}
.y88{bottom:352.922667pt;}
.ybd{bottom:354.173333pt;}
.y23{bottom:356.122667pt;}
.yd0{bottom:359.486667pt;}
.yed{bottom:359.709333pt;}
.ye3{bottom:360.172000pt;}
.y4d{bottom:361.100000pt;}
.yb0{bottom:363.877333pt;}
.ybc{bottom:364.800000pt;}
.y87{bottom:368.862667pt;}
.y22{bottom:372.062667pt;}
.ybb{bottom:375.426667pt;}
.ye2{bottom:376.112000pt;}
.y4c{bottom:377.040000pt;}
.yaf{bottom:379.818667pt;}
.y86{bottom:384.804000pt;}
.yba{bottom:386.053333pt;}
.y21{bottom:388.002667pt;}
.ycf{bottom:391.366667pt;}
.ye1{bottom:392.053333pt;}
.y4b{bottom:392.980000pt;}
.yb9{bottom:396.680000pt;}
.y85{bottom:400.744000pt;}
.yae{bottom:403.908000pt;}
.y20{bottom:403.942667pt;}
.yb8{bottom:407.308000pt;}
.ye0{bottom:407.993333pt;}
.y4a{bottom:408.921333pt;}
.yad{bottom:414.534667pt;}
.y84{bottom:416.684000pt;}
.y1f{bottom:419.882667pt;}
.y49{bottom:424.861333pt;}
.yac{bottom:425.161333pt;}
.y83{bottom:432.624000pt;}
.yab{bottom:435.788000pt;}
.y1e{bottom:435.822667pt;}
.y48{bottom:445.018667pt;}
.yaa{bottom:446.414667pt;}
.y82{bottom:448.564000pt;}
.yb7{bottom:450.256000pt;}
.ydf{bottom:450.941333pt;}
.y1d{bottom:451.764000pt;}
.y1c{bottom:467.704000pt;}
.y47{bottom:470.006667pt;}
.ya9{bottom:473.229333pt;}
.y81{bottom:476.921333pt;}
.y1b{bottom:483.644000pt;}
.ya8{bottom:483.856000pt;}
.y46{bottom:485.946667pt;}
.ya7{bottom:494.482667pt;}
.y1a{bottom:499.584000pt;}
.y45{bottom:501.886667pt;}
.ya6{bottom:505.109333pt;}
.y19{bottom:515.524000pt;}
.ya5{bottom:515.737333pt;}
.y44{bottom:517.828000pt;}
.ya4{bottom:526.364000pt;}
.y18{bottom:531.465333pt;}
.y43{bottom:533.768000pt;}
.ya3{bottom:536.990667pt;}
.y17{bottom:547.405333pt;}
.ya2{bottom:547.617333pt;}
.y42{bottom:549.708000pt;}
.ya1{bottom:558.244000pt;}
.y16{bottom:563.345333pt;}
.y41{bottom:565.648000pt;}
.ya0{bottom:568.870667pt;}
.y15{bottom:579.285333pt;}
.y9f{bottom:579.497333pt;}
.y40{bottom:581.597333pt;}
.y9e{bottom:590.124000pt;}
.y3f{bottom:597.538667pt;}
.y14{bottom:600.424000pt;}
.y9d{bottom:600.750667pt;}
.y3e{bottom:613.478667pt;}
.y9c{bottom:619.472000pt;}
.y123{bottom:624.576000pt;}
.y13{bottom:626.768000pt;}
.yfb{bottom:627.302667pt;}
.y3d{bottom:629.418667pt;}
.y9b{bottom:635.412000pt;}
.y122{bottom:636.532000pt;}
.y12{bottom:640.052000pt;}
.y3c{bottom:645.358667pt;}
.y121{bottom:648.486667pt;}
.y9a{bottom:651.352000pt;}
.y11{bottom:653.334667pt;}
.y120{bottom:660.441333pt;}
.y3b{bottom:661.298667pt;}
.y10{bottom:666.618667pt;}
.y99{bottom:667.292000pt;}
.y11f{bottom:672.397333pt;}
.yf{bottom:679.901333pt;}
.y3a{bottom:681.481333pt;}
.y98{bottom:683.233333pt;}
.y11e{bottom:684.352000pt;}
.y80{bottom:688.546667pt;}
.ye{bottom:693.185333pt;}
.y11d{bottom:696.308000pt;}
.y39{bottom:697.421333pt;}
.y7f{bottom:699.173333pt;}
.yd{bottom:706.469333pt;}
.y11c{bottom:708.262667pt;}
.yc{bottom:719.752000pt;}
.y11b{bottom:720.217333pt;}
.y38{bottom:722.409333pt;}
.y11a{bottom:732.173333pt;}
.yb{bottom:733.036000pt;}
.y37{bottom:738.349333pt;}
.y7e{bottom:742.121333pt;}
.y119{bottom:744.128000pt;}
.ya{bottom:746.320000pt;}
.y36{bottom:754.289333pt;}
.y118{bottom:756.082667pt;}
.y9{bottom:759.602667pt;}
.y35{bottom:770.229333pt;}
.y5f{bottom:771.191093pt;}
.y8{bottom:772.886667pt;}
.y117{bottom:775.809333pt;}
.y34{bottom:786.169333pt;}
.y7{bottom:786.170667pt;}
.y116{bottom:800.716000pt;}
.y115{bottom:816.656000pt;}
.y114{bottom:832.596000pt;}
.y113{bottom:852.721333pt;}
.y6{bottom:853.230667pt;}
.y5{bottom:869.669333pt;}
.y112{bottom:877.626667pt;}
.y4{bottom:886.106667pt;}
.y111{bottom:893.568000pt;}
.y3{bottom:902.545333pt;}
.y110{bottom:909.508000pt;}
.y2{bottom:919.181333pt;}
.y10f{bottom:925.448000pt;}
.y10e{bottom:941.388000pt;}
.y10d{bottom:957.328000pt;}
.y1{bottom:961.024000pt;}
.y5d{bottom:968.710667pt;}
.y10c{bottom:977.453333pt;}
.hd{height:16.214293pt;}
.h14{height:21.933807pt;}
.h12{height:23.208806pt;}
.ha{height:25.589197pt;}
.hc{height:25.737971pt;}
.hb{height:27.895200pt;}
.h11{height:29.244954pt;}
.h16{height:29.458287pt;}
.h7{height:33.091994pt;}
.h6{height:33.426739pt;}
.he{height:33.822003pt;}
.h8{height:36.449833pt;}
.h5{height:36.556100pt;}
.h9{height:36.768636pt;}
.h4{height:36.822767pt;}
.h3{height:40.211857pt;}
.h2{height:40.505190pt;}
.h15{height:44.869197pt;}
.h13{height:44.874530pt;}
.h10{height:54.458376pt;}
.h1{height:87.734861pt;}
.hf{height:196.782560pt;}
.h0{height:1056.000000pt;}
.w2{width:538.756747pt;}
.w1{width:540.967787pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:8.844160pt;}
.x1f{left:12.529227pt;}
.x19{left:20.636373pt;}
.x26{left:43.483787pt;}
.x10{left:65.285333pt;}
.x3c{left:66.526667pt;}
.x34{left:76.444000pt;}
.xf{left:78.569333pt;}
.x6{left:83.694667pt;}
.x35{left:87.601333pt;}
.x1e{left:91.389653pt;}
.x1d{left:95.811733pt;}
.x32{left:98.760000pt;}
.x45{left:104.749333pt;}
.x1c{left:107.603947pt;}
.x36{left:109.918667pt;}
.x1{left:116.677333pt;}
.x4{left:131.062667pt;}
.x18{left:135.187733pt;}
.x28{left:142.243573pt;}
.x33{left:145.597333pt;}
.x44{left:162.286667pt;}
.x1b{left:167.302027pt;}
.x2{left:169.761333pt;}
.x27{left:170.987093pt;}
.x7{left:173.424000pt;}
.x42{left:174.729333pt;}
.x41{left:179.172000pt;}
.x11{left:180.825333pt;}
.x43{left:195.464000pt;}
.x5{left:229.108000pt;}
.x30{left:238.792320pt;}
.x3{left:241.988000pt;}
.x2e{left:246.899467pt;}
.x3b{left:249.964000pt;}
.x40{left:252.308000pt;}
.x2f{left:269.746880pt;}
.x25{left:275.642987pt;}
.x31{left:287.004000pt;}
.x23{left:294.805333pt;}
.x24{left:298.490400pt;}
.x3f{left:335.174667pt;}
.x3d{left:349.058667pt;}
.x9{left:361.076000pt;}
.x1a{left:383.246933pt;}
.x8{left:388.685333pt;}
.x2d{left:392.091093pt;}
.x22{left:397.987200pt;}
.xb{left:402.905333pt;}
.x2b{left:412.727467pt;}
.x13{left:415.970667pt;}
.x21{left:417.149547pt;}
.x14{left:422.866667pt;}
.x16{left:427.128000pt;}
.x12{left:429.253333pt;}
.x3a{left:432.708000pt;}
.x2c{left:436.311893pt;}
.x17{left:439.114667pt;}
.x2a{left:446.630080pt;}
.xa{left:459.121333pt;}
.x39{left:460.602667pt;}
.x29{left:468.003467pt;}
.x37{left:471.761333pt;}
.x38{left:494.078667pt;}
.x3e{left:515.033333pt;}
.xe{left:543.721333pt;}
.xd{left:550.429333pt;}
.x15{left:560.004000pt;}
.xc{left:592.030667pt;}
}




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