
    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_1ee90a6d14002ce6fcbc949f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_9f95940d3e15036f688b33b3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_6b110c6b17852c710db5f052.woff')format("woff");}.ff3{font-family:ff3;line-height:0.759870;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_0ac61c03c42aca8b5d5731e7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_1334230fef0898ea786e45cc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_88d4659516d5e6a80afa0612.woff')format("woff");}.ff6{font-family:ff6;line-height:1.135742;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_5626f7d76a2bd299fe8fbe88.woff')format("woff");}.ff7{font-family:ff7;line-height:1.133301;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_fdb250ea84c2c2e795a601dc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_d516a01704f885e10f1f4026.woff')format("woff");}.ff9{font-family:ff9;line-height:1.026855;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_955ea6d790ef810fcbd93a7f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.026855;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_2ef01c76cba9f7c240bcda48.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_4add3757d86c6cd237c09232.woff')format("woff");}.ffc{font-family:ffc;line-height:0.976111;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_65bb6f3214c30e77d0028bc3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.963953;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_7296231a87cd1a636295244d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.710938;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_eb328600c73cc012717dfec4.woff')format("woff");}.fff{font-family:fff;line-height:0.760342;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_18467eda4eb1ff5367bc7dc0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_3a6854f0ba744d920b0142c3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.976094;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_a0862a8cb5f28bab96af3882.woff')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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:ff13;src:url('chunks/assets/font_8e82fc6f39768de2f3e599c6.woff')format("woff");}.ff13{font-family:ff13;line-height:0.963947;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:27.000000px;}
.ls2b{letter-spacing:-7.776000px;}
.ls37{letter-spacing:-7.236000px;}
.ls43{letter-spacing:-6.120000px;}
.ls12{letter-spacing:-5.220000px;}
.ls16{letter-spacing:-4.380000px;}
.ls2a{letter-spacing:-3.780000px;}
.ls17{letter-spacing:-3.300000px;}
.ls28{letter-spacing:-3.240000px;}
.ls2f{letter-spacing:-2.760000px;}
.ls11{letter-spacing:-1.380000px;}
.lsf{letter-spacing:-1.200000px;}
.ls45{letter-spacing:-1.080000px;}
.ls44{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.918000px;}
.ls18{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.691200px;}
.lse{letter-spacing:-0.600000px;}
.ls29{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.524700px;}
.ls8{letter-spacing:-0.510000px;}
.ls35{letter-spacing:-0.480000px;}
.ls36{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.408000px;}
.ls7{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.001200px;}
.ls2e{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.012000px;}
.ls33{letter-spacing:0.018600px;}
.ls32{letter-spacing:0.019200px;}
.ls13{letter-spacing:0.022200px;}
.ls15{letter-spacing:0.022800px;}
.ls6{letter-spacing:0.025800px;}
.ls40{letter-spacing:0.270600px;}
.ls41{letter-spacing:0.271200px;}
.ls3f{letter-spacing:0.297600px;}
.ls5{letter-spacing:0.333240px;}
.ls42{letter-spacing:0.540000px;}
.ls3a{letter-spacing:0.571200px;}
.ls3c{letter-spacing:0.582600px;}
.ls3e{letter-spacing:0.583200px;}
.ls3d{letter-spacing:0.598800px;}
.ls4{letter-spacing:0.600000px;}
.ls3b{letter-spacing:0.619200px;}
.ls2d{letter-spacing:0.622200px;}
.ls31{letter-spacing:1.051800px;}
.ls1c{letter-spacing:1.064400px;}
.ls1e{letter-spacing:1.065000px;}
.ls1b{letter-spacing:1.078800px;}
.ls20{letter-spacing:1.079400px;}
.ls1a{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.093200px;}
.ls1d{letter-spacing:1.096800px;}
.ls1f{letter-spacing:1.097400px;}
.ls3{letter-spacing:1.099200px;}
.lsd{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.311000px;}
.ls34{letter-spacing:1.910400px;}
.ls27{letter-spacing:2.671200px;}
.ls30{letter-spacing:3.413400px;}
.ls2c{letter-spacing:5.520600px;}
.ls14{letter-spacing:8.971200px;}
.ls38{letter-spacing:9.529200px;}
.ls2{letter-spacing:9.735600px;}
.ls0{letter-spacing:43.181364px;}
.ls24{letter-spacing:44.366400px;}
.ls22{letter-spacing:69.687000px;}
.ls21{letter-spacing:69.687600px;}
.ls23{letter-spacing:69.939600px;}
.ls25{letter-spacing:71.754000px;}
.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;}
}
.ws43{word-spacing:-71.852400px;}
.ws33{word-spacing:-60.000000px;}
.ws36{word-spacing:-59.400000px;}
.ws37{word-spacing:-59.100000px;}
.ws2{word-spacing:-48.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws31{word-spacing:-16.434000px;}
.ws6c{word-spacing:-16.302000px;}
.ws68{word-spacing:-15.420000px;}
.ws1b{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws20{word-spacing:-14.880000px;}
.ws32{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.700000px;}
.ws3b{word-spacing:-14.310000px;}
.ws50{word-spacing:-14.220000px;}
.ws2e{word-spacing:-13.560000px;}
.ws21{word-spacing:-13.500000px;}
.ws2d{word-spacing:-13.446000px;}
.ws80{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws48{word-spacing:-12.906000px;}
.wsc{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.772000px;}
.ws1{word-spacing:-11.371200px;}
.wsa{word-spacing:-11.232000px;}
.ws9{word-spacing:-10.854000px;}
.ws19{word-spacing:-10.800000px;}
.wsd{word-spacing:-10.464000px;}
.ws2f{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.417600px;}
.ws60{word-spacing:-8.675040px;}
.ws38{word-spacing:-8.150340px;}
.ws82{word-spacing:-7.807536px;}
.ws2b{word-spacing:-5.280000px;}
.ws76{word-spacing:-3.480000px;}
.ws54{word-spacing:-3.180000px;}
.ws5e{word-spacing:-3.060000px;}
.ws81{word-spacing:-2.538000px;}
.ws67{word-spacing:-2.268000px;}
.ws66{word-spacing:-2.214000px;}
.ws4a{word-spacing:-2.160000px;}
.ws62{word-spacing:-2.106000px;}
.ws5d{word-spacing:-2.040000px;}
.ws14{word-spacing:-1.836000px;}
.ws7d{word-spacing:-1.740000px;}
.ws5f{word-spacing:-1.566000px;}
.ws13{word-spacing:-1.512000px;}
.ws12{word-spacing:-1.458000px;}
.ws1f{word-spacing:-1.200000px;}
.ws44{word-spacing:-1.080000px;}
.ws57{word-spacing:-1.020000px;}
.ws4e{word-spacing:-0.810000px;}
.ws55{word-spacing:-0.780000px;}
.ws5a{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.600000px;}
.ws77{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws34{word-spacing:-0.180000px;}
.wsb{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.ws6a{word-spacing:0.270000px;}
.ws6b{word-spacing:0.324000px;}
.ws0{word-spacing:0.408000px;}
.ws61{word-spacing:0.420000px;}
.ws52{word-spacing:0.480000px;}
.ws49{word-spacing:0.540000px;}
.ws29{word-spacing:0.600000px;}
.ws10{word-spacing:0.691200px;}
.ws59{word-spacing:0.780000px;}
.ws58{word-spacing:0.840000px;}
.wsf{word-spacing:0.864000px;}
.ws3a{word-spacing:0.900000px;}
.ws18{word-spacing:0.918000px;}
.ws7f{word-spacing:0.960000px;}
.ws2a{word-spacing:1.020000px;}
.ws83{word-spacing:1.080000px;}
.ws16{word-spacing:1.134000px;}
.ws1c{word-spacing:1.140000px;}
.ws2c{word-spacing:1.200000px;}
.ws75{word-spacing:1.260000px;}
.ws30{word-spacing:1.296000px;}
.ws56{word-spacing:1.500000px;}
.ws53{word-spacing:1.680000px;}
.ws51{word-spacing:1.800000px;}
.ws71{word-spacing:2.160000px;}
.ws63{word-spacing:2.322000px;}
.ws5b{word-spacing:2.400000px;}
.ws4f{word-spacing:2.592000px;}
.ws45{word-spacing:2.646000px;}
.ws46{word-spacing:2.700000px;}
.ws4d{word-spacing:2.760000px;}
.ws69{word-spacing:2.880000px;}
.ws72{word-spacing:3.180000px;}
.ws47{word-spacing:3.240000px;}
.ws28{word-spacing:3.300000px;}
.ws7e{word-spacing:3.660000px;}
.ws1e{word-spacing:3.780000px;}
.ws1d{word-spacing:4.260000px;}
.ws39{word-spacing:4.380000px;}
.ws5c{word-spacing:5.400000px;}
.ws4c{word-spacing:5.508000px;}
.ws73{word-spacing:5.640000px;}
.ws74{word-spacing:5.700000px;}
.ws78{word-spacing:6.120000px;}
.ws4b{word-spacing:7.236000px;}
.ws7b{word-spacing:7.680000px;}
.ws7c{word-spacing:7.800000px;}
.ws6d{word-spacing:7.860000px;}
.ws70{word-spacing:8.640000px;}
.ws35{word-spacing:9.060000px;}
.ws65{word-spacing:9.450000px;}
.ws64{word-spacing:9.558000px;}
.ws7a{word-spacing:9.660000px;}
.ws15{word-spacing:9.828000px;}
.ws6e{word-spacing:10.920000px;}
.ws6f{word-spacing:18.600000px;}
.ws79{word-spacing:24.900000px;}
.ws40{word-spacing:33.940800px;}
.ws42{word-spacing:59.523600px;}
.ws3d{word-spacing:67.733400px;}
.ws3f{word-spacing:120.412800px;}
.ws41{word-spacing:140.614800px;}
.ws3e{word-spacing:171.436800px;}
.ws22{word-spacing:271.427400px;}
.ws27{word-spacing:303.568200px;}
.ws26{word-spacing:315.764400px;}
.ws3c{word-spacing:328.159200px;}
.ws24{word-spacing:367.987800px;}
.ws25{word-spacing:379.082400px;}
.ws23{word-spacing:429.971400px;}
._78{margin-left:-14.891400px;}
._74{margin-left:-13.456200px;}
._75{margin-left:-12.060600px;}
._e{margin-left:-10.005000px;}
._0{margin-left:-8.904600px;}
._d{margin-left:-6.692400px;}
._77{margin-left:-5.687400px;}
._3{margin-left:-4.620000px;}
._6{margin-left:-3.290400px;}
._1{margin-left:-1.734000px;}
._f{width:1.004400px;}
._2{width:2.007600px;}
._a{width:3.807000px;}
._b{width:4.914000px;}
._7{width:6.582600px;}
._8{width:7.754400px;}
._9{width:8.983800px;}
._4{width:10.330800px;}
._c{width:11.512800px;}
._70{width:13.371000px;}
._5{width:15.476400px;}
._35{width:17.268000px;}
._72{width:18.643800px;}
._73{width:19.651200px;}
._71{width:21.852000px;}
._7b{width:23.922000px;}
._7c{width:25.692000px;}
._79{width:28.076400px;}
._7a{width:29.379600px;}
._7e{width:30.564000px;}
._7f{width:31.586400px;}
._83{width:32.599800px;}
._82{width:33.864000px;}
._81{width:36.896400px;}
._80{width:38.253600px;}
._2a{width:40.933800px;}
._7d{width:42.162600px;}
._34{width:43.377600px;}
._14{width:52.896600px;}
._76{width:56.160000px;}
._66{width:61.442400px;}
._65{width:62.991600px;}
._55{width:66.559200px;}
._3e{width:67.950000px;}
._4c{width:69.285600px;}
._4f{width:70.838400px;}
._40{width:71.962200px;}
._6d{width:73.306200px;}
._3f{width:76.484400px;}
._15{width:78.235200px;}
._44{width:79.490400px;}
._6a{width:81.547800px;}
._53{width:83.151000px;}
._47{width:87.059400px;}
._4a{width:88.314600px;}
._51{width:91.281600px;}
._3b{width:92.603400px;}
._36{width:94.531200px;}
._4b{width:95.615400px;}
._52{width:97.944600px;}
._48{width:99.682200px;}
._4d{width:103.461000px;}
._43{width:104.775600px;}
._49{width:108.350400px;}
._46{width:112.716000px;}
._5d{width:114.752400px;}
._13{width:116.776800px;}
._12{width:118.459800px;}
._45{width:120.807000px;}
._41{width:122.788200px;}
._42{width:129.475200px;}
._3c{width:135.122400px;}
._3a{width:139.374000px;}
._2f{width:142.018200px;}
._2b{width:146.194800px;}
._63{width:147.223200px;}
._28{width:149.298600px;}
._57{width:155.510400px;}
._5e{width:157.241400px;}
._5c{width:159.483600px;}
._22{width:160.702200px;}
._29{width:165.112800px;}
._5a{width:168.888600px;}
._32{width:170.446200px;}
._1f{width:172.513800px;}
._2d{width:174.472800px;}
._33{width:180.867600px;}
._19{width:184.326000px;}
._59{width:185.897400px;}
._38{width:189.592800px;}
._2e{width:192.515400px;}
._31{width:195.559200px;}
._2c{width:202.105800px;}
._58{width:210.558000px;}
._37{width:213.625200px;}
._11{width:214.819200px;}
._30{width:220.364400px;}
._39{width:225.166200px;}
._62{width:227.995800px;}
._4e{width:230.125800px;}
._1a{width:233.994000px;}
._23{width:238.597800px;}
._6e{width:242.989800px;}
._5b{width:244.573800px;}
._10{width:257.110200px;}
._25{width:267.169200px;}
._24{width:279.249600px;}
._1c{width:282.196200px;}
._21{width:283.251000px;}
._17{width:287.733600px;}
._1e{width:294.160800px;}
._1d{width:300.744000px;}
._18{width:306.294600px;}
._27{width:315.496200px;}
._61{width:328.531800px;}
._56{width:332.956200px;}
._26{width:334.858200px;}
._16{width:359.092200px;}
._20{width:371.430000px;}
._68{width:397.831800px;}
._1b{width:429.736200px;}
._5f{width:473.641800px;}
._54{width:476.077800px;}
._3d{width:491.254200px;}
._64{width:505.603800px;}
._6f{width:509.845800px;}
._67{width:568.225800px;}
._6c{width:589.435800px;}
._50{width:598.129800px;}
._60{width:605.857800px;}
._6b{width:617.029800px;}
._69{width:642.019800px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.036150px;}
.ya8{bottom:110.551200px;}
.y82{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.yaa{bottom:114.803250px;}
.y2b{bottom:117.212550px;}
.yc{bottom:117.875550px;}
.yb5{bottom:120.500700px;}
.yb3{bottom:120.500850px;}
.yb{bottom:132.275550px;}
.y81{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yb4{bottom:140.300700px;}
.yb2{bottom:140.300850px;}
.ya{bottom:146.675550px;}
.y80{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yd7{bottom:160.937100px;}
.y9{bottom:161.075550px;}
.y8{bottom:175.475550px;}
.y7f{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.ya9{bottom:189.693000px;}
.yd6{bottom:190.441050px;}
.y7e{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y7d{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.y39{bottom:231.792600px;}
.y7c{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.ybc{bottom:243.298050px;}
.y38{bottom:249.792600px;}
.y7b{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.ybb{bottom:263.098050px;}
.y24{bottom:264.212550px;}
.y37{bottom:267.792600px;}
.y9b{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.yba{bottom:282.898050px;}
.y23{bottom:285.212550px;}
.y36{bottom:285.792600px;}
.y7a{bottom:295.440900px;}
.y9a{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.y35{bottom:303.792600px;}
.y22{bottom:306.212550px;}
.ycc{bottom:316.369500px;}
.y34{bottom:321.792600px;}
.y99{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.ycb{bottom:336.169500px;}
.y33{bottom:339.792600px;}
.y79{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.yca{bottom:355.969500px;}
.y78{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.yab{bottom:366.973200px;}
.y1f{bottom:369.212550px;}
.y32{bottom:374.800500px;}
.y77{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y31{bottom:392.800500px;}
.y76{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.y30{bottom:410.800500px;}
.y1d{bottom:411.212550px;}
.yd5{bottom:421.441050px;}
.y75{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.y1c{bottom:443.700300px;}
.y2f{bottom:445.808400px;}
.y74{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.y2e{bottom:463.808400px;}
.y73{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.y2d{bottom:481.808400px;}
.yd3{bottom:484.441050px;}
.y98{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.y2c{bottom:499.808400px;}
.y97{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.ya7{bottom:515.459250px;}
.y1b{bottom:524.227950px;}
.y96{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.y95{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.y1a{bottom:565.287750px;}
.y94{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y19{bottom:585.087750px;}
.ye5{bottom:589.440900px;}
.y93{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y18{bottom:604.887750px;}
.ya6{bottom:610.441050px;}
.y92{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.yb9{bottom:623.173800px;}
.y17{bottom:624.687750px;}
.yd0{bottom:629.767800px;}
.y91{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.yb8{bottom:642.973800px;}
.y16{bottom:644.487750px;}
.yac{bottom:644.995200px;}
.yce{bottom:646.563150px;}
.ycf{bottom:649.567950px;}
.yb7{bottom:650.815200px;}
.y52{bottom:659.078850px;}
.ybf{bottom:659.741250px;}
.y15{bottom:664.287750px;}
.ye4{bottom:664.529250px;}
.ycd{bottom:666.363150px;}
.yb6{bottom:670.615200px;}
.ybe{bottom:679.541250px;}
.y72{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.y14{bottom:684.087750px;}
.yad{bottom:692.733900px;}
.ybd{bottom:699.341250px;}
.y71{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.yd2{bottom:701.690700px;}
.yc9{bottom:701.838750px;}
.y90{bottom:702.181950px;}
.y13{bottom:703.887750px;}
.yd1{bottom:721.490700px;}
.yc8{bottom:721.638750px;}
.y8f{bottom:721.981950px;}
.y70{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.y12{bottom:723.687750px;}
.yb1{bottom:727.350600px;}
.y6f{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.y11{bottom:743.487750px;}
.yb0{bottom:747.150600px;}
.ye3{bottom:748.529250px;}
.y10{bottom:763.287750px;}
.y6e{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.yf{bottom:783.087750px;}
.ye2{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.yd4{bottom:799.441050px;}
.ye1{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.ye{bottom:814.185300px;}
.yae{bottom:816.811650px;}
.ye0{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.ydf{bottom:848.078700px;}
.y6d{bottom:848.078850px;}
.ya5{bottom:850.216050px;}
.y49{bottom:861.513600px;}
.yc7{bottom:869.078850px;}
.ya4{bottom:871.216050px;}
.yde{bottom:874.529250px;}
.y48{bottom:882.513600px;}
.yaf{bottom:884.021250px;}
.yc6{bottom:890.078850px;}
.y8e{bottom:890.747700px;}
.ya3{bottom:892.216050px;}
.y7{bottom:893.466750px;}
.ydd{bottom:911.078700px;}
.yc5{bottom:911.078850px;}
.y8d{bottom:911.378700px;}
.y6{bottom:911.466750px;}
.y47{bottom:914.811000px;}
.ya2{bottom:924.513600px;}
.y8c{bottom:932.009550px;}
.ydc{bottom:932.078700px;}
.yc4{bottom:932.078850px;}
.y5{bottom:946.474800px;}
.y8b{bottom:952.640400px;}
.ydb{bottom:953.078700px;}
.yc3{bottom:953.078850px;}
.ya1{bottom:956.811000px;}
.y8a{bottom:973.271400px;}
.y46{bottom:974.078700px;}
.yc2{bottom:974.078850px;}
.y4{bottom:983.282550px;}
.y89{bottom:993.902400px;}
.y45{bottom:995.078700px;}
.yc1{bottom:995.078850px;}
.yda{bottom:1000.529250px;}
.y88{bottom:1014.533250px;}
.y44{bottom:1016.078700px;}
.ya0{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y87{bottom:1035.164100px;}
.y43{bottom:1037.078700px;}
.y9f{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y86{bottom:1055.794950px;}
.y42{bottom:1058.078700px;}
.y9e{bottom:1058.078850px;}
.yd9{bottom:1063.529250px;}
.y85{bottom:1076.425950px;}
.y41{bottom:1079.078700px;}
.y9d{bottom:1079.078850px;}
.y84{bottom:1083.175950px;}
.y40{bottom:1100.078700px;}
.yc0{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y83{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y9c{bottom:1121.078850px;}
.yd8{bottom:1125.451650px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y3e{bottom:1178.691750px;}
.h12{height:33.448242px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h13{height:38.062500px;}
.he{height:38.273438px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h5{height:43.359375px;}
.h8{height:45.615234px;}
.h15{height:45.674994px;}
.h14{height:47.343750px;}
.h9{height:48.937500px;}
.hf{height:50.176758px;}
.h16{height:52.078125px;}
.hb{height:54.375000px;}
.ha{height:54.738281px;}
.h17{height:56.812500px;}
.h4{height:59.812500px;}
.h10{height:60.448242px;}
.h3{height:81.231445px;}
.h11{height:87.448242px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.xd{left:130.834800px;}
.x12{left:150.882750px;}
.x13{left:170.682750px;}
.x14{left:190.482750px;}
.x15{left:219.839700px;}
.x16{left:242.213850px;}
.x17{left:264.545550px;}
.x18{left:278.045550px;}
.x4{left:300.189000px;}
.x5{left:317.196900px;}
.x19{left:322.708950px;}
.x2d{left:334.204650px;}
.x1a{left:345.040650px;}
.x11{left:368.220450px;}
.x1b{left:389.704050px;}
.x3{left:396.050700px;}
.x1c{left:412.035750px;}
.x1d{left:434.367300px;}
.x1e{left:456.699150px;}
.x1f{left:479.030850px;}
.x20{left:501.362550px;}
.x21{left:523.694250px;}
.x22{left:546.025800px;}
.x23{left:568.357500px;}
.x24{left:590.689200px;}
.xe{left:610.996350px;}
.x25{left:613.020900px;}
.x26{left:635.352600px;}
.xa{left:652.459950px;}
.x27{left:657.684300px;}
.x28{left:680.016000px;}
.x9{left:689.707950px;}
.x29{left:702.347700px;}
.x2a{left:715.847700px;}
.x2b{left:738.179400px;}
.xf{left:755.723100px;}
.x2c{left:806.560800px;}
.x1{left:813.069600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:24.000000pt;}
.ls2b{letter-spacing:-6.912000pt;}
.ls37{letter-spacing:-6.432000pt;}
.ls43{letter-spacing:-5.440000pt;}
.ls12{letter-spacing:-4.640000pt;}
.ls16{letter-spacing:-3.893333pt;}
.ls2a{letter-spacing:-3.360000pt;}
.ls17{letter-spacing:-2.933333pt;}
.ls28{letter-spacing:-2.880000pt;}
.ls2f{letter-spacing:-2.453333pt;}
.ls11{letter-spacing:-1.226667pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls45{letter-spacing:-0.960000pt;}
.ls44{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.816000pt;}
.ls18{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.614400pt;}
.lse{letter-spacing:-0.533333pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.466400pt;}
.ls8{letter-spacing:-0.453333pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls36{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.362667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.001067pt;}
.ls2e{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.010667pt;}
.ls33{letter-spacing:0.016533pt;}
.ls32{letter-spacing:0.017067pt;}
.ls13{letter-spacing:0.019733pt;}
.ls15{letter-spacing:0.020267pt;}
.ls6{letter-spacing:0.022933pt;}
.ls40{letter-spacing:0.240533pt;}
.ls41{letter-spacing:0.241067pt;}
.ls3f{letter-spacing:0.264533pt;}
.ls5{letter-spacing:0.296213pt;}
.ls42{letter-spacing:0.480000pt;}
.ls3a{letter-spacing:0.507733pt;}
.ls3c{letter-spacing:0.517867pt;}
.ls3e{letter-spacing:0.518400pt;}
.ls3d{letter-spacing:0.532267pt;}
.ls4{letter-spacing:0.533333pt;}
.ls3b{letter-spacing:0.550400pt;}
.ls2d{letter-spacing:0.553067pt;}
.ls31{letter-spacing:0.934933pt;}
.ls1c{letter-spacing:0.946133pt;}
.ls1e{letter-spacing:0.946667pt;}
.ls1b{letter-spacing:0.958933pt;}
.ls20{letter-spacing:0.959467pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls26{letter-spacing:0.971733pt;}
.ls1d{letter-spacing:0.974933pt;}
.ls1f{letter-spacing:0.975467pt;}
.ls3{letter-spacing:0.977067pt;}
.lsd{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.165333pt;}
.ls34{letter-spacing:1.698133pt;}
.ls27{letter-spacing:2.374400pt;}
.ls30{letter-spacing:3.034133pt;}
.ls2c{letter-spacing:4.907200pt;}
.ls14{letter-spacing:7.974400pt;}
.ls38{letter-spacing:8.470400pt;}
.ls2{letter-spacing:8.653867pt;}
.ls0{letter-spacing:38.383435pt;}
.ls24{letter-spacing:39.436800pt;}
.ls22{letter-spacing:61.944000pt;}
.ls21{letter-spacing:61.944533pt;}
.ls23{letter-spacing:62.168533pt;}
.ls25{letter-spacing:63.781333pt;}
.ws43{word-spacing:-63.868800pt;}
.ws33{word-spacing:-53.333333pt;}
.ws36{word-spacing:-52.800000pt;}
.ws37{word-spacing:-52.533333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws6{word-spacing:-15.936000pt;}
.ws31{word-spacing:-14.608000pt;}
.ws6c{word-spacing:-14.490667pt;}
.ws68{word-spacing:-13.706667pt;}
.ws1b{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws20{word-spacing:-13.226667pt;}
.ws32{word-spacing:-13.173333pt;}
.ws7{word-spacing:-13.066667pt;}
.ws3b{word-spacing:-12.720000pt;}
.ws50{word-spacing:-12.640000pt;}
.ws2e{word-spacing:-12.053333pt;}
.ws21{word-spacing:-12.000000pt;}
.ws2d{word-spacing:-11.952000pt;}
.ws80{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws48{word-spacing:-11.472000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.464000pt;}
.ws1{word-spacing:-10.107733pt;}
.wsa{word-spacing:-9.984000pt;}
.ws9{word-spacing:-9.648000pt;}
.ws19{word-spacing:-9.600000pt;}
.wsd{word-spacing:-9.301333pt;}
.ws2f{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.371200pt;}
.ws60{word-spacing:-7.711147pt;}
.ws38{word-spacing:-7.244747pt;}
.ws82{word-spacing:-6.940032pt;}
.ws2b{word-spacing:-4.693333pt;}
.ws76{word-spacing:-3.093333pt;}
.ws54{word-spacing:-2.826667pt;}
.ws5e{word-spacing:-2.720000pt;}
.ws81{word-spacing:-2.256000pt;}
.ws67{word-spacing:-2.016000pt;}
.ws66{word-spacing:-1.968000pt;}
.ws4a{word-spacing:-1.920000pt;}
.ws62{word-spacing:-1.872000pt;}
.ws5d{word-spacing:-1.813333pt;}
.ws14{word-spacing:-1.632000pt;}
.ws7d{word-spacing:-1.546667pt;}
.ws5f{word-spacing:-1.392000pt;}
.ws13{word-spacing:-1.344000pt;}
.ws12{word-spacing:-1.296000pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws44{word-spacing:-0.960000pt;}
.ws57{word-spacing:-0.906667pt;}
.ws4e{word-spacing:-0.720000pt;}
.ws55{word-spacing:-0.693333pt;}
.ws5a{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.533333pt;}
.ws77{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws34{word-spacing:-0.160000pt;}
.wsb{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.240000pt;}
.ws6b{word-spacing:0.288000pt;}
.ws0{word-spacing:0.362667pt;}
.ws61{word-spacing:0.373333pt;}
.ws52{word-spacing:0.426667pt;}
.ws49{word-spacing:0.480000pt;}
.ws29{word-spacing:0.533333pt;}
.ws10{word-spacing:0.614400pt;}
.ws59{word-spacing:0.693333pt;}
.ws58{word-spacing:0.746667pt;}
.wsf{word-spacing:0.768000pt;}
.ws3a{word-spacing:0.800000pt;}
.ws18{word-spacing:0.816000pt;}
.ws7f{word-spacing:0.853333pt;}
.ws2a{word-spacing:0.906667pt;}
.ws83{word-spacing:0.960000pt;}
.ws16{word-spacing:1.008000pt;}
.ws1c{word-spacing:1.013333pt;}
.ws2c{word-spacing:1.066667pt;}
.ws75{word-spacing:1.120000pt;}
.ws30{word-spacing:1.152000pt;}
.ws56{word-spacing:1.333333pt;}
.ws53{word-spacing:1.493333pt;}
.ws51{word-spacing:1.600000pt;}
.ws71{word-spacing:1.920000pt;}
.ws63{word-spacing:2.064000pt;}
.ws5b{word-spacing:2.133333pt;}
.ws4f{word-spacing:2.304000pt;}
.ws45{word-spacing:2.352000pt;}
.ws46{word-spacing:2.400000pt;}
.ws4d{word-spacing:2.453333pt;}
.ws69{word-spacing:2.560000pt;}
.ws72{word-spacing:2.826667pt;}
.ws47{word-spacing:2.880000pt;}
.ws28{word-spacing:2.933333pt;}
.ws7e{word-spacing:3.253333pt;}
.ws1e{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.786667pt;}
.ws39{word-spacing:3.893333pt;}
.ws5c{word-spacing:4.800000pt;}
.ws4c{word-spacing:4.896000pt;}
.ws73{word-spacing:5.013333pt;}
.ws74{word-spacing:5.066667pt;}
.ws78{word-spacing:5.440000pt;}
.ws4b{word-spacing:6.432000pt;}
.ws7b{word-spacing:6.826667pt;}
.ws7c{word-spacing:6.933333pt;}
.ws6d{word-spacing:6.986667pt;}
.ws70{word-spacing:7.680000pt;}
.ws35{word-spacing:8.053333pt;}
.ws65{word-spacing:8.400000pt;}
.ws64{word-spacing:8.496000pt;}
.ws7a{word-spacing:8.586667pt;}
.ws15{word-spacing:8.736000pt;}
.ws6e{word-spacing:9.706667pt;}
.ws6f{word-spacing:16.533333pt;}
.ws79{word-spacing:22.133333pt;}
.ws40{word-spacing:30.169600pt;}
.ws42{word-spacing:52.909867pt;}
.ws3d{word-spacing:60.207467pt;}
.ws3f{word-spacing:107.033600pt;}
.ws41{word-spacing:124.990933pt;}
.ws3e{word-spacing:152.388267pt;}
.ws22{word-spacing:241.268800pt;}
.ws27{word-spacing:269.838400pt;}
.ws26{word-spacing:280.679467pt;}
.ws3c{word-spacing:291.697067pt;}
.ws24{word-spacing:327.100267pt;}
.ws25{word-spacing:336.962133pt;}
.ws23{word-spacing:382.196800pt;}
._78{margin-left:-13.236800pt;}
._74{margin-left:-11.961067pt;}
._75{margin-left:-10.720533pt;}
._e{margin-left:-8.893333pt;}
._0{margin-left:-7.915200pt;}
._d{margin-left:-5.948800pt;}
._77{margin-left:-5.055467pt;}
._3{margin-left:-4.106667pt;}
._6{margin-left:-2.924800pt;}
._1{margin-left:-1.541333pt;}
._f{width:0.892800pt;}
._2{width:1.784533pt;}
._a{width:3.384000pt;}
._b{width:4.368000pt;}
._7{width:5.851200pt;}
._8{width:6.892800pt;}
._9{width:7.985600pt;}
._4{width:9.182933pt;}
._c{width:10.233600pt;}
._70{width:11.885333pt;}
._5{width:13.756800pt;}
._35{width:15.349333pt;}
._72{width:16.572267pt;}
._73{width:17.467733pt;}
._71{width:19.424000pt;}
._7b{width:21.264000pt;}
._7c{width:22.837333pt;}
._79{width:24.956800pt;}
._7a{width:26.115200pt;}
._7e{width:27.168000pt;}
._7f{width:28.076800pt;}
._83{width:28.977600pt;}
._82{width:30.101333pt;}
._81{width:32.796800pt;}
._80{width:34.003200pt;}
._2a{width:36.385600pt;}
._7d{width:37.477867pt;}
._34{width:38.557867pt;}
._14{width:47.019200pt;}
._76{width:49.920000pt;}
._66{width:54.615467pt;}
._65{width:55.992533pt;}
._55{width:59.163733pt;}
._3e{width:60.400000pt;}
._4c{width:61.587200pt;}
._4f{width:62.967467pt;}
._40{width:63.966400pt;}
._6d{width:65.161067pt;}
._3f{width:67.986133pt;}
._15{width:69.542400pt;}
._44{width:70.658133pt;}
._6a{width:72.486933pt;}
._53{width:73.912000pt;}
._47{width:77.386133pt;}
._4a{width:78.501867pt;}
._51{width:81.139200pt;}
._3b{width:82.314133pt;}
._36{width:84.027733pt;}
._4b{width:84.991467pt;}
._52{width:87.061867pt;}
._48{width:88.606400pt;}
._4d{width:91.965333pt;}
._43{width:93.133867pt;}
._49{width:96.311467pt;}
._46{width:100.192000pt;}
._5d{width:102.002133pt;}
._13{width:103.801600pt;}
._12{width:105.297600pt;}
._45{width:107.384000pt;}
._41{width:109.145067pt;}
._42{width:115.089067pt;}
._3c{width:120.108800pt;}
._3a{width:123.888000pt;}
._2f{width:126.238400pt;}
._2b{width:129.950933pt;}
._63{width:130.865067pt;}
._28{width:132.709867pt;}
._57{width:138.231467pt;}
._5e{width:139.770133pt;}
._5c{width:141.763200pt;}
._22{width:142.846400pt;}
._29{width:146.766933pt;}
._5a{width:150.123200pt;}
._32{width:151.507733pt;}
._1f{width:153.345600pt;}
._2d{width:155.086933pt;}
._33{width:160.771200pt;}
._19{width:163.845333pt;}
._59{width:165.242133pt;}
._38{width:168.526933pt;}
._2e{width:171.124800pt;}
._31{width:173.830400pt;}
._2c{width:179.649600pt;}
._58{width:187.162667pt;}
._37{width:189.889067pt;}
._11{width:190.950400pt;}
._30{width:195.879467pt;}
._39{width:200.147733pt;}
._62{width:202.662933pt;}
._4e{width:204.556267pt;}
._1a{width:207.994667pt;}
._23{width:212.086933pt;}
._6e{width:215.990933pt;}
._5b{width:217.398933pt;}
._10{width:228.542400pt;}
._25{width:237.483733pt;}
._24{width:248.221867pt;}
._1c{width:250.841067pt;}
._21{width:251.778667pt;}
._17{width:255.763200pt;}
._1e{width:261.476267pt;}
._1d{width:267.328000pt;}
._18{width:272.261867pt;}
._27{width:280.441067pt;}
._61{width:292.028267pt;}
._56{width:295.961067pt;}
._26{width:297.651733pt;}
._16{width:319.193067pt;}
._20{width:330.160000pt;}
._68{width:353.628267pt;}
._1b{width:381.987733pt;}
._5f{width:421.014933pt;}
._54{width:423.180267pt;}
._3d{width:436.670400pt;}
._64{width:449.425600pt;}
._6f{width:453.196267pt;}
._67{width:505.089600pt;}
._6c{width:523.942933pt;}
._50{width:531.670933pt;}
._60{width:538.540267pt;}
._6b{width:548.470933pt;}
._69{width:570.684267pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.698800pt;}
.ya8{bottom:98.267733pt;}
.y82{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.yaa{bottom:102.047333pt;}
.y2b{bottom:104.188933pt;}
.yc{bottom:104.778267pt;}
.yb5{bottom:107.111733pt;}
.yb3{bottom:107.111867pt;}
.yb{bottom:117.578267pt;}
.y81{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yb4{bottom:124.711733pt;}
.yb2{bottom:124.711867pt;}
.ya{bottom:130.378267pt;}
.y80{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yd7{bottom:143.055200pt;}
.y9{bottom:143.178267pt;}
.y8{bottom:155.978267pt;}
.y7f{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.ya9{bottom:168.616000pt;}
.yd6{bottom:169.280933pt;}
.y7e{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y7d{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.y39{bottom:206.037867pt;}
.y7c{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.ybc{bottom:216.264933pt;}
.y38{bottom:222.037867pt;}
.y7b{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.ybb{bottom:233.864933pt;}
.y24{bottom:234.855600pt;}
.y37{bottom:238.037867pt;}
.y9b{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.yba{bottom:251.464933pt;}
.y23{bottom:253.522267pt;}
.y36{bottom:254.037867pt;}
.y7a{bottom:262.614133pt;}
.y9a{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.y35{bottom:270.037867pt;}
.y22{bottom:272.188933pt;}
.ycc{bottom:281.217333pt;}
.y34{bottom:286.037867pt;}
.y99{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.ycb{bottom:298.817333pt;}
.y33{bottom:302.037867pt;}
.y79{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.yca{bottom:316.417333pt;}
.y78{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.yab{bottom:326.198400pt;}
.y1f{bottom:328.188933pt;}
.y32{bottom:333.156000pt;}
.y77{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y31{bottom:349.156000pt;}
.y76{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.y30{bottom:365.156000pt;}
.y1d{bottom:365.522267pt;}
.yd5{bottom:374.614267pt;}
.y75{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.y1c{bottom:394.400267pt;}
.y2f{bottom:396.274133pt;}
.y74{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.y2e{bottom:412.274133pt;}
.y73{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.y2d{bottom:428.274133pt;}
.yd3{bottom:430.614267pt;}
.y98{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.y2c{bottom:444.274133pt;}
.y97{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.ya7{bottom:458.186000pt;}
.y1b{bottom:465.980400pt;}
.y96{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.y95{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.y1a{bottom:502.478000pt;}
.y94{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y19{bottom:520.078000pt;}
.ye5{bottom:523.947467pt;}
.y93{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y18{bottom:537.678000pt;}
.ya6{bottom:542.614267pt;}
.y92{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.yb9{bottom:553.932267pt;}
.y17{bottom:555.278000pt;}
.yd0{bottom:559.793600pt;}
.y91{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.yb8{bottom:571.532267pt;}
.y16{bottom:572.878000pt;}
.yac{bottom:573.329067pt;}
.yce{bottom:574.722800pt;}
.ycf{bottom:577.393733pt;}
.yb7{bottom:578.502400pt;}
.y52{bottom:585.847867pt;}
.ybf{bottom:586.436667pt;}
.y15{bottom:590.478000pt;}
.ye4{bottom:590.692667pt;}
.ycd{bottom:592.322800pt;}
.yb6{bottom:596.102400pt;}
.ybe{bottom:604.036667pt;}
.y72{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.y14{bottom:608.078000pt;}
.yad{bottom:615.763467pt;}
.ybd{bottom:621.636667pt;}
.y71{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.yd2{bottom:623.725067pt;}
.yc9{bottom:623.856667pt;}
.y90{bottom:624.161733pt;}
.y13{bottom:625.678000pt;}
.yd1{bottom:641.325067pt;}
.yc8{bottom:641.456667pt;}
.y8f{bottom:641.761733pt;}
.y70{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.y12{bottom:643.278000pt;}
.yb1{bottom:646.533867pt;}
.y6f{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.y11{bottom:660.878000pt;}
.yb0{bottom:664.133867pt;}
.ye3{bottom:665.359333pt;}
.y10{bottom:678.478000pt;}
.y6e{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.yf{bottom:696.078000pt;}
.ye2{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.yd4{bottom:710.614267pt;}
.ye1{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.ye{bottom:723.720267pt;}
.yae{bottom:726.054800pt;}
.ye0{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.ydf{bottom:753.847733pt;}
.y6d{bottom:753.847867pt;}
.ya5{bottom:755.747600pt;}
.y49{bottom:765.789867pt;}
.yc7{bottom:772.514533pt;}
.ya4{bottom:774.414267pt;}
.yde{bottom:777.359333pt;}
.y48{bottom:784.456533pt;}
.yaf{bottom:785.796667pt;}
.yc6{bottom:791.181200pt;}
.y8e{bottom:791.775733pt;}
.ya3{bottom:793.080933pt;}
.y7{bottom:794.192667pt;}
.ydd{bottom:809.847733pt;}
.yc5{bottom:809.847867pt;}
.y8d{bottom:810.114400pt;}
.y6{bottom:810.192667pt;}
.y47{bottom:813.165333pt;}
.ya2{bottom:821.789867pt;}
.y8c{bottom:828.452933pt;}
.ydc{bottom:828.514400pt;}
.yc4{bottom:828.514533pt;}
.y5{bottom:841.310933pt;}
.y8b{bottom:846.791467pt;}
.ydb{bottom:847.181067pt;}
.yc3{bottom:847.181200pt;}
.ya1{bottom:850.498667pt;}
.y8a{bottom:865.130133pt;}
.y46{bottom:865.847733pt;}
.yc2{bottom:865.847867pt;}
.y4{bottom:874.028933pt;}
.y89{bottom:883.468800pt;}
.y45{bottom:884.514400pt;}
.yc1{bottom:884.514533pt;}
.yda{bottom:889.359333pt;}
.y88{bottom:901.807333pt;}
.y44{bottom:903.181067pt;}
.ya0{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y87{bottom:920.145867pt;}
.y43{bottom:921.847733pt;}
.y9f{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y86{bottom:938.484400pt;}
.y42{bottom:940.514400pt;}
.y9e{bottom:940.514533pt;}
.yd9{bottom:945.359333pt;}
.y85{bottom:956.823067pt;}
.y41{bottom:959.181067pt;}
.y9d{bottom:959.181200pt;}
.y84{bottom:962.823067pt;}
.y40{bottom:977.847733pt;}
.yc0{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y83{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y9c{bottom:996.514533pt;}
.yd8{bottom:1000.401467pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y3e{bottom:1047.726000pt;}
.h12{height:29.731771pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h13{height:33.833333pt;}
.he{height:34.020833pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h5{height:38.541667pt;}
.h8{height:40.546875pt;}
.h15{height:40.599995pt;}
.h14{height:42.083333pt;}
.h9{height:43.500000pt;}
.hf{height:44.601562pt;}
.h16{height:46.291667pt;}
.hb{height:48.333333pt;}
.ha{height:48.656250pt;}
.h17{height:50.500000pt;}
.h4{height:53.166667pt;}
.h10{height:53.731771pt;}
.h3{height:72.205729pt;}
.h11{height:77.731771pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.xd{left:116.297600pt;}
.x12{left:134.118000pt;}
.x13{left:151.718000pt;}
.x14{left:169.318000pt;}
.x15{left:195.413067pt;}
.x16{left:215.301200pt;}
.x17{left:235.151600pt;}
.x18{left:247.151600pt;}
.x4{left:266.834667pt;}
.x5{left:281.952800pt;}
.x19{left:286.852400pt;}
.x2d{left:297.070800pt;}
.x1a{left:306.702800pt;}
.x11{left:327.307067pt;}
.x1b{left:346.403600pt;}
.x3{left:352.045067pt;}
.x1c{left:366.254000pt;}
.x1d{left:386.104267pt;}
.x1e{left:405.954800pt;}
.x1f{left:425.805200pt;}
.x20{left:445.655600pt;}
.x21{left:465.506000pt;}
.x22{left:485.356267pt;}
.x23{left:505.206667pt;}
.x24{left:525.057067pt;}
.xe{left:543.107867pt;}
.x25{left:544.907467pt;}
.x26{left:564.757867pt;}
.xa{left:579.964400pt;}
.x27{left:584.608267pt;}
.x28{left:604.458667pt;}
.x9{left:613.073733pt;}
.x29{left:624.309067pt;}
.x2a{left:636.309067pt;}
.x2b{left:656.159467pt;}
.xf{left:671.753867pt;}
.x2c{left:716.942933pt;}
.x1{left:722.728533pt;}
}




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