
    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_9f4e437dd8b1e7a98a905f62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730000;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_e4629fbcb6ae9fd497f4057a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_5b13a3e8fb5d0d1531815b85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.134000;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_7ca72a2eb53b90838ec64932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_293625224b1f7191067371b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_250a47daf3abc62316301545.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_a19bf990c2722ba68971ef3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956000;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:ffa;src:url('chunks/assets/font_234a20b30dba5abc2f1e4927.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_1e71fd08691e94a9fc059fc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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:ffc;src:url('chunks/assets/font_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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:ffd;src:url('chunks/assets/font_f7de5fd0ba222d9b3113c4fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;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:ffe;src:url('chunks/assets/font_901d72592016f370bf1e2da8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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:fff;src:url('chunks/assets/font_45316c065c670a9f33e84311.woff2')format("woff");}.fff{font-family:fff;line-height:0.716000;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:ff10;src:url('chunks/assets/font_b822c4d517610b9426fda01c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.878000;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:ff11;src:url('chunks/assets/font_69fe0bd62d6b12ac9a0b6b1e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.141000;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:ff12;src:url('chunks/assets/font_b59c134a711c543b680ae520.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.750000;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.249306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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:-22.854000px;}
.v4{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.464000px;}
.v2{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004917px;}
.ls2{letter-spacing:0.397293px;}
.ls6{letter-spacing:2.993314px;}
.ls4{letter-spacing:21.437430px;}
.ls5{letter-spacing:21.443430px;}
.ls3{letter-spacing:29.887920px;}
.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;}
}
.ws3c{word-spacing:-71.681449px;}
.ws41{word-spacing:-66.547064px;}
.ws7{word-spacing:-65.384241px;}
.ws11{word-spacing:-59.775840px;}
.ws48{word-spacing:-59.248075px;}
.ws2b{word-spacing:-58.480498px;}
.ws1{word-spacing:-56.757160px;}
.wsf{word-spacing:-45.848069px;}
.ws4b{word-spacing:-45.405736px;}
.ws1e{word-spacing:-45.029983px;}
.ws4e{word-spacing:-44.964936px;}
.ws3a{word-spacing:-44.891656px;}
.ws20{word-spacing:-44.445178px;}
.ws10{word-spacing:-43.217932px;}
.ws45{word-spacing:-43.038605px;}
.ws22{word-spacing:-42.919053px;}
.ws32{word-spacing:-42.749244px;}
.ws55{word-spacing:-42.739726px;}
.ws54{word-spacing:-42.679950px;}
.ws31{word-spacing:-41.988997px;}
.ws40{word-spacing:-41.544209px;}
.wsc{word-spacing:-41.484433px;}
.ws2c{word-spacing:-41.345712px;}
.ws58{word-spacing:-41.185554px;}
.ws47{word-spacing:-41.066002px;}
.ws5e{word-spacing:-41.006226px;}
.ws49{word-spacing:-40.587795px;}
.ws60{word-spacing:-40.528020px;}
.ws25{word-spacing:-40.410024px;}
.ws42{word-spacing:-40.408468px;}
.ws5f{word-spacing:-40.169364px;}
.ws38{word-spacing:-40.049813px;}
.ws51{word-spacing:-39.990037px;}
.ws77{word-spacing:-39.873987px;}
.ws76{word-spacing:-39.873644px;}
.ws79{word-spacing:-39.873404px;}
.ws7f{word-spacing:-39.873315px;}
.ws84{word-spacing:-39.873120px;}
.ws73{word-spacing:-39.873114px;}
.ws7e{word-spacing:-39.872889px;}
.ws7a{word-spacing:-39.872523px;}
.ws80{word-spacing:-39.872217px;}
.ws75{word-spacing:-39.871655px;}
.ws7c{word-spacing:-39.871524px;}
.ws7d{word-spacing:-39.871484px;}
.ws6a{word-spacing:-39.871297px;}
.ws74{word-spacing:-39.871288px;}
.ws66{word-spacing:-39.871199px;}
.ws72{word-spacing:-39.871132px;}
.ws6d{word-spacing:-39.871126px;}
.ws6f{word-spacing:-39.870663px;}
.ws6c{word-spacing:-39.870558px;}
.ws3{word-spacing:-39.870485px;}
.ws82{word-spacing:-39.870103px;}
.ws7b{word-spacing:-39.869781px;}
.ws69{word-spacing:-39.869630px;}
.ws78{word-spacing:-39.869243px;}
.ws68{word-spacing:-39.869191px;}
.ws63{word-spacing:-39.869079px;}
.ws81{word-spacing:-39.869056px;}
.ws6e{word-spacing:-39.868996px;}
.ws83{word-spacing:-39.868929px;}
.ws62{word-spacing:-39.868751px;}
.ws67{word-spacing:-39.868406px;}
.ws70{word-spacing:-39.868115px;}
.ws6b{word-spacing:-39.867958px;}
.ws71{word-spacing:-39.867069px;}
.ws64{word-spacing:-39.867009px;}
.ws65{word-spacing:-39.866941px;}
.ws27{word-spacing:-39.825219px;}
.ws3f{word-spacing:-39.750934px;}
.ws24{word-spacing:-39.708258px;}
.ws43{word-spacing:-39.691158px;}
.ws1b{word-spacing:-39.649777px;}
.ws3b{word-spacing:-39.452054px;}
.ws2d{word-spacing:-39.415855px;}
.ws37{word-spacing:-39.392279px;}
.ws30{word-spacing:-39.298894px;}
.ws18{word-spacing:-39.006492px;}
.ws8{word-spacing:-38.734744px;}
.ws3d{word-spacing:-38.674968px;}
.ws53{word-spacing:-38.316313px;}
.ws57{word-spacing:-38.196762px;}
.ws1f{word-spacing:-38.129284px;}
.ws19{word-spacing:-38.012323px;}
.ws5{word-spacing:-37.838107px;}
.wsa{word-spacing:-37.718555px;}
.wse{word-spacing:-37.658779px;}
.wsd{word-spacing:-37.359900px;}
.ws2e{word-spacing:-37.252077px;}
.ws21{word-spacing:-37.076635px;}
.ws17{word-spacing:-37.018155px;}
.ws5a{word-spacing:-36.941469px;}
.ws33{word-spacing:-36.901194px;}
.ws5c{word-spacing:-36.702366px;}
.ws4a{word-spacing:-36.582814px;}
.ws9{word-spacing:-36.403487px;}
.ws5b{word-spacing:-36.104607px;}
.wsb{word-spacing:-35.925280px;}
.ws36{word-spacing:-35.626401px;}
.ws50{word-spacing:-35.345470px;}
.ws52{word-spacing:-35.267746px;}
.ws1c{word-spacing:-35.263740px;}
.ws46{word-spacing:-35.148194px;}
.ws61{word-spacing:-35.088418px;}
.ws5d{word-spacing:-34.550436px;}
.ws56{word-spacing:-34.311332px;}
.ws2f{word-spacing:-33.977169px;}
.ws3e{word-spacing:-33.773350px;}
.ws4{word-spacing:-33.235367px;}
.ws2{word-spacing:-33.235237px;}
.ws6{word-spacing:-33.234123px;}
.ws26{word-spacing:-33.158442px;}
.ws39{word-spacing:-32.876712px;}
.ws59{word-spacing:-32.338729px;}
.ws2a{word-spacing:-32.281235px;}
.ws44{word-spacing:-31.322540px;}
.ws28{word-spacing:-31.053144px;}
.ws29{word-spacing:-30.702261px;}
.ws1d{word-spacing:-30.468339px;}
.ws1a{word-spacing:-30.409859px;}
.ws35{word-spacing:-29.887920px;}
.ws23{word-spacing:-28.772405px;}
.ws4f{word-spacing:-22.218686px;}
.ws14{word-spacing:-15.419894px;}
.ws15{word-spacing:-14.574560px;}
.ws13{word-spacing:-12.447380px;}
.ws4d{word-spacing:-8.464257px;}
.ws0{word-spacing:0.000000px;}
.ws34{word-spacing:4.662516px;}
.ws12{word-spacing:82.121566px;}
.ws16{word-spacing:200.249064px;}
.ws4c{word-spacing:1095.121168px;}
._2e{margin-left:-31.561644px;}
._2c{margin-left:-29.887920px;}
._2d{margin-left:-9.982565px;}
._3{margin-left:-8.249066px;}
._1{margin-left:-4.663183px;}
._4{margin-left:-2.779577px;}
._5{margin-left:-1.504253px;}
._0{width:1.504253px;}
._2{width:2.779577px;}
._13{width:4.453101px;}
._18{width:5.483057px;}
._19{width:6.837777px;}
._1c{width:8.237266px;}
._16{width:10.192617px;}
._15{width:11.583265px;}
._14{width:13.428418px;}
._c{width:15.054323px;}
._17{width:16.493682px;}
._1d{width:17.917736px;}
._1e{width:18.958176px;}
._1b{width:20.267230px;}
._1a{width:21.358769px;}
._7{width:23.421955px;}
._a{width:25.046077px;}
._32{width:26.103815px;}
._6{width:27.466180px;}
._1f{width:29.180785px;}
._8{width:30.206831px;}
._36{width:31.474578px;}
._9{width:33.165735px;}
._27{width:34.487253px;}
._2b{width:35.776508px;}
._39{width:37.095933px;}
._b{width:38.385946px;}
._30{width:39.871025px;}
._26{width:41.202247px;}
._22{width:42.960545px;}
._25{width:45.088464px;}
._37{width:47.235339px;}
._33{width:48.346543px;}
._34{width:50.151930px;}
._29{width:52.951338px;}
._3c{width:54.249168px;}
._3a{width:57.595082px;}
._23{width:59.417185px;}
._20{width:64.438356px;}
._21{width:78.109093px;}
._2a{width:80.099626px;}
._3d{width:81.129281px;}
._e{width:87.049871px;}
._10{width:94.999631px;}
._11{width:197.684030px;}
._24{width:268.513073px;}
._f{width:512.362027px;}
._d{width:629.620986px;}
._12{width:738.277539px;}
._31{width:993.210271px;}
._3b{width:1003.203011px;}
._35{width:1161.937754px;}
._28{width:1293.862715px;}
._2f{width:1717.105550px;}
._38{width:1978.505298px;}
._3e{width:2113.748694px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(31,78,121);}
.fc1{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(4,70,86);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760686px;}
.fsf{font-size:35.865480px;}
.fs7{font-size:36.004275px;}
.fse{font-size:41.843100px;}
.fsd{font-size:47.820660px;}
.fs8{font-size:48.245659px;}
.fs10{font-size:53.798280px;}
.fsb{font-size:58.480498px;}
.fs9{font-size:59.767031px;}
.fs3{font-size:59.775840px;}
.fs5{font-size:66.247999px;}
.fsc{font-size:71.731020px;}
.fs6{font-size:72.008465px;}
.fs2{font-size:89.663760px;}
.fs4{font-size:103.292640px;}
.fs1{font-size:150.007356px;}
.fs0{font-size:150.425259px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.600370px;}
.y28{bottom:4.500360px;}
.y27{bottom:48.555971px;}
.y29{bottom:53.056331px;}
.y50{bottom:54.856447px;}
.y4f{bottom:56.836616px;}
.y4e{bottom:69.437569px;}
.y4d{bottom:84.378797px;}
.y4b{bottom:96.439729px;}
.y14{bottom:111.018000px;}
.y4a{bottom:122.181863px;}
.y170{bottom:141.163500px;}
.y192{bottom:148.819500px;}
.ye9{bottom:152.820000px;}
.y16f{bottom:159.096000px;}
.y191{bottom:166.752000px;}
.ye8{bottom:170.754000px;}
.y16e{bottom:177.030000px;}
.y114{bottom:178.524000px;}
.y16d{bottom:194.962500px;}
.ye7{bottom:196.158000px;}
.y113{bottom:196.456500px;}
.y13{bottom:196.918500px;}
.y190{bottom:199.174500px;}
.ye6{bottom:214.090500px;}
.y18f{bottom:217.108500px;}
.y12{bottom:217.617000px;}
.y112{bottom:221.862000px;}
.y16c{bottom:223.356000px;}
.y2{bottom:224.599580px;}
.y18e{bottom:235.041000px;}
.y111{bottom:239.794500px;}
.y16b{bottom:241.288500px;}
.y11{bottom:251.235000px;}
.y18d{bottom:252.973500px;}
.ye5{bottom:254.439000px;}
.y110{bottom:257.727000px;}
.y16a{bottom:259.221000px;}
.y12c{bottom:260.715000px;}
.ye4{bottom:272.373000px;}
.y169{bottom:277.153500px;}
.y10f{bottom:283.131000px;}
.y18c{bottom:285.397500px;}
.y168{bottom:295.086000px;}
.ye3{bottom:297.777000px;}
.y10e{bottom:301.065000px;}
.y18b{bottom:303.330000px;}
.y167{bottom:313.020000px;}
.y1{bottom:313.026769px;}
.ye2{bottom:315.709500px;}
.y12b{bottom:318.997500px;}
.y18a{bottom:321.262500px;}
.y10d{bottom:326.469000px;}
.y82{bottom:332.971500px;}
.ye1{bottom:333.642000px;}
.y189{bottom:339.195000px;}
.y166{bottom:341.413500px;}
.y10c{bottom:344.401500px;}
.y188{bottom:357.127500px;}
.ye0{bottom:359.047500px;}
.y165{bottom:359.346000px;}
.y10b{bottom:362.334000px;}
.y81{bottom:373.772731px;}
.y187{bottom:375.061500px;}
.ydf{bottom:376.980000px;}
.y164{bottom:377.278500px;}
.y68{bottom:378.882367px;}
.y10a{bottom:387.739500px;}
.y80{bottom:391.316633px;}
.y186{bottom:392.994000px;}
.y163{bottom:395.211000px;}
.ya5{bottom:395.648958px;}
.yde{bottom:402.385500px;}
.y67{bottom:402.824316px;}
.y45{bottom:405.524490px;}
.y109{bottom:405.672000px;}
.y7f{bottom:408.860536px;}
.y185{bottom:410.926500px;}
.y162{bottom:413.143500px;}
.ya4{bottom:413.192860px;}
.y10{bottom:415.162500px;}
.ydd{bottom:420.318000px;}
.y66{bottom:420.825756px;}
.y108{bottom:423.604500px;}
.y7e{bottom:426.404439px;}
.y184{bottom:428.859000px;}
.ya3{bottom:430.736763px;}
.y12a{bottom:431.077500px;}
.y7d{bottom:443.948342px;}
.ydc{bottom:445.722000px;}
.y183{bottom:446.791500px;}
.ya2{bottom:448.280666px;}
.y107{bottom:449.010000px;}
.yf{bottom:451.530000px;}
.y44{bottom:458.448768px;}
.y7c{bottom:461.493712px;}
.ydb{bottom:463.654500px;}
.ya1{bottom:465.826036px;}
.y106{bottom:466.942500px;}
.y7b{bottom:479.037615px;}
.y182{bottom:479.215500px;}
.yda{bottom:481.588500px;}
.ya0{bottom:483.369939px;}
.y105{bottom:484.875000px;}
.y14c{bottom:487.245000px;}
.ye{bottom:487.884000px;}
.y129{bottom:492.346500px;}
.y161{bottom:495.336000px;}
.y7a{bottom:496.581517px;}
.y43{bottom:496.611801px;}
.y181{bottom:497.148000px;}
.yc5{bottom:498.063000px;}
.yd9{bottom:499.521000px;}
.y9f{bottom:500.913842px;}
.y104{bottom:502.807500px;}
.y14b{bottom:505.177500px;}
.y128{bottom:510.280500px;}
.y160{bottom:513.268500px;}
.y79{bottom:518.285768px;}
.y9e{bottom:518.457744px;}
.y42{bottom:518.933549px;}
.y14a{bottom:523.110000px;}
.yd8{bottom:524.925000px;}
.y103{bottom:528.213000px;}
.y180{bottom:529.572000px;}
.yc4{bottom:530.687370px;}
.y15f{bottom:531.201000px;}
.y127{bottom:535.684500px;}
.y9d{bottom:536.001647px;}
.y65{bottom:536.034930px;}
.y78{bottom:540.324000px;}
.y149{bottom:541.042500px;}
.y41{bottom:541.075379px;}
.yd7{bottom:542.857500px;}
.y102{bottom:546.145500px;}
.y17f{bottom:547.504500px;}
.yc3{bottom:548.232740px;}
.y15e{bottom:549.133500px;}
.y9c{bottom:553.545550px;}
.y126{bottom:553.617000px;}
.y148{bottom:558.976500px;}
.y40{bottom:563.397127px;}
.y17e{bottom:565.437000px;}
.yc2{bottom:565.776643px;}
.y9b{bottom:571.090920px;}
.y125{bottom:571.549500px;}
.y64{bottom:575.098091px;}
.y147{bottom:576.909000px;}
.y15d{bottom:577.527000px;}
.y77{bottom:577.716156px;}
.yd6{bottom:583.207500px;}
.yc1{bottom:583.320546px;}
.y17d{bottom:583.369500px;}
.y3f{bottom:585.538890px;}
.y101{bottom:586.494000px;}
.y9a{bottom:588.634823px;}
.y146{bottom:594.841500px;}
.y15c{bottom:595.461000px;}
.y124{bottom:596.955000px;}
.y76{bottom:599.420408px;}
.yc0{bottom:600.864448px;}
.yd5{bottom:601.140000px;}
.y17c{bottom:601.303500px;}
.y100{bottom:604.426500px;}
.y3e{bottom:607.860706px;}
.y99{bottom:610.339074px;}
.y145{bottom:612.774000px;}
.y63{bottom:613.261125px;}
.y15b{bottom:613.393500px;}
.y123{bottom:614.887500px;}
.ybf{bottom:618.408351px;}
.y17b{bottom:619.236000px;}
.y24{bottom:621.477000px;}
.y75{bottom:623.067416px;}
.yd4{bottom:626.544000px;}
.yff{bottom:629.832000px;}
.y3d{bottom:630.002468px;}
.y144{bottom:630.706500px;}
.y15a{bottom:631.326000px;}
.y62{bottom:633.602771px;}
.y98{bottom:635.127000px;}
.ybe{bottom:635.952254px;}
.y17a{bottom:637.168500px;}
.y122{bottom:640.291500px;}
.y74{bottom:640.611319px;}
.yd3{bottom:644.476500px;}
.yfe{bottom:647.764500px;}
.y143{bottom:648.639000px;}
.y159{bottom:649.258500px;}
.yd{bottom:651.468000px;}
.y3c{bottom:652.324284px;}
.ybd{bottom:653.497624px;}
.y61{bottom:653.764365px;}
.y23{bottom:654.204000px;}
.y179{bottom:655.101000px;}
.y97{bottom:657.312000px;}
.y73{bottom:658.155221px;}
.y121{bottom:658.225500px;}
.yc{bottom:663.661500px;}
.yfd{bottom:665.697000px;}
.y142{bottom:666.573000px;}
.y158{bottom:667.191000px;}
.ybc{bottom:671.041527px;}
.y22{bottom:672.136500px;}
.y178{bottom:673.033500px;}
.y3b{bottom:674.646032px;}
.y72{bottom:675.699124px;}
.yfc{bottom:683.629500px;}
.y141{bottom:684.505500px;}
.yd2{bottom:684.825000px;}
.y157{bottom:685.123500px;}
.ybb{bottom:688.585429px;}
.y21{bottom:690.069000px;}
.y177{bottom:690.966000px;}
.y60{bottom:691.927432px;}
.y71{bottom:693.243027px;}
.y3a{bottom:696.787795px;}
.y96{bottom:697.429500px;}
.yb{bottom:699.955500px;}
.y120{bottom:701.562000px;}
.y140{bottom:702.438000px;}
.yd1{bottom:702.759000px;}
.y156{bottom:703.057500px;}
.yba{bottom:706.129332px;}
.y20{bottom:708.003000px;}
.yfb{bottom:709.035000px;}
.y70{bottom:710.786929px;}
.y5f{bottom:712.269045px;}
.ya{bottom:713.853000px;}
.y39{bottom:719.109611px;}
.y13f{bottom:720.370500px;}
.yd0{bottom:720.691500px;}
.y176{bottom:723.390000px;}
.yb9{bottom:723.673235px;}
.y95{bottom:724.791000px;}
.y1f{bottom:725.935500px;}
.yfa{bottom:726.967500px;}
.y6f{bottom:728.332300px;}
.y155{bottom:731.451000px;}
.y5e{bottom:732.430672px;}
.y13e{bottom:738.303000px;}
.yb8{bottom:741.217138px;}
.y38{bottom:741.251373px;}
.y175{bottom:741.322500px;}
.y11f{bottom:741.910500px;}
.y94{bottom:742.723500px;}
.y1e{bottom:743.868000px;}
.yf9{bottom:744.900000px;}
.ycf{bottom:746.095500px;}
.y154{bottom:749.383500px;}
.y6e{bottom:750.035083px;}
.y9{bottom:750.370500px;}
.y13d{bottom:756.235500px;}
.yb7{bottom:758.762508px;}
.y11e{bottom:759.844500px;}
.y1d{bottom:761.800500px;}
.y37{bottom:763.573155px;}
.yce{bottom:764.028000px;}
.y8{bottom:765.300000px;}
.y153{bottom:767.316000px;}
.yf8{bottom:770.304000px;}
.y5d{bottom:770.773725px;}
.y174{bottom:773.746500px;}
.y13c{bottom:774.169500px;}
.y93{bottom:775.348819px;}
.y6d{bottom:775.482000px;}
.yb6{bottom:776.306411px;}
.y11d{bottom:777.777000px;}
.y1c{bottom:779.733000px;}
.y152{bottom:785.248500px;}
.y36{bottom:785.894936px;}
.yf7{bottom:788.238000px;}
.ycd{bottom:789.433500px;}
.y5c{bottom:790.935352px;}
.y173{bottom:791.679000px;}
.y13b{bottom:792.102000px;}
.y92{bottom:792.892721px;}
.y6c{bottom:793.414500px;}
.y1b{bottom:797.667000px;}
.yb5{bottom:798.010662px;}
.y7{bottom:798.933000px;}
.y11c{bottom:803.181000px;}
.ycc{bottom:807.366000px;}
.y35{bottom:808.036700px;}
.y172{bottom:809.611500px;}
.y13a{bottom:810.034500px;}
.y91{bottom:810.436624px;}
.y5b{bottom:811.096946px;}
.y151{bottom:813.642000px;}
.y1a{bottom:815.599500px;}
.y11b{bottom:821.113500px;}
.yb4{bottom:821.542500px;}
.ycb{bottom:825.298500px;}
.y171{bottom:827.545500px;}
.y139{bottom:827.967000px;}
.y90{bottom:827.980527px;}
.yf6{bottom:828.586500px;}
.y34{bottom:830.358481px;}
.y5a{bottom:831.438592px;}
.y150{bottom:831.574500px;}
.y19{bottom:833.532000px;}
.y6{bottom:835.465500px;}
.y11a{bottom:839.047500px;}
.y8f{bottom:845.524429px;}
.y138{bottom:845.899500px;}
.yf5{bottom:846.519000px;}
.y5{bottom:850.573500px;}
.yca{bottom:850.704000px;}
.y18{bottom:851.464500px;}
.y33{bottom:852.500278px;}
.y6b{bottom:855.717000px;}
.y14f{bottom:859.968000px;}
.yb3{bottom:862.343925px;}
.y137{bottom:863.832000px;}
.y119{bottom:864.451500px;}
.y8e{bottom:867.228680px;}
.yc9{bottom:868.636500px;}
.y17{bottom:869.397000px;}
.y59{bottom:869.601626px;}
.yf4{bottom:871.923000px;}
.y6a{bottom:873.649500px;}
.y32{bottom:874.822060px;}
.y14e{bottom:877.900500px;}
.yb2{bottom:879.887828px;}
.y136{bottom:881.766000px;}
.y118{bottom:882.384000px;}
.y58{bottom:889.763253px;}
.yf3{bottom:889.857000px;}
.y69{bottom:891.582000px;}
.yc8{bottom:894.040500px;}
.y14d{bottom:895.834500px;}
.y31{bottom:897.143841px;}
.yb1{bottom:897.431731px;}
.yf2{bottom:907.789500px;}
.y57{bottom:910.104866px;}
.yc7{bottom:911.974500px;}
.y16{bottom:913.767000px;}
.yb0{bottom:914.975633px;}
.y30{bottom:919.285605px;}
.y135{bottom:920.065500px;}
.y8d{bottom:922.133828px;}
.y117{bottom:925.722000px;}
.y56{bottom:930.266493px;}
.yaf{bottom:932.519536px;}
.yf1{bottom:933.193500px;}
.y8c{bottom:939.677731px;}
.y2f{bottom:941.607386px;}
.yae{bottom:950.064906px;}
.y55{bottom:950.428087px;}
.yf0{bottom:951.126000px;}
.y8b{bottom:957.221633px;}
.y2e{bottom:963.749149px;}
.yad{bottom:967.608809px;}
.y134{bottom:968.176500px;}
.y116{bottom:969.060000px;}
.y8a{bottom:974.765536px;}
.yef{bottom:976.531500px;}
.y133{bottom:978.901500px;}
.y2d{bottom:983.370738px;}
.yac{bottom:985.152712px;}
.y54{bottom:988.771173px;}
.y15{bottom:991.476000px;}
.y89{bottom:992.309439px;}
.yee{bottom:994.464000px;}
.y132{bottom:1001.053500px;}
.yab{bottom:1002.696615px;}
.yc6{bottom:1004.626500px;}
.y53{bottom:1008.932784px;}
.y88{bottom:1009.854809px;}
.y131{bottom:1011.778500px;}
.y4{bottom:1011.834000px;}
.y115{bottom:1012.396500px;}
.yed{bottom:1019.869500px;}
.yaa{bottom:1020.240517px;}
.y2c{bottom:1020.453695px;}
.y87{bottom:1027.398712px;}
.y52{bottom:1029.094395px;}
.y3{bottom:1033.651500px;}
.y130{bottom:1033.930500px;}
.ya9{bottom:1037.784420px;}
.yec{bottom:1037.802000px;}
.y86{bottom:1044.942615px;}
.y12f{bottom:1052.029500px;}
.ya8{bottom:1055.329790px;}
.y12e{bottom:1055.361000px;}
.yeb{bottom:1055.734500px;}
.y2b{bottom:1058.256726px;}
.y85{bottom:1062.486517px;}
.y51{bottom:1067.257446px;}
.y12d{bottom:1069.557000px;}
.ya7{bottom:1077.032574px;}
.y84{bottom:1080.030420px;}
.yea{bottom:1081.138500px;}
.y2a{bottom:1097.139833px;}
.ya6{bottom:1099.072500px;}
.y83{bottom:1101.734671px;}
.y49{bottom:1124.322012px;}
.y26{bottom:1133.322732px;}
.y48{bottom:1148.623955px;}
.y25{bottom:1153.484342px;}
.y47{bottom:1170.405697px;}
.y46{bottom:1192.367450px;}
.h16{height:4.193937px;}
.h14{height:13.501080px;}
.hc{height:20.341578px;}
.h1f{height:26.899110px;}
.h21{height:31.382325px;}
.h1d{height:35.865495px;}
.h13{height:36.666701px;}
.h10{height:36.865706px;}
.h9{height:42.201743px;}
.h17{height:43.512033px;}
.h1a{height:43.860373px;}
.h7{height:44.831880px;}
.h20{height:46.804504px;}
.h12{height:48.230355px;}
.he{height:49.998065px;}
.h19{height:50.348480px;}
.h18{height:50.603531px;}
.h1b{height:50.761072px;}
.h6{height:51.885429px;}
.h1e{height:53.078325px;}
.h1c{height:53.798265px;}
.h11{height:54.726433px;}
.hf{height:56.090835px;}
.hd{height:65.892175px;}
.h5{height:67.247820px;}
.hb{height:67.833035px;}
.h15{height:71.621701px;}
.h8{height:77.469480px;}
.h3{height:107.105252px;}
.h2{height:107.403635px;}
.h0{height:1262.832000px;}
.h4{height:1262.835000px;}
.ha{height:1262.877000px;}
.h1{height:1263.000000px;}
.wd{width:3.420249px;}
.w8{width:3.420317px;}
.w6{width:3.600268px;}
.wa{width:3.600302px;}
.wc{width:11.520910px;}
.w7{width:21.421689px;}
.w9{width:25.562012px;}
.wb{width:38.883108px;}
.w4{width:52.169678px;}
.we{width:73.805946px;}
.w5{width:333.386677px;}
.w0{width:892.911000px;}
.w2{width:892.914000px;}
.w3{width:892.978500px;}
.w1{width:893.250000px;}
.x13{left:-42.337882px;}
.x0{left:0.000000px;}
.xe{left:85.039500px;}
.x2a{left:93.812185px;}
.x33{left:99.265500px;}
.x16{left:106.173998px;}
.xf{left:107.455500px;}
.x26{left:109.774282px;}
.x2f{left:112.275000px;}
.x37{left:114.927000px;}
.x2d{left:141.826500px;}
.x14{left:185.020299px;}
.x29{left:187.086000px;}
.x2c{left:188.242500px;}
.x2b{left:194.552782px;}
.x1a{left:224.983500px;}
.x1b{left:226.783651px;}
.x3{left:254.719500px;}
.x1{left:264.214745px;}
.x32{left:273.151500px;}
.x17{left:294.649087px;}
.x6{left:307.231500px;}
.x9{left:313.291500px;}
.x11{left:318.770986px;}
.x35{left:321.691500px;}
.xa{left:322.803000px;}
.x36{left:324.171000px;}
.x8{left:330.387000px;}
.xc{left:335.521500px;}
.x7{left:336.732000px;}
.x5{left:337.830000px;}
.x28{left:339.652687px;}
.xb{left:342.985500px;}
.x30{left:366.292500px;}
.x4{left:369.085500px;}
.x34{left:370.950000px;}
.x2{left:377.234408px;}
.x2e{left:407.095500px;}
.xd{left:410.830500px;}
.x12{left:421.559226px;}
.x38{left:440.719500px;}
.x15{left:446.401198px;}
.x39{left:470.607000px;}
.x27{left:500.045516px;}
.x18{left:518.766995px;}
.x1c{left:560.170327px;}
.x1d{left:563.770595px;}
.x1e{left:585.192284px;}
.x1f{left:588.612602px;}
.x10{left:607.954500px;}
.x20{left:614.174614px;}
.x21{left:617.774915px;}
.x22{left:656.658023px;}
.x23{left:660.258325px;}
.x24{left:671.779235px;}
.x25{left:675.199484px;}
.x31{left:754.555500px;}
.x19{left:785.188294px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v4{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.301333pt;}
.v2{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004371pt;}
.ls2{letter-spacing:0.353149pt;}
.ls6{letter-spacing:2.660723pt;}
.ls4{letter-spacing:19.055493pt;}
.ls5{letter-spacing:19.060827pt;}
.ls3{letter-spacing:26.567040pt;}
.ws3c{word-spacing:-63.716844pt;}
.ws41{word-spacing:-59.152946pt;}
.ws7{word-spacing:-58.119325pt;}
.ws11{word-spacing:-53.134080pt;}
.ws48{word-spacing:-52.664955pt;}
.ws2b{word-spacing:-51.982664pt;}
.ws1{word-spacing:-50.450809pt;}
.wsf{word-spacing:-40.753839pt;}
.ws4b{word-spacing:-40.360654pt;}
.ws1e{word-spacing:-40.026652pt;}
.ws4e{word-spacing:-39.968832pt;}
.ws3a{word-spacing:-39.903694pt;}
.ws20{word-spacing:-39.506825pt;}
.ws10{word-spacing:-38.415940pt;}
.ws45{word-spacing:-38.256538pt;}
.ws22{word-spacing:-38.150269pt;}
.ws32{word-spacing:-37.999328pt;}
.ws55{word-spacing:-37.990867pt;}
.ws54{word-spacing:-37.937733pt;}
.ws31{word-spacing:-37.323553pt;}
.ws40{word-spacing:-36.928186pt;}
.wsc{word-spacing:-36.875052pt;}
.ws2c{word-spacing:-36.751744pt;}
.ws58{word-spacing:-36.609381pt;}
.ws47{word-spacing:-36.503113pt;}
.ws5e{word-spacing:-36.449979pt;}
.ws49{word-spacing:-36.078040pt;}
.ws60{word-spacing:-36.024906pt;}
.ws25{word-spacing:-35.920021pt;}
.ws42{word-spacing:-35.918638pt;}
.ws5f{word-spacing:-35.706102pt;}
.ws38{word-spacing:-35.599834pt;}
.ws51{word-spacing:-35.546700pt;}
.ws77{word-spacing:-35.443544pt;}
.ws76{word-spacing:-35.443239pt;}
.ws79{word-spacing:-35.443025pt;}
.ws7f{word-spacing:-35.442947pt;}
.ws84{word-spacing:-35.442774pt;}
.ws73{word-spacing:-35.442768pt;}
.ws7e{word-spacing:-35.442568pt;}
.ws7a{word-spacing:-35.442243pt;}
.ws80{word-spacing:-35.441970pt;}
.ws75{word-spacing:-35.441471pt;}
.ws7c{word-spacing:-35.441354pt;}
.ws7d{word-spacing:-35.441319pt;}
.ws6a{word-spacing:-35.441153pt;}
.ws74{word-spacing:-35.441145pt;}
.ws66{word-spacing:-35.441065pt;}
.ws72{word-spacing:-35.441006pt;}
.ws6d{word-spacing:-35.441001pt;}
.ws6f{word-spacing:-35.440589pt;}
.ws6c{word-spacing:-35.440496pt;}
.ws3{word-spacing:-35.440431pt;}
.ws82{word-spacing:-35.440091pt;}
.ws7b{word-spacing:-35.439805pt;}
.ws69{word-spacing:-35.439671pt;}
.ws78{word-spacing:-35.439327pt;}
.ws68{word-spacing:-35.439281pt;}
.ws63{word-spacing:-35.439181pt;}
.ws81{word-spacing:-35.439161pt;}
.ws6e{word-spacing:-35.439108pt;}
.ws83{word-spacing:-35.439048pt;}
.ws62{word-spacing:-35.438889pt;}
.ws67{word-spacing:-35.438583pt;}
.ws70{word-spacing:-35.438324pt;}
.ws6b{word-spacing:-35.438185pt;}
.ws71{word-spacing:-35.437394pt;}
.ws64{word-spacing:-35.437341pt;}
.ws65{word-spacing:-35.437281pt;}
.ws27{word-spacing:-35.400195pt;}
.ws3f{word-spacing:-35.334163pt;}
.ws24{word-spacing:-35.296229pt;}
.ws43{word-spacing:-35.281029pt;}
.ws1b{word-spacing:-35.244247pt;}
.ws3b{word-spacing:-35.068493pt;}
.ws2d{word-spacing:-35.036316pt;}
.ws37{word-spacing:-35.015359pt;}
.ws30{word-spacing:-34.932351pt;}
.ws18{word-spacing:-34.672437pt;}
.ws8{word-spacing:-34.430884pt;}
.ws3d{word-spacing:-34.377750pt;}
.ws53{word-spacing:-34.058945pt;}
.ws57{word-spacing:-33.952677pt;}
.ws1f{word-spacing:-33.892697pt;}
.ws19{word-spacing:-33.788732pt;}
.ws5{word-spacing:-33.633873pt;}
.wsa{word-spacing:-33.527604pt;}
.wse{word-spacing:-33.474470pt;}
.wsd{word-spacing:-33.208800pt;}
.ws2e{word-spacing:-33.112957pt;}
.ws21{word-spacing:-32.957009pt;}
.ws17{word-spacing:-32.905027pt;}
.ws5a{word-spacing:-32.836861pt;}
.ws33{word-spacing:-32.801061pt;}
.ws5c{word-spacing:-32.624325pt;}
.ws4a{word-spacing:-32.518057pt;}
.ws9{word-spacing:-32.358655pt;}
.ws5b{word-spacing:-32.092984pt;}
.wsb{word-spacing:-31.933582pt;}
.ws36{word-spacing:-31.667912pt;}
.ws50{word-spacing:-31.418196pt;}
.ws52{word-spacing:-31.349107pt;}
.ws1c{word-spacing:-31.345547pt;}
.ws46{word-spacing:-31.242839pt;}
.ws61{word-spacing:-31.189705pt;}
.ws5d{word-spacing:-30.711498pt;}
.ws56{word-spacing:-30.498962pt;}
.ws2f{word-spacing:-30.201928pt;}
.ws3e{word-spacing:-30.020755pt;}
.ws4{word-spacing:-29.542548pt;}
.ws2{word-spacing:-29.542433pt;}
.ws6{word-spacing:-29.541443pt;}
.ws26{word-spacing:-29.474171pt;}
.ws39{word-spacing:-29.223744pt;}
.ws59{word-spacing:-28.745537pt;}
.ws2a{word-spacing:-28.694431pt;}
.ws44{word-spacing:-27.842258pt;}
.ws28{word-spacing:-27.602795pt;}
.ws29{word-spacing:-27.290899pt;}
.ws1d{word-spacing:-27.082968pt;}
.ws1a{word-spacing:-27.030986pt;}
.ws35{word-spacing:-26.567040pt;}
.ws23{word-spacing:-25.575471pt;}
.ws4f{word-spacing:-19.749943pt;}
.ws14{word-spacing:-13.706572pt;}
.ws15{word-spacing:-12.955164pt;}
.ws13{word-spacing:-11.064338pt;}
.ws4d{word-spacing:-7.523784pt;}
.ws0{word-spacing:0.000000pt;}
.ws34{word-spacing:4.144458pt;}
.ws12{word-spacing:72.996948pt;}
.ws16{word-spacing:177.999168pt;}
.ws4c{word-spacing:973.441039pt;}
._2e{margin-left:-28.054794pt;}
._2c{margin-left:-26.567040pt;}
._2d{margin-left:-8.873391pt;}
._3{margin-left:-7.332503pt;}
._1{margin-left:-4.145052pt;}
._4{margin-left:-2.470735pt;}
._5{margin-left:-1.337113pt;}
._0{width:1.337113pt;}
._2{width:2.470735pt;}
._13{width:3.958312pt;}
._18{width:4.873829pt;}
._19{width:6.078024pt;}
._1c{width:7.322014pt;}
._16{width:9.060104pt;}
._15{width:10.296235pt;}
._14{width:11.936371pt;}
._c{width:13.381620pt;}
._17{width:14.661050pt;}
._1d{width:15.926876pt;}
._1e{width:16.851712pt;}
._1b{width:18.015315pt;}
._1a{width:18.985573pt;}
._7{width:20.819515pt;}
._a{width:22.263180pt;}
._32{width:23.203391pt;}
._6{width:24.414382pt;}
._1f{width:25.938475pt;}
._8{width:26.850516pt;}
._36{width:27.977402pt;}
._9{width:29.480653pt;}
._27{width:30.655336pt;}
._2b{width:31.801340pt;}
._39{width:32.974163pt;}
._b{width:34.120841pt;}
._30{width:35.440911pt;}
._26{width:36.624220pt;}
._22{width:38.187151pt;}
._25{width:40.078634pt;}
._37{width:41.986968pt;}
._33{width:42.974705pt;}
._34{width:44.579493pt;}
._29{width:47.067856pt;}
._3c{width:48.221483pt;}
._3a{width:51.195628pt;}
._23{width:52.815276pt;}
._20{width:57.278538pt;}
._21{width:69.430305pt;}
._2a{width:71.199667pt;}
._3d{width:72.114917pt;}
._e{width:77.377663pt;}
._10{width:84.444117pt;}
._11{width:175.719138pt;}
._24{width:238.678287pt;}
._f{width:455.432913pt;}
._d{width:559.663099pt;}
._12{width:656.246702pt;}
._31{width:882.853574pt;}
._3b{width:891.736010pt;}
._35{width:1032.833559pt;}
._28{width:1150.100191pt;}
._2f{width:1526.316044pt;}
._38{width:1758.671376pt;}
._3e{width:1878.887728pt;}
.fsa{font-size:5.120610pt;}
.fsf{font-size:31.880427pt;}
.fs7{font-size:32.003800pt;}
.fse{font-size:37.193867pt;}
.fsd{font-size:42.507253pt;}
.fs8{font-size:42.885031pt;}
.fs10{font-size:47.820693pt;}
.fsb{font-size:51.982664pt;}
.fs9{font-size:53.126250pt;}
.fs3{font-size:53.134080pt;}
.fs5{font-size:58.887111pt;}
.fsc{font-size:63.760907pt;}
.fs6{font-size:64.007524pt;}
.fs2{font-size:79.701120pt;}
.fs4{font-size:91.815680pt;}
.fs1{font-size:133.339872pt;}
.fs0{font-size:133.711341pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.200329pt;}
.y28{bottom:4.000320pt;}
.y27{bottom:43.160863pt;}
.y29{bottom:47.161183pt;}
.y50{bottom:48.761286pt;}
.y4f{bottom:50.521437pt;}
.y4e{bottom:61.722284pt;}
.y4d{bottom:75.003375pt;}
.y4b{bottom:85.724204pt;}
.y14{bottom:98.682667pt;}
.y4a{bottom:108.606100pt;}
.y170{bottom:125.478667pt;}
.y192{bottom:132.284000pt;}
.ye9{bottom:135.840000pt;}
.y16f{bottom:141.418667pt;}
.y191{bottom:148.224000pt;}
.ye8{bottom:151.781333pt;}
.y16e{bottom:157.360000pt;}
.y114{bottom:158.688000pt;}
.y16d{bottom:173.300000pt;}
.ye7{bottom:174.362667pt;}
.y113{bottom:174.628000pt;}
.y13{bottom:175.038667pt;}
.y190{bottom:177.044000pt;}
.ye6{bottom:190.302667pt;}
.y18f{bottom:192.985333pt;}
.y12{bottom:193.437333pt;}
.y112{bottom:197.210667pt;}
.y16c{bottom:198.538667pt;}
.y2{bottom:199.644071pt;}
.y18e{bottom:208.925333pt;}
.y111{bottom:213.150667pt;}
.y16b{bottom:214.478667pt;}
.y11{bottom:223.320000pt;}
.y18d{bottom:224.865333pt;}
.ye5{bottom:226.168000pt;}
.y110{bottom:229.090667pt;}
.y16a{bottom:230.418667pt;}
.y12c{bottom:231.746667pt;}
.ye4{bottom:242.109333pt;}
.y169{bottom:246.358667pt;}
.y10f{bottom:251.672000pt;}
.y18c{bottom:253.686667pt;}
.y168{bottom:262.298667pt;}
.ye3{bottom:264.690667pt;}
.y10e{bottom:267.613333pt;}
.y18b{bottom:269.626667pt;}
.y167{bottom:278.240000pt;}
.y1{bottom:278.246017pt;}
.ye2{bottom:280.630667pt;}
.y12b{bottom:283.553333pt;}
.y18a{bottom:285.566667pt;}
.y10d{bottom:290.194667pt;}
.y82{bottom:295.974667pt;}
.ye1{bottom:296.570667pt;}
.y189{bottom:301.506667pt;}
.y166{bottom:303.478667pt;}
.y10c{bottom:306.134667pt;}
.y188{bottom:317.446667pt;}
.ye0{bottom:319.153333pt;}
.y165{bottom:319.418667pt;}
.y10b{bottom:322.074667pt;}
.y81{bottom:332.242427pt;}
.y187{bottom:333.388000pt;}
.ydf{bottom:335.093333pt;}
.y164{bottom:335.358667pt;}
.y68{bottom:336.784326pt;}
.y10a{bottom:344.657333pt;}
.y80{bottom:347.837007pt;}
.y186{bottom:349.328000pt;}
.y163{bottom:351.298667pt;}
.ya5{bottom:351.687962pt;}
.yde{bottom:357.676000pt;}
.y67{bottom:358.066058pt;}
.y45{bottom:360.466213pt;}
.y109{bottom:360.597333pt;}
.y7f{bottom:363.431588pt;}
.y185{bottom:365.268000pt;}
.y162{bottom:367.238667pt;}
.ya4{bottom:367.282543pt;}
.y10{bottom:369.033333pt;}
.ydd{bottom:373.616000pt;}
.y66{bottom:374.067338pt;}
.y108{bottom:376.537333pt;}
.y7e{bottom:379.026168pt;}
.y184{bottom:381.208000pt;}
.ya3{bottom:382.877123pt;}
.y12a{bottom:383.180000pt;}
.y7d{bottom:394.620748pt;}
.ydc{bottom:396.197333pt;}
.y183{bottom:397.148000pt;}
.ya2{bottom:398.471703pt;}
.y107{bottom:399.120000pt;}
.yf{bottom:401.360000pt;}
.y44{bottom:407.510016pt;}
.y7c{bottom:410.216633pt;}
.ydb{bottom:412.137333pt;}
.ya1{bottom:414.067588pt;}
.y106{bottom:415.060000pt;}
.y7b{bottom:425.811213pt;}
.y182{bottom:425.969333pt;}
.yda{bottom:428.078667pt;}
.ya0{bottom:429.662168pt;}
.y105{bottom:431.000000pt;}
.y14c{bottom:433.106667pt;}
.ye{bottom:433.674667pt;}
.y129{bottom:437.641333pt;}
.y161{bottom:440.298667pt;}
.y7a{bottom:441.405793pt;}
.y43{bottom:441.432712pt;}
.y181{bottom:441.909333pt;}
.yc5{bottom:442.722667pt;}
.yd9{bottom:444.018667pt;}
.y9f{bottom:445.256748pt;}
.y104{bottom:446.940000pt;}
.y14b{bottom:449.046667pt;}
.y128{bottom:453.582667pt;}
.y160{bottom:456.238667pt;}
.y79{bottom:460.698461pt;}
.y9e{bottom:460.851328pt;}
.y42{bottom:461.274265pt;}
.y14a{bottom:464.986667pt;}
.yd8{bottom:466.600000pt;}
.y103{bottom:469.522667pt;}
.y180{bottom:470.730667pt;}
.yc4{bottom:471.722107pt;}
.y15f{bottom:472.178667pt;}
.y127{bottom:476.164000pt;}
.y9d{bottom:476.445908pt;}
.y65{bottom:476.475493pt;}
.y78{bottom:480.288000pt;}
.y149{bottom:480.926667pt;}
.y41{bottom:480.955893pt;}
.yd7{bottom:482.540000pt;}
.y102{bottom:485.462667pt;}
.y17f{bottom:486.670667pt;}
.yc3{bottom:487.317991pt;}
.y15e{bottom:488.118667pt;}
.y9c{bottom:492.040489pt;}
.y126{bottom:492.104000pt;}
.y148{bottom:496.868000pt;}
.y40{bottom:500.797446pt;}
.y17e{bottom:502.610667pt;}
.yc2{bottom:502.912571pt;}
.y9b{bottom:507.636373pt;}
.y125{bottom:508.044000pt;}
.y64{bottom:511.198303pt;}
.y147{bottom:512.808000pt;}
.y15d{bottom:513.357333pt;}
.y77{bottom:513.525472pt;}
.yd6{bottom:518.406667pt;}
.yc1{bottom:518.507152pt;}
.y17d{bottom:518.550667pt;}
.y3f{bottom:520.479013pt;}
.y101{bottom:521.328000pt;}
.y9a{bottom:523.230954pt;}
.y146{bottom:528.748000pt;}
.y15c{bottom:529.298667pt;}
.y124{bottom:530.626667pt;}
.y76{bottom:532.818140pt;}
.yc0{bottom:534.101732pt;}
.yd5{bottom:534.346667pt;}
.y17c{bottom:534.492000pt;}
.y100{bottom:537.268000pt;}
.y3e{bottom:540.320628pt;}
.y99{bottom:542.523621pt;}
.y145{bottom:544.688000pt;}
.y63{bottom:545.121000pt;}
.y15b{bottom:545.238667pt;}
.y123{bottom:546.566667pt;}
.ybf{bottom:549.696312pt;}
.y17b{bottom:550.432000pt;}
.y24{bottom:552.424000pt;}
.y75{bottom:553.837703pt;}
.yd4{bottom:556.928000pt;}
.yff{bottom:559.850667pt;}
.y3d{bottom:560.002194pt;}
.y144{bottom:560.628000pt;}
.y15a{bottom:561.178667pt;}
.y62{bottom:563.202463pt;}
.y98{bottom:564.557333pt;}
.ybe{bottom:565.290892pt;}
.y17a{bottom:566.372000pt;}
.y122{bottom:569.148000pt;}
.y74{bottom:569.432283pt;}
.yd3{bottom:572.868000pt;}
.yfe{bottom:575.790667pt;}
.y143{bottom:576.568000pt;}
.y159{bottom:577.118667pt;}
.yd{bottom:579.082667pt;}
.y3c{bottom:579.843808pt;}
.ybd{bottom:580.886777pt;}
.y61{bottom:581.123880pt;}
.y23{bottom:581.514667pt;}
.y179{bottom:582.312000pt;}
.y97{bottom:584.277333pt;}
.y73{bottom:585.026863pt;}
.y121{bottom:585.089333pt;}
.yc{bottom:589.921333pt;}
.yfd{bottom:591.730667pt;}
.y142{bottom:592.509333pt;}
.y158{bottom:593.058667pt;}
.ybc{bottom:596.481357pt;}
.y22{bottom:597.454667pt;}
.y178{bottom:598.252000pt;}
.y3b{bottom:599.685361pt;}
.y72{bottom:600.621444pt;}
.yfc{bottom:607.670667pt;}
.y141{bottom:608.449333pt;}
.yd2{bottom:608.733333pt;}
.y157{bottom:608.998667pt;}
.ybb{bottom:612.075937pt;}
.y21{bottom:613.394667pt;}
.y177{bottom:614.192000pt;}
.y60{bottom:615.046606pt;}
.y71{bottom:616.216024pt;}
.y3a{bottom:619.366929pt;}
.y96{bottom:619.937333pt;}
.yb{bottom:622.182667pt;}
.y120{bottom:623.610667pt;}
.y140{bottom:624.389333pt;}
.yd1{bottom:624.674667pt;}
.y156{bottom:624.940000pt;}
.yba{bottom:627.670517pt;}
.y20{bottom:629.336000pt;}
.yfb{bottom:630.253333pt;}
.y70{bottom:631.810604pt;}
.y5f{bottom:633.128040pt;}
.ya{bottom:634.536000pt;}
.y39{bottom:639.208543pt;}
.y13f{bottom:640.329333pt;}
.yd0{bottom:640.614667pt;}
.y176{bottom:643.013333pt;}
.yb9{bottom:643.265098pt;}
.y95{bottom:644.258667pt;}
.y1f{bottom:645.276000pt;}
.yfa{bottom:646.193333pt;}
.y6f{bottom:647.406489pt;}
.y155{bottom:650.178667pt;}
.y5e{bottom:651.049486pt;}
.y13e{bottom:656.269333pt;}
.yb8{bottom:658.859678pt;}
.y38{bottom:658.890109pt;}
.y175{bottom:658.953333pt;}
.y11f{bottom:659.476000pt;}
.y94{bottom:660.198667pt;}
.y1e{bottom:661.216000pt;}
.yf9{bottom:662.133333pt;}
.ycf{bottom:663.196000pt;}
.y154{bottom:666.118667pt;}
.y6e{bottom:666.697852pt;}
.y9{bottom:666.996000pt;}
.y13d{bottom:672.209333pt;}
.yb7{bottom:674.455563pt;}
.y11e{bottom:675.417333pt;}
.y1d{bottom:677.156000pt;}
.y37{bottom:678.731694pt;}
.yce{bottom:679.136000pt;}
.y8{bottom:680.266667pt;}
.y153{bottom:682.058667pt;}
.yf8{bottom:684.714667pt;}
.y5d{bottom:685.132200pt;}
.y174{bottom:687.774667pt;}
.y13c{bottom:688.150667pt;}
.y93{bottom:689.198950pt;}
.y6d{bottom:689.317333pt;}
.yb6{bottom:690.050143pt;}
.y11d{bottom:691.357333pt;}
.y1c{bottom:693.096000pt;}
.y152{bottom:697.998667pt;}
.y36{bottom:698.573277pt;}
.yf7{bottom:700.656000pt;}
.ycd{bottom:701.718667pt;}
.y5c{bottom:703.053646pt;}
.y173{bottom:703.714667pt;}
.y13b{bottom:704.090667pt;}
.y92{bottom:704.793530pt;}
.y6c{bottom:705.257333pt;}
.y1b{bottom:709.037333pt;}
.yb5{bottom:709.342810pt;}
.y7{bottom:710.162667pt;}
.y11c{bottom:713.938667pt;}
.ycc{bottom:717.658667pt;}
.y35{bottom:718.254844pt;}
.y172{bottom:719.654667pt;}
.y13a{bottom:720.030667pt;}
.y91{bottom:720.388110pt;}
.y5b{bottom:720.975063pt;}
.y151{bottom:723.237333pt;}
.y1a{bottom:724.977333pt;}
.y11b{bottom:729.878667pt;}
.yb4{bottom:730.260000pt;}
.ycb{bottom:733.598667pt;}
.y171{bottom:735.596000pt;}
.y139{bottom:735.970667pt;}
.y90{bottom:735.982690pt;}
.yf6{bottom:736.521333pt;}
.y34{bottom:738.096427pt;}
.y5a{bottom:739.056526pt;}
.y150{bottom:739.177333pt;}
.y19{bottom:740.917333pt;}
.y6{bottom:742.636000pt;}
.y11a{bottom:745.820000pt;}
.y8f{bottom:751.577271pt;}
.y138{bottom:751.910667pt;}
.yf5{bottom:752.461333pt;}
.y5{bottom:756.065333pt;}
.yca{bottom:756.181333pt;}
.y18{bottom:756.857333pt;}
.y33{bottom:757.778025pt;}
.y6b{bottom:760.637333pt;}
.y14f{bottom:764.416000pt;}
.yb3{bottom:766.527934pt;}
.y137{bottom:767.850667pt;}
.y119{bottom:768.401333pt;}
.y8e{bottom:770.869938pt;}
.yc9{bottom:772.121333pt;}
.y17{bottom:772.797333pt;}
.y59{bottom:772.979223pt;}
.yf4{bottom:775.042667pt;}
.y6a{bottom:776.577333pt;}
.y32{bottom:777.619609pt;}
.y14e{bottom:780.356000pt;}
.yb2{bottom:782.122514pt;}
.y136{bottom:783.792000pt;}
.y118{bottom:784.341333pt;}
.y58{bottom:790.900669pt;}
.yf3{bottom:790.984000pt;}
.y69{bottom:792.517333pt;}
.yc8{bottom:794.702667pt;}
.y14d{bottom:796.297333pt;}
.y31{bottom:797.461192pt;}
.yb1{bottom:797.717094pt;}
.yf2{bottom:806.924000pt;}
.y57{bottom:808.982103pt;}
.yc7{bottom:810.644000pt;}
.y16{bottom:812.237333pt;}
.yb0{bottom:813.311674pt;}
.y30{bottom:817.142760pt;}
.y135{bottom:817.836000pt;}
.y8d{bottom:819.674514pt;}
.y117{bottom:822.864000pt;}
.y56{bottom:826.903549pt;}
.yaf{bottom:828.906254pt;}
.yf1{bottom:829.505333pt;}
.y8c{bottom:835.269094pt;}
.y2f{bottom:836.984343pt;}
.yae{bottom:844.502139pt;}
.y55{bottom:844.824966pt;}
.yf0{bottom:845.445333pt;}
.y8b{bottom:850.863674pt;}
.y2e{bottom:856.665910pt;}
.yad{bottom:860.096719pt;}
.y134{bottom:860.601333pt;}
.y116{bottom:861.386667pt;}
.y8a{bottom:866.458254pt;}
.yef{bottom:868.028000pt;}
.y133{bottom:870.134667pt;}
.y2d{bottom:874.107322pt;}
.yac{bottom:875.691299pt;}
.y54{bottom:878.907709pt;}
.y15{bottom:881.312000pt;}
.y89{bottom:882.052835pt;}
.yee{bottom:883.968000pt;}
.y132{bottom:889.825333pt;}
.yab{bottom:891.285880pt;}
.yc6{bottom:893.001333pt;}
.y53{bottom:896.829141pt;}
.y88{bottom:897.648719pt;}
.y131{bottom:899.358667pt;}
.y4{bottom:899.408000pt;}
.y115{bottom:899.908000pt;}
.yed{bottom:906.550667pt;}
.yaa{bottom:906.880460pt;}
.y2c{bottom:907.069951pt;}
.y87{bottom:913.243299pt;}
.y52{bottom:914.750574pt;}
.y3{bottom:918.801333pt;}
.y130{bottom:919.049333pt;}
.ya9{bottom:922.475040pt;}
.yec{bottom:922.490667pt;}
.y86{bottom:928.837880pt;}
.y12f{bottom:935.137333pt;}
.ya8{bottom:938.070925pt;}
.y12e{bottom:938.098667pt;}
.yeb{bottom:938.430667pt;}
.y2b{bottom:940.672645pt;}
.y85{bottom:944.432460pt;}
.y51{bottom:948.673285pt;}
.y12d{bottom:950.717333pt;}
.ya7{bottom:957.362288pt;}
.y84{bottom:960.027040pt;}
.yea{bottom:961.012000pt;}
.y2a{bottom:975.235407pt;}
.ya6{bottom:976.953333pt;}
.y83{bottom:979.319708pt;}
.y49{bottom:999.397344pt;}
.y26{bottom:1007.397984pt;}
.y48{bottom:1020.999071pt;}
.y25{bottom:1025.319415pt;}
.y47{bottom:1040.360620pt;}
.y46{bottom:1059.882178pt;}
.h16{height:3.727944pt;}
.h14{height:12.000960pt;}
.hc{height:18.081402pt;}
.h1f{height:23.910320pt;}
.h21{height:27.895400pt;}
.h1d{height:31.880440pt;}
.h13{height:32.592623pt;}
.h10{height:32.769516pt;}
.h9{height:37.512660pt;}
.h17{height:38.677362pt;}
.h1a{height:38.986998pt;}
.h7{height:39.850560pt;}
.h20{height:41.604003pt;}
.h12{height:42.871427pt;}
.he{height:44.442724pt;}
.h19{height:44.754204pt;}
.h18{height:44.980917pt;}
.h1b{height:45.120953pt;}
.h6{height:46.120381pt;}
.h1e{height:47.180733pt;}
.h1c{height:47.820680pt;}
.h11{height:48.645718pt;}
.hf{height:49.858520pt;}
.hd{height:58.570822pt;}
.h5{height:59.775840pt;}
.hb{height:60.296031pt;}
.h15{height:63.663734pt;}
.h8{height:68.861760pt;}
.h3{height:95.204669pt;}
.h2{height:95.469898pt;}
.h0{height:1122.517333pt;}
.h4{height:1122.520000pt;}
.ha{height:1122.557333pt;}
.h1{height:1122.666667pt;}
.wd{width:3.040221pt;}
.w8{width:3.040282pt;}
.w6{width:3.200238pt;}
.wa{width:3.200268pt;}
.wc{width:10.240809pt;}
.w7{width:19.041501pt;}
.w9{width:22.721789pt;}
.wb{width:34.562763pt;}
.w4{width:46.373047pt;}
.we{width:65.605285pt;}
.w5{width:296.343713pt;}
.w0{width:793.698667pt;}
.w2{width:793.701333pt;}
.w3{width:793.758667pt;}
.w1{width:794.000000pt;}
.x13{left:-37.633673pt;}
.x0{left:0.000000pt;}
.xe{left:75.590667pt;}
.x2a{left:83.388609pt;}
.x33{left:88.236000pt;}
.x16{left:94.376887pt;}
.xf{left:95.516000pt;}
.x26{left:97.577139pt;}
.x2f{left:99.800000pt;}
.x37{left:102.157333pt;}
.x2d{left:126.068000pt;}
.x14{left:164.462488pt;}
.x29{left:166.298667pt;}
.x2c{left:167.326667pt;}
.x2b{left:172.935806pt;}
.x1a{left:199.985333pt;}
.x1b{left:201.585467pt;}
.x3{left:226.417333pt;}
.x1{left:234.857551pt;}
.x32{left:242.801333pt;}
.x17{left:261.910300pt;}
.x6{left:273.094667pt;}
.x9{left:278.481333pt;}
.x11{left:283.351987pt;}
.x35{left:285.948000pt;}
.xa{left:286.936000pt;}
.x36{left:288.152000pt;}
.x8{left:293.677333pt;}
.xc{left:298.241333pt;}
.x7{left:299.317333pt;}
.x5{left:300.293333pt;}
.x28{left:301.913500pt;}
.xb{left:304.876000pt;}
.x30{left:325.593333pt;}
.x4{left:328.076000pt;}
.x34{left:329.733333pt;}
.x2{left:335.319474pt;}
.x2e{left:361.862667pt;}
.xd{left:365.182667pt;}
.x12{left:374.719312pt;}
.x38{left:391.750667pt;}
.x15{left:396.801065pt;}
.x39{left:418.317333pt;}
.x27{left:444.484903pt;}
.x18{left:461.126218pt;}
.x1c{left:497.929180pt;}
.x1d{left:501.129418pt;}
.x1e{left:520.170919pt;}
.x1f{left:523.211201pt;}
.x10{left:540.404000pt;}
.x20{left:545.932990pt;}
.x21{left:549.133258pt;}
.x22{left:583.696021pt;}
.x23{left:586.896289pt;}
.x24{left:597.137098pt;}
.x25{left:600.177319pt;}
.x31{left:670.716000pt;}
.x19{left:697.945150pt;}
}




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