
    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_13d4eee1b32f88313dc5e5dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_effe5b134a6439fb9a5c172a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_17dfa411c552c5fd0ca42734.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.143000;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_1b40825b44eb6989bc267483.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731000;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_8b3f9080c0712584eb6dc5aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.725000;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_f68af7158bd6d81fe99be1fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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_d056ff1d62fb755b9051d1ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_9305e421c8e82f6b6cd3b7f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_dbac4713707df7e60d7b2d84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_f465a6c5c41486bcf0a306b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.472000;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;}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m5{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);}
.v1{vertical-align:-1.644000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.960000px;}
.ls0{letter-spacing:2757.745714px;}
.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;}
}
.ws4{word-spacing:-16.872000px;}
.ws0{word-spacing:-14.400000px;}
.ws7a{word-spacing:-14.256000px;}
.ws2{word-spacing:-11.400000px;}
.ws1{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.692000px;}
.ws2c{word-spacing:-9.600000px;}
.ws2d{word-spacing:-9.000000px;}
.ws12{word-spacing:-4.731000px;}
.ws3a{word-spacing:-4.275000px;}
.wsb5{word-spacing:-3.402000px;}
.ws76{word-spacing:-3.135000px;}
.ws73{word-spacing:-3.021000px;}
.ws37{word-spacing:-2.907000px;}
.ws41{word-spacing:-2.850000px;}
.ws4c{word-spacing:-2.736000px;}
.ws93{word-spacing:-2.679000px;}
.ws23{word-spacing:-2.622000px;}
.wsab{word-spacing:-2.394000px;}
.wsb3{word-spacing:-2.376000px;}
.wsa4{word-spacing:-2.337000px;}
.ws27{word-spacing:-2.280000px;}
.ws2b{word-spacing:-2.166000px;}
.ws42{word-spacing:-2.109000px;}
.ws89{word-spacing:-2.052000px;}
.ws75{word-spacing:-1.995000px;}
.ws57{word-spacing:-1.938000px;}
.wsa{word-spacing:-1.836000px;}
.wsad{word-spacing:-1.824000px;}
.ws15{word-spacing:-1.710000px;}
.wsc0{word-spacing:-1.665000px;}
.wsb0{word-spacing:-1.539000px;}
.ws92{word-spacing:-1.425000px;}
.ws4d{word-spacing:-1.254000px;}
.wsaf{word-spacing:-1.197000px;}
.ws1d{word-spacing:-0.969000px;}
.ws2e{word-spacing:-0.960000px;}
.wsda{word-spacing:-0.945000px;}
.wsca{word-spacing:-0.675000px;}
.ws3d{word-spacing:-0.627000px;}
.wsa1{word-spacing:-0.513000px;}
.wse4{word-spacing:-0.495000px;}
.ws35{word-spacing:-0.456000px;}
.wscd{word-spacing:-0.450000px;}
.ws97{word-spacing:-0.399000px;}
.wsb2{word-spacing:-0.324000px;}
.ws88{word-spacing:-0.285000px;}
.ws77{word-spacing:-0.171000px;}
.ws24{word-spacing:-0.114000px;}
.wsdf{word-spacing:-0.090000px;}
.wsc3{word-spacing:-0.045000px;}
.wsb1{word-spacing:-0.044400px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.108000px;}
.ws8f{word-spacing:0.342000px;}
.wsae{word-spacing:0.399000px;}
.ws5d{word-spacing:0.456000px;}
.wsbc{word-spacing:0.585000px;}
.ws63{word-spacing:0.627000px;}
.wsc8{word-spacing:0.675000px;}
.ws86{word-spacing:0.684000px;}
.ws67{word-spacing:0.741000px;}
.ws95{word-spacing:0.969000px;}
.ws65{word-spacing:1.026000px;}
.wsd9{word-spacing:1.170000px;}
.wsac{word-spacing:1.311000px;}
.ws4e{word-spacing:1.368000px;}
.ws49{word-spacing:1.425000px;}
.ws85{word-spacing:1.482000px;}
.ws79{word-spacing:1.485000px;}
.wscc{word-spacing:1.530000px;}
.ws50{word-spacing:1.539000px;}
.wsc7{word-spacing:1.575000px;}
.ws6{word-spacing:1.620000px;}
.wsb9{word-spacing:1.665000px;}
.ws99{word-spacing:1.710000px;}
.ws8a{word-spacing:1.767000px;}
.ws5f{word-spacing:1.881000px;}
.wse1{word-spacing:1.890000px;}
.ws20{word-spacing:1.938000px;}
.ws8d{word-spacing:2.052000px;}
.ws4a{word-spacing:2.109000px;}
.wsdb{word-spacing:2.160000px;}
.ws48{word-spacing:2.223000px;}
.wsc5{word-spacing:2.340000px;}
.ws47{word-spacing:2.451000px;}
.ws28{word-spacing:2.508000px;}
.ws59{word-spacing:2.565000px;}
.ws39{word-spacing:2.736000px;}
.wsbb{word-spacing:2.835000px;}
.wsa7{word-spacing:2.850000px;}
.wsd7{word-spacing:2.880000px;}
.wsa9{word-spacing:2.907000px;}
.ws51{word-spacing:3.021000px;}
.ws87{word-spacing:3.078000px;}
.ws68{word-spacing:3.135000px;}
.wsb{word-spacing:3.186000px;}
.ws3c{word-spacing:3.192000px;}
.wsd4{word-spacing:3.240000px;}
.ws22{word-spacing:3.249000px;}
.ws62{word-spacing:3.306000px;}
.wsc1{word-spacing:3.465000px;}
.wsf{word-spacing:3.510000px;}
.ws44{word-spacing:3.534000px;}
.ws4f{word-spacing:3.591000px;}
.wsd1{word-spacing:3.600000px;}
.wsba{word-spacing:3.645000px;}
.ws83{word-spacing:3.705000px;}
.ws3e{word-spacing:3.819000px;}
.wsde{word-spacing:3.870000px;}
.ws8b{word-spacing:3.876000px;}
.wsa3{word-spacing:4.047000px;}
.ws2a{word-spacing:4.161000px;}
.ws69{word-spacing:4.218000px;}
.wsbe{word-spacing:4.230000px;}
.wse2{word-spacing:4.320000px;}
.ws17{word-spacing:4.332000px;}
.ws5e{word-spacing:4.446000px;}
.wsce{word-spacing:4.545000px;}
.ws80{word-spacing:4.560000px;}
.wsc4{word-spacing:4.590000px;}
.wse{word-spacing:4.644000px;}
.wsbf{word-spacing:4.725000px;}
.ws58{word-spacing:4.731000px;}
.ws70{word-spacing:4.845000px;}
.ws66{word-spacing:4.959000px;}
.ws9b{word-spacing:5.016000px;}
.ws9{word-spacing:5.022000px;}
.wsc{word-spacing:5.076000px;}
.ws1b{word-spacing:5.130000px;}
.wse3{word-spacing:5.175000px;}
.ws71{word-spacing:5.244000px;}
.ws2f{word-spacing:5.355000px;}
.wsb6{word-spacing:5.454000px;}
.ws84{word-spacing:5.529000px;}
.ws94{word-spacing:5.586000px;}
.ws8e{word-spacing:5.643000px;}
.ws64{word-spacing:5.700000px;}
.ws6e{word-spacing:5.814000px;}
.ws1a{word-spacing:5.871000px;}
.wsc9{word-spacing:5.895000px;}
.ws3f{word-spacing:5.928000px;}
.ws82{word-spacing:5.985000px;}
.ws7b{word-spacing:6.042000px;}
.ws7{word-spacing:6.048000px;}
.ws18{word-spacing:6.099000px;}
.wsd{word-spacing:6.210000px;}
.ws78{word-spacing:6.213000px;}
.ws3b{word-spacing:6.327000px;}
.ws5b{word-spacing:6.498000px;}
.ws90{word-spacing:6.555000px;}
.ws7f{word-spacing:6.726000px;}
.wsa6{word-spacing:6.783000px;}
.ws52{word-spacing:6.897000px;}
.wscf{word-spacing:6.930000px;}
.ws1c{word-spacing:6.954000px;}
.wsc6{word-spacing:7.020000px;}
.ws5c{word-spacing:7.068000px;}
.ws1f{word-spacing:7.182000px;}
.wsd3{word-spacing:7.200000px;}
.ws74{word-spacing:7.239000px;}
.ws7e{word-spacing:7.353000px;}
.ws13{word-spacing:7.467000px;}
.ws9d{word-spacing:7.524000px;}
.ws53{word-spacing:7.638000px;}
.wscb{word-spacing:7.740000px;}
.ws81{word-spacing:7.752000px;}
.wsd8{word-spacing:7.785000px;}
.wsa0{word-spacing:7.809000px;}
.wsb8{word-spacing:7.830000px;}
.ws98{word-spacing:7.866000px;}
.wse0{word-spacing:7.875000px;}
.ws5a{word-spacing:7.923000px;}
.ws16{word-spacing:7.980000px;}
.ws56{word-spacing:8.037000px;}
.ws33{word-spacing:8.094000px;}
.ws8{word-spacing:8.100000px;}
.ws45{word-spacing:8.265000px;}
.wsd6{word-spacing:8.370000px;}
.ws72{word-spacing:8.379000px;}
.ws6a{word-spacing:8.550000px;}
.ws6f{word-spacing:8.607000px;}
.ws1e{word-spacing:8.664000px;}
.ws11{word-spacing:8.721000px;}
.ws55{word-spacing:8.778000px;}
.wsc2{word-spacing:8.910000px;}
.ws38{word-spacing:8.949000px;}
.ws29{word-spacing:9.006000px;}
.ws7d{word-spacing:9.063000px;}
.ws25{word-spacing:9.234000px;}
.ws32{word-spacing:9.348000px;}
.ws14{word-spacing:9.405000px;}
.ws9a{word-spacing:9.462000px;}
.wsa2{word-spacing:9.519000px;}
.wsbd{word-spacing:9.720000px;}
.ws19{word-spacing:9.861000px;}
.ws26{word-spacing:10.032000px;}
.ws91{word-spacing:10.146000px;}
.ws46{word-spacing:10.317000px;}
.ws8c{word-spacing:10.374000px;}
.ws9c{word-spacing:10.545000px;}
.ws21{word-spacing:10.659000px;}
.ws6b{word-spacing:10.716000px;}
.wsdc{word-spacing:11.115000px;}
.ws43{word-spacing:11.172000px;}
.wsd0{word-spacing:11.205000px;}
.wsb7{word-spacing:11.340000px;}
.wsd2{word-spacing:11.475000px;}
.wsa5{word-spacing:11.571000px;}
.wsa8{word-spacing:11.856000px;}
.wsaa{word-spacing:11.913000px;}
.ws7c{word-spacing:12.312000px;}
.ws34{word-spacing:12.426000px;}
.ws31{word-spacing:12.540000px;}
.ws96{word-spacing:12.654000px;}
.ws9f{word-spacing:12.825000px;}
.ws60{word-spacing:12.996000px;}
.ws54{word-spacing:15.162000px;}
.ws36{word-spacing:15.675000px;}
.ws61{word-spacing:16.530000px;}
.ws6c{word-spacing:16.872000px;}
.ws6d{word-spacing:17.043000px;}
.wsb4{word-spacing:17.496000px;}
.ws40{word-spacing:18.069000px;}
.wsd5{word-spacing:18.540000px;}
.ws9e{word-spacing:20.292000px;}
.ws4b{word-spacing:23.883000px;}
.ws30{word-spacing:29.697000px;}
.wsdd{word-spacing:38.160000px;}
._13{margin-left:-18.180000px;}
._b{margin-left:-8.040600px;}
._0{margin-left:-6.552000px;}
._a{margin-left:-5.244000px;}
._1{margin-left:-3.887755px;}
._9{margin-left:-2.808000px;}
._4{margin-left:-1.139400px;}
._5{width:1.170000px;}
._2{width:2.224800px;}
._7{width:3.420000px;}
._6{width:4.644000px;}
._8{width:6.121800px;}
._11{width:10.487400px;}
._12{width:12.654000px;}
._f{width:623.943673px;}
._e{width:632.343061px;}
._3{width:946.555200px;}
._10{width:1591.800967px;}
._c{width:1602.451102px;}
._d{width:1915.863673px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,84,152);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs7{font-size:44.400000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.787450px;}
.y28{bottom:127.287450px;}
.y38{bottom:127.323450px;}
.y27{bottom:127.371450px;}
.y9b{bottom:146.729700px;}
.y3c{bottom:146.733450px;}
.y9a{bottom:146.787450px;}
.y99{bottom:146.793450px;}
.y37{bottom:146.817450px;}
.y26{bottom:146.865450px;}
.ybf{bottom:146.919300px;}
.y6a{bottom:146.967450px;}
.y11d{bottom:148.845750px;}
.y3b{bottom:160.983450px;}
.y11c{bottom:163.099500px;}
.y98{bottom:166.287450px;}
.yeb{bottom:166.299450px;}
.y36{bottom:166.311450px;}
.y25{bottom:166.359450px;}
.ybe{bottom:166.413300px;}
.y69{bottom:166.461450px;}
.y11b{bottom:177.353250px;}
.yea{bottom:185.793450px;}
.y35{bottom:185.805450px;}
.y24{bottom:185.853450px;}
.ybd{bottom:185.907300px;}
.y68{bottom:185.955450px;}
.y97{bottom:186.256650px;}
.y11a{bottom:195.859500px;}
.ye9{bottom:205.287450px;}
.y34{bottom:205.299450px;}
.y23{bottom:205.347450px;}
.ybc{bottom:205.401300px;}
.y67{bottom:205.449450px;}
.y119{bottom:210.113250px;}
.y118{bottom:224.367000px;}
.y33{bottom:224.793450px;}
.y22{bottom:224.841450px;}
.ybb{bottom:224.895300px;}
.y66{bottom:224.943450px;}
.y117{bottom:242.873250px;}
.y32{bottom:244.287450px;}
.y96{bottom:244.311450px;}
.y21{bottom:244.335450px;}
.y31{bottom:244.336950px;}
.yba{bottom:244.389300px;}
.y65{bottom:244.437450px;}
.y116{bottom:257.127000px;}
.y95{bottom:263.805450px;}
.y20{bottom:263.829450px;}
.y30{bottom:263.830950px;}
.yb9{bottom:263.883300px;}
.y64{bottom:263.931450px;}
.y115{bottom:271.380750px;}
.y94{bottom:283.299450px;}
.y1f{bottom:283.323450px;}
.y2f{bottom:283.324950px;}
.yb8{bottom:283.377300px;}
.y63{bottom:283.425450px;}
.y114{bottom:285.634500px;}
.y93{bottom:302.793450px;}
.y1e{bottom:302.817450px;}
.y2e{bottom:302.818950px;}
.ye8{bottom:302.859300px;}
.yb7{bottom:302.871300px;}
.y62{bottom:302.919450px;}
.y113{bottom:304.140750px;}
.y112{bottom:318.394500px;}
.y1d{bottom:322.311450px;}
.y2d{bottom:322.312950px;}
.ye7{bottom:322.353300px;}
.yb6{bottom:322.365300px;}
.y61{bottom:322.413450px;}
.y92{bottom:322.698450px;}
.y111{bottom:336.900750px;}
.y1c{bottom:341.805450px;}
.y2c{bottom:341.806950px;}
.ye6{bottom:341.847300px;}
.yb5{bottom:341.859300px;}
.y60{bottom:341.907450px;}
.y91{bottom:342.192450px;}
.y110{bottom:351.154500px;}
.y1b{bottom:361.299450px;}
.y2b{bottom:361.300950px;}
.ye5{bottom:361.341300px;}
.yb4{bottom:361.353300px;}
.y5f{bottom:361.401450px;}
.y90{bottom:361.686450px;}
.y10f{bottom:365.408250px;}
.y10e{bottom:379.662000px;}
.y1a{bottom:380.793450px;}
.y2a{bottom:380.794950px;}
.ye4{bottom:380.835300px;}
.yb3{bottom:380.847300px;}
.y5e{bottom:380.895450px;}
.y8f{bottom:381.180450px;}
.y10d{bottom:398.168250px;}
.y19{bottom:400.287450px;}
.y29{bottom:400.288950px;}
.ye3{bottom:400.329300px;}
.yb2{bottom:400.341300px;}
.y5d{bottom:400.389450px;}
.y8e{bottom:400.674450px;}
.y10c{bottom:412.422000px;}
.ye2{bottom:419.823300px;}
.yb1{bottom:419.835300px;}
.y5c{bottom:419.883450px;}
.y8d{bottom:420.168450px;}
.y10b{bottom:426.675750px;}
.y18{bottom:439.287450px;}
.ye1{bottom:439.317300px;}
.yb0{bottom:439.329300px;}
.y5b{bottom:439.377450px;}
.y8c{bottom:439.662450px;}
.y10a{bottom:445.182000px;}
.ye0{bottom:458.811300px;}
.yaf{bottom:458.823300px;}
.y5a{bottom:458.871450px;}
.y8b{bottom:459.156450px;}
.y109{bottom:459.435750px;}
.y108{bottom:473.689500px;}
.ydf{bottom:478.305300px;}
.yae{bottom:478.317300px;}
.y59{bottom:478.365450px;}
.y8a{bottom:478.650450px;}
.y107{bottom:492.195750px;}
.yde{bottom:497.799300px;}
.yad{bottom:497.811300px;}
.y17{bottom:497.817450px;}
.y58{bottom:497.859450px;}
.y89{bottom:498.144450px;}
.y106{bottom:506.449500px;}
.ydd{bottom:517.293300px;}
.yac{bottom:517.305300px;}
.y16{bottom:517.311450px;}
.y57{bottom:517.353450px;}
.y88{bottom:517.638450px;}
.y105{bottom:520.703250px;}
.y104{bottom:534.957000px;}
.ydc{bottom:536.787300px;}
.yab{bottom:536.799300px;}
.y15{bottom:536.805450px;}
.y56{bottom:536.847450px;}
.y87{bottom:537.132450px;}
.y103{bottom:553.463250px;}
.yaa{bottom:556.293300px;}
.ydb{bottom:556.299300px;}
.y14{bottom:556.299450px;}
.y55{bottom:556.341450px;}
.y86{bottom:556.626450px;}
.y13c{bottom:558.510600px;}
.y102{bottom:567.717000px;}
.y13b{bottom:572.764350px;}
.ya9{bottom:575.787300px;}
.yda{bottom:575.793300px;}
.y13{bottom:575.793450px;}
.y54{bottom:575.835450px;}
.y85{bottom:576.120450px;}
.y101{bottom:581.970750px;}
.y13a{bottom:587.018100px;}
.yd9{bottom:595.287300px;}
.y12{bottom:595.287450px;}
.ya8{bottom:595.323300px;}
.y53{bottom:595.329450px;}
.y84{bottom:595.614450px;}
.y100{bottom:600.477000px;}
.y139{bottom:601.271850px;}
.yff{bottom:614.730750px;}
.y11{bottom:614.787450px;}
.ya7{bottom:614.817300px;}
.y52{bottom:614.823450px;}
.yd8{bottom:615.060300px;}
.y83{bottom:615.108450px;}
.y137{bottom:615.521850px;}
.y138{bottom:615.525600px;}
.y135{bottom:629.771850px;}
.y136{bottom:629.775600px;}
.yfe{bottom:633.237000px;}
.ya6{bottom:634.311300px;}
.y51{bottom:634.317450px;}
.yd7{bottom:634.554300px;}
.y82{bottom:634.602450px;}
.y134{bottom:644.025600px;}
.yfd{bottom:647.490750px;}
.ya5{bottom:653.805300px;}
.y50{bottom:653.811450px;}
.y10{bottom:653.817450px;}
.yd6{bottom:654.048300px;}
.y81{bottom:654.096450px;}
.y133{bottom:658.275600px;}
.yfc{bottom:661.744500px;}
.y132{bottom:672.525600px;}
.ya4{bottom:673.299300px;}
.y4f{bottom:673.305450px;}
.yf{bottom:673.311450px;}
.yd5{bottom:673.542300px;}
.y80{bottom:673.590450px;}
.yfb{bottom:680.250750px;}
.ya3{bottom:692.793300px;}
.y4e{bottom:692.799450px;}
.ye{bottom:692.805450px;}
.yd4{bottom:693.036300px;}
.y7f{bottom:693.084450px;}
.yfa{bottom:694.504500px;}
.yf9{bottom:708.758250px;}
.ya2{bottom:712.287300px;}
.y131{bottom:712.287450px;}
.y4d{bottom:712.293450px;}
.yd{bottom:712.299450px;}
.yd3{bottom:712.530300px;}
.y7e{bottom:712.578450px;}
.yf8{bottom:723.012000px;}
.y4c{bottom:731.787450px;}
.yc{bottom:731.793450px;}
.ya1{bottom:731.895450px;}
.yd2{bottom:732.024300px;}
.y7d{bottom:732.072450px;}
.yf7{bottom:741.518250px;}
.yb{bottom:751.287450px;}
.ya0{bottom:751.389450px;}
.yd1{bottom:751.518300px;}
.y7c{bottom:751.566450px;}
.yf6{bottom:755.772000px;}
.y4b{bottom:766.293450px;}
.yf5{bottom:770.025750px;}
.ya{bottom:770.787450px;}
.y9f{bottom:770.883450px;}
.yd0{bottom:771.012300px;}
.y7b{bottom:771.060450px;}
.y4a{bottom:790.287450px;}
.y9e{bottom:790.377450px;}
.ycf{bottom:790.506300px;}
.y7a{bottom:790.554450px;}
.yf4{bottom:809.787450px;}
.y9d{bottom:809.871450px;}
.yce{bottom:810.000300px;}
.y79{bottom:810.048450px;}
.y130{bottom:811.145550px;}
.y12f{bottom:825.399300px;}
.y9c{bottom:829.365450px;}
.ycd{bottom:829.494300px;}
.y78{bottom:829.542450px;}
.y12e{bottom:839.653050px;}
.y49{bottom:848.859450px;}
.ycc{bottom:848.988300px;}
.y77{bottom:849.036450px;}
.y12d{bottom:853.906800px;}
.y9{bottom:868.293450px;}
.y48{bottom:868.353450px;}
.ycb{bottom:868.482300px;}
.y76{bottom:868.530450px;}
.y12c{bottom:872.413050px;}
.y12b{bottom:886.666800px;}
.y8{bottom:887.787450px;}
.y47{bottom:887.847450px;}
.yca{bottom:887.976300px;}
.y75{bottom:888.024450px;}
.y12a{bottom:900.920550px;}
.yf3{bottom:907.323450px;}
.y46{bottom:907.341450px;}
.yc9{bottom:907.470300px;}
.y74{bottom:907.518450px;}
.y129{bottom:915.174300px;}
.yf2{bottom:926.817450px;}
.y45{bottom:926.835450px;}
.yc8{bottom:926.964300px;}
.y73{bottom:927.012450px;}
.y128{bottom:933.680550px;}
.yf1{bottom:946.311450px;}
.y44{bottom:946.329450px;}
.yc7{bottom:946.458300px;}
.y72{bottom:946.506450px;}
.y127{bottom:947.934300px;}
.y7{bottom:958.279950px;}
.y126{bottom:962.188050px;}
.yf0{bottom:965.805450px;}
.y43{bottom:965.823450px;}
.yc6{bottom:965.952300px;}
.y71{bottom:966.000450px;}
.y125{bottom:980.694300px;}
.y6{bottom:985.279950px;}
.yef{bottom:985.299450px;}
.y42{bottom:985.317450px;}
.yc5{bottom:985.446300px;}
.y70{bottom:985.494450px;}
.y124{bottom:994.948050px;}
.yee{bottom:1004.793450px;}
.y41{bottom:1004.811450px;}
.yc4{bottom:1004.940300px;}
.y6f{bottom:1004.988450px;}
.y123{bottom:1013.454300px;}
.yed{bottom:1024.287450px;}
.y40{bottom:1024.305450px;}
.yc3{bottom:1024.434300px;}
.y6e{bottom:1024.482450px;}
.y122{bottom:1027.708050px;}
.y5{bottom:1036.287450px;}
.y121{bottom:1041.961800px;}
.yec{bottom:1043.787450px;}
.y3f{bottom:1043.799450px;}
.yc2{bottom:1043.928300px;}
.y6d{bottom:1043.976450px;}
.y120{bottom:1056.215550px;}
.y4{bottom:1063.287450px;}
.y3e{bottom:1063.293450px;}
.yc1{bottom:1063.422300px;}
.y6c{bottom:1063.470450px;}
.y11f{bottom:1074.721800px;}
.y3d{bottom:1082.787450px;}
.yc0{bottom:1082.916300px;}
.y6b{bottom:1082.964450px;}
.y11e{bottom:1088.975550px;}
.y3{bottom:1137.565500px;}
.y3a{bottom:1143.375450px;}
.y2{bottom:1158.565500px;}
.y39{bottom:1164.975450px;}
.he{height:30.408000px;}
.h2{height:33.894000px;}
.h4{height:38.736000px;}
.h11{height:40.004400px;}
.h10{height:40.545000px;}
.hf{height:40.860000px;}
.hc{height:43.248000px;}
.hb{height:43.584000px;}
.ha{height:48.393000px;}
.h8{height:48.654000px;}
.h7{height:49.032000px;}
.h9{height:51.756000px;}
.hd{height:64.872000px;}
.h3{height:65.376000px;}
.h6{height:72.630000px;}
.h5{height:81.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:100.098450px;}
.x3{left:102.047250px;}
.x2{left:110.551200px;}
.x11{left:114.803963px;}
.xc{left:142.897650px;}
.xe{left:154.213500px;}
.xa{left:313.050900px;}
.x4{left:317.480400px;}
.xf{left:319.127550px;}
.x5{left:380.889000px;}
.xb{left:429.252300px;}
.x6{left:457.086600px;}
.x12{left:469.842525px;}
.x10{left:473.677500px;}
.x13{left:526.374300px;}
.x7{left:585.543150px;}
.xd{left:620.712900px;}
.x9{left:625.952100px;}
.x14{left:719.099700px;}
.x8{left:737.075250px;}
@media print{
.v1{vertical-align:-1.461333pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.853333pt;}
.ls0{letter-spacing:2451.329524pt;}
.ws4{word-spacing:-14.997333pt;}
.ws0{word-spacing:-12.800000pt;}
.ws7a{word-spacing:-12.672000pt;}
.ws2{word-spacing:-10.133333pt;}
.ws1{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.504000pt;}
.ws2c{word-spacing:-8.533333pt;}
.ws2d{word-spacing:-8.000000pt;}
.ws12{word-spacing:-4.205333pt;}
.ws3a{word-spacing:-3.800000pt;}
.wsb5{word-spacing:-3.024000pt;}
.ws76{word-spacing:-2.786667pt;}
.ws73{word-spacing:-2.685333pt;}
.ws37{word-spacing:-2.584000pt;}
.ws41{word-spacing:-2.533333pt;}
.ws4c{word-spacing:-2.432000pt;}
.ws93{word-spacing:-2.381333pt;}
.ws23{word-spacing:-2.330667pt;}
.wsab{word-spacing:-2.128000pt;}
.wsb3{word-spacing:-2.112000pt;}
.wsa4{word-spacing:-2.077333pt;}
.ws27{word-spacing:-2.026667pt;}
.ws2b{word-spacing:-1.925333pt;}
.ws42{word-spacing:-1.874667pt;}
.ws89{word-spacing:-1.824000pt;}
.ws75{word-spacing:-1.773333pt;}
.ws57{word-spacing:-1.722667pt;}
.wsa{word-spacing:-1.632000pt;}
.wsad{word-spacing:-1.621333pt;}
.ws15{word-spacing:-1.520000pt;}
.wsc0{word-spacing:-1.480000pt;}
.wsb0{word-spacing:-1.368000pt;}
.ws92{word-spacing:-1.266667pt;}
.ws4d{word-spacing:-1.114667pt;}
.wsaf{word-spacing:-1.064000pt;}
.ws1d{word-spacing:-0.861333pt;}
.ws2e{word-spacing:-0.853333pt;}
.wsda{word-spacing:-0.840000pt;}
.wsca{word-spacing:-0.600000pt;}
.ws3d{word-spacing:-0.557333pt;}
.wsa1{word-spacing:-0.456000pt;}
.wse4{word-spacing:-0.440000pt;}
.ws35{word-spacing:-0.405333pt;}
.wscd{word-spacing:-0.400000pt;}
.ws97{word-spacing:-0.354667pt;}
.wsb2{word-spacing:-0.288000pt;}
.ws88{word-spacing:-0.253333pt;}
.ws77{word-spacing:-0.152000pt;}
.ws24{word-spacing:-0.101333pt;}
.wsdf{word-spacing:-0.080000pt;}
.wsc3{word-spacing:-0.040000pt;}
.wsb1{word-spacing:-0.039467pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.096000pt;}
.ws8f{word-spacing:0.304000pt;}
.wsae{word-spacing:0.354667pt;}
.ws5d{word-spacing:0.405333pt;}
.wsbc{word-spacing:0.520000pt;}
.ws63{word-spacing:0.557333pt;}
.wsc8{word-spacing:0.600000pt;}
.ws86{word-spacing:0.608000pt;}
.ws67{word-spacing:0.658667pt;}
.ws95{word-spacing:0.861333pt;}
.ws65{word-spacing:0.912000pt;}
.wsd9{word-spacing:1.040000pt;}
.wsac{word-spacing:1.165333pt;}
.ws4e{word-spacing:1.216000pt;}
.ws49{word-spacing:1.266667pt;}
.ws85{word-spacing:1.317333pt;}
.ws79{word-spacing:1.320000pt;}
.wscc{word-spacing:1.360000pt;}
.ws50{word-spacing:1.368000pt;}
.wsc7{word-spacing:1.400000pt;}
.ws6{word-spacing:1.440000pt;}
.wsb9{word-spacing:1.480000pt;}
.ws99{word-spacing:1.520000pt;}
.ws8a{word-spacing:1.570667pt;}
.ws5f{word-spacing:1.672000pt;}
.wse1{word-spacing:1.680000pt;}
.ws20{word-spacing:1.722667pt;}
.ws8d{word-spacing:1.824000pt;}
.ws4a{word-spacing:1.874667pt;}
.wsdb{word-spacing:1.920000pt;}
.ws48{word-spacing:1.976000pt;}
.wsc5{word-spacing:2.080000pt;}
.ws47{word-spacing:2.178667pt;}
.ws28{word-spacing:2.229333pt;}
.ws59{word-spacing:2.280000pt;}
.ws39{word-spacing:2.432000pt;}
.wsbb{word-spacing:2.520000pt;}
.wsa7{word-spacing:2.533333pt;}
.wsd7{word-spacing:2.560000pt;}
.wsa9{word-spacing:2.584000pt;}
.ws51{word-spacing:2.685333pt;}
.ws87{word-spacing:2.736000pt;}
.ws68{word-spacing:2.786667pt;}
.wsb{word-spacing:2.832000pt;}
.ws3c{word-spacing:2.837333pt;}
.wsd4{word-spacing:2.880000pt;}
.ws22{word-spacing:2.888000pt;}
.ws62{word-spacing:2.938667pt;}
.wsc1{word-spacing:3.080000pt;}
.wsf{word-spacing:3.120000pt;}
.ws44{word-spacing:3.141333pt;}
.ws4f{word-spacing:3.192000pt;}
.wsd1{word-spacing:3.200000pt;}
.wsba{word-spacing:3.240000pt;}
.ws83{word-spacing:3.293333pt;}
.ws3e{word-spacing:3.394667pt;}
.wsde{word-spacing:3.440000pt;}
.ws8b{word-spacing:3.445333pt;}
.wsa3{word-spacing:3.597333pt;}
.ws2a{word-spacing:3.698667pt;}
.ws69{word-spacing:3.749333pt;}
.wsbe{word-spacing:3.760000pt;}
.wse2{word-spacing:3.840000pt;}
.ws17{word-spacing:3.850667pt;}
.ws5e{word-spacing:3.952000pt;}
.wsce{word-spacing:4.040000pt;}
.ws80{word-spacing:4.053333pt;}
.wsc4{word-spacing:4.080000pt;}
.wse{word-spacing:4.128000pt;}
.wsbf{word-spacing:4.200000pt;}
.ws58{word-spacing:4.205333pt;}
.ws70{word-spacing:4.306667pt;}
.ws66{word-spacing:4.408000pt;}
.ws9b{word-spacing:4.458667pt;}
.ws9{word-spacing:4.464000pt;}
.wsc{word-spacing:4.512000pt;}
.ws1b{word-spacing:4.560000pt;}
.wse3{word-spacing:4.600000pt;}
.ws71{word-spacing:4.661333pt;}
.ws2f{word-spacing:4.760000pt;}
.wsb6{word-spacing:4.848000pt;}
.ws84{word-spacing:4.914667pt;}
.ws94{word-spacing:4.965333pt;}
.ws8e{word-spacing:5.016000pt;}
.ws64{word-spacing:5.066667pt;}
.ws6e{word-spacing:5.168000pt;}
.ws1a{word-spacing:5.218667pt;}
.wsc9{word-spacing:5.240000pt;}
.ws3f{word-spacing:5.269333pt;}
.ws82{word-spacing:5.320000pt;}
.ws7b{word-spacing:5.370667pt;}
.ws7{word-spacing:5.376000pt;}
.ws18{word-spacing:5.421333pt;}
.wsd{word-spacing:5.520000pt;}
.ws78{word-spacing:5.522667pt;}
.ws3b{word-spacing:5.624000pt;}
.ws5b{word-spacing:5.776000pt;}
.ws90{word-spacing:5.826667pt;}
.ws7f{word-spacing:5.978667pt;}
.wsa6{word-spacing:6.029333pt;}
.ws52{word-spacing:6.130667pt;}
.wscf{word-spacing:6.160000pt;}
.ws1c{word-spacing:6.181333pt;}
.wsc6{word-spacing:6.240000pt;}
.ws5c{word-spacing:6.282667pt;}
.ws1f{word-spacing:6.384000pt;}
.wsd3{word-spacing:6.400000pt;}
.ws74{word-spacing:6.434667pt;}
.ws7e{word-spacing:6.536000pt;}
.ws13{word-spacing:6.637333pt;}
.ws9d{word-spacing:6.688000pt;}
.ws53{word-spacing:6.789333pt;}
.wscb{word-spacing:6.880000pt;}
.ws81{word-spacing:6.890667pt;}
.wsd8{word-spacing:6.920000pt;}
.wsa0{word-spacing:6.941333pt;}
.wsb8{word-spacing:6.960000pt;}
.ws98{word-spacing:6.992000pt;}
.wse0{word-spacing:7.000000pt;}
.ws5a{word-spacing:7.042667pt;}
.ws16{word-spacing:7.093333pt;}
.ws56{word-spacing:7.144000pt;}
.ws33{word-spacing:7.194667pt;}
.ws8{word-spacing:7.200000pt;}
.ws45{word-spacing:7.346667pt;}
.wsd6{word-spacing:7.440000pt;}
.ws72{word-spacing:7.448000pt;}
.ws6a{word-spacing:7.600000pt;}
.ws6f{word-spacing:7.650667pt;}
.ws1e{word-spacing:7.701333pt;}
.ws11{word-spacing:7.752000pt;}
.ws55{word-spacing:7.802667pt;}
.wsc2{word-spacing:7.920000pt;}
.ws38{word-spacing:7.954667pt;}
.ws29{word-spacing:8.005333pt;}
.ws7d{word-spacing:8.056000pt;}
.ws25{word-spacing:8.208000pt;}
.ws32{word-spacing:8.309333pt;}
.ws14{word-spacing:8.360000pt;}
.ws9a{word-spacing:8.410667pt;}
.wsa2{word-spacing:8.461333pt;}
.wsbd{word-spacing:8.640000pt;}
.ws19{word-spacing:8.765333pt;}
.ws26{word-spacing:8.917333pt;}
.ws91{word-spacing:9.018667pt;}
.ws46{word-spacing:9.170667pt;}
.ws8c{word-spacing:9.221333pt;}
.ws9c{word-spacing:9.373333pt;}
.ws21{word-spacing:9.474667pt;}
.ws6b{word-spacing:9.525333pt;}
.wsdc{word-spacing:9.880000pt;}
.ws43{word-spacing:9.930667pt;}
.wsd0{word-spacing:9.960000pt;}
.wsb7{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.200000pt;}
.wsa5{word-spacing:10.285333pt;}
.wsa8{word-spacing:10.538667pt;}
.wsaa{word-spacing:10.589333pt;}
.ws7c{word-spacing:10.944000pt;}
.ws34{word-spacing:11.045333pt;}
.ws31{word-spacing:11.146667pt;}
.ws96{word-spacing:11.248000pt;}
.ws9f{word-spacing:11.400000pt;}
.ws60{word-spacing:11.552000pt;}
.ws54{word-spacing:13.477333pt;}
.ws36{word-spacing:13.933333pt;}
.ws61{word-spacing:14.693333pt;}
.ws6c{word-spacing:14.997333pt;}
.ws6d{word-spacing:15.149333pt;}
.wsb4{word-spacing:15.552000pt;}
.ws40{word-spacing:16.061333pt;}
.wsd5{word-spacing:16.480000pt;}
.ws9e{word-spacing:18.037333pt;}
.ws4b{word-spacing:21.229333pt;}
.ws30{word-spacing:26.397333pt;}
.wsdd{word-spacing:33.920000pt;}
._13{margin-left:-16.160000pt;}
._b{margin-left:-7.147200pt;}
._0{margin-left:-5.824000pt;}
._a{margin-left:-4.661333pt;}
._1{margin-left:-3.455782pt;}
._9{margin-left:-2.496000pt;}
._4{margin-left:-1.012800pt;}
._5{width:1.040000pt;}
._2{width:1.977600pt;}
._7{width:3.040000pt;}
._6{width:4.128000pt;}
._8{width:5.441600pt;}
._11{width:9.322133pt;}
._12{width:11.248000pt;}
._f{width:554.616599pt;}
._e{width:562.082721pt;}
._3{width:841.382400pt;}
._10{width:1414.934193pt;}
._c{width:1424.400980pt;}
._d{width:1702.989932pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:39.466667pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.144400pt;}
.y28{bottom:113.144400pt;}
.y38{bottom:113.176400pt;}
.y27{bottom:113.219067pt;}
.y9b{bottom:130.426400pt;}
.y3c{bottom:130.429733pt;}
.y9a{bottom:130.477733pt;}
.y99{bottom:130.483067pt;}
.y37{bottom:130.504400pt;}
.y26{bottom:130.547067pt;}
.ybf{bottom:130.594933pt;}
.y6a{bottom:130.637733pt;}
.y11d{bottom:132.307333pt;}
.y3b{bottom:143.096400pt;}
.y11c{bottom:144.977333pt;}
.y98{bottom:147.811067pt;}
.yeb{bottom:147.821733pt;}
.y36{bottom:147.832400pt;}
.y25{bottom:147.875067pt;}
.ybe{bottom:147.922933pt;}
.y69{bottom:147.965733pt;}
.y11b{bottom:157.647333pt;}
.yea{bottom:165.149733pt;}
.y35{bottom:165.160400pt;}
.y24{bottom:165.203067pt;}
.ybd{bottom:165.250933pt;}
.y68{bottom:165.293733pt;}
.y97{bottom:165.561467pt;}
.y11a{bottom:174.097333pt;}
.ye9{bottom:182.477733pt;}
.y34{bottom:182.488400pt;}
.y23{bottom:182.531067pt;}
.ybc{bottom:182.578933pt;}
.y67{bottom:182.621733pt;}
.y119{bottom:186.767333pt;}
.y118{bottom:199.437333pt;}
.y33{bottom:199.816400pt;}
.y22{bottom:199.859067pt;}
.ybb{bottom:199.906933pt;}
.y66{bottom:199.949733pt;}
.y117{bottom:215.887333pt;}
.y32{bottom:217.144400pt;}
.y96{bottom:217.165733pt;}
.y21{bottom:217.187067pt;}
.y31{bottom:217.188400pt;}
.yba{bottom:217.234933pt;}
.y65{bottom:217.277733pt;}
.y116{bottom:228.557333pt;}
.y95{bottom:234.493733pt;}
.y20{bottom:234.515067pt;}
.y30{bottom:234.516400pt;}
.yb9{bottom:234.562933pt;}
.y64{bottom:234.605733pt;}
.y115{bottom:241.227333pt;}
.y94{bottom:251.821733pt;}
.y1f{bottom:251.843067pt;}
.y2f{bottom:251.844400pt;}
.yb8{bottom:251.890933pt;}
.y63{bottom:251.933733pt;}
.y114{bottom:253.897333pt;}
.y93{bottom:269.149733pt;}
.y1e{bottom:269.171067pt;}
.y2e{bottom:269.172400pt;}
.ye8{bottom:269.208267pt;}
.yb7{bottom:269.218933pt;}
.y62{bottom:269.261733pt;}
.y113{bottom:270.347333pt;}
.y112{bottom:283.017333pt;}
.y1d{bottom:286.499067pt;}
.y2d{bottom:286.500400pt;}
.ye7{bottom:286.536267pt;}
.yb6{bottom:286.546933pt;}
.y61{bottom:286.589733pt;}
.y92{bottom:286.843067pt;}
.y111{bottom:299.467333pt;}
.y1c{bottom:303.827067pt;}
.y2c{bottom:303.828400pt;}
.ye6{bottom:303.864267pt;}
.yb5{bottom:303.874933pt;}
.y60{bottom:303.917733pt;}
.y91{bottom:304.171067pt;}
.y110{bottom:312.137333pt;}
.y1b{bottom:321.155067pt;}
.y2b{bottom:321.156400pt;}
.ye5{bottom:321.192267pt;}
.yb4{bottom:321.202933pt;}
.y5f{bottom:321.245733pt;}
.y90{bottom:321.499067pt;}
.y10f{bottom:324.807333pt;}
.y10e{bottom:337.477333pt;}
.y1a{bottom:338.483067pt;}
.y2a{bottom:338.484400pt;}
.ye4{bottom:338.520267pt;}
.yb3{bottom:338.530933pt;}
.y5e{bottom:338.573733pt;}
.y8f{bottom:338.827067pt;}
.y10d{bottom:353.927333pt;}
.y19{bottom:355.811067pt;}
.y29{bottom:355.812400pt;}
.ye3{bottom:355.848267pt;}
.yb2{bottom:355.858933pt;}
.y5d{bottom:355.901733pt;}
.y8e{bottom:356.155067pt;}
.y10c{bottom:366.597333pt;}
.ye2{bottom:373.176267pt;}
.yb1{bottom:373.186933pt;}
.y5c{bottom:373.229733pt;}
.y8d{bottom:373.483067pt;}
.y10b{bottom:379.267333pt;}
.y18{bottom:390.477733pt;}
.ye1{bottom:390.504267pt;}
.yb0{bottom:390.514933pt;}
.y5b{bottom:390.557733pt;}
.y8c{bottom:390.811067pt;}
.y10a{bottom:395.717333pt;}
.ye0{bottom:407.832267pt;}
.yaf{bottom:407.842933pt;}
.y5a{bottom:407.885733pt;}
.y8b{bottom:408.139067pt;}
.y109{bottom:408.387333pt;}
.y108{bottom:421.057333pt;}
.ydf{bottom:425.160267pt;}
.yae{bottom:425.170933pt;}
.y59{bottom:425.213733pt;}
.y8a{bottom:425.467067pt;}
.y107{bottom:437.507333pt;}
.yde{bottom:442.488267pt;}
.yad{bottom:442.498933pt;}
.y17{bottom:442.504400pt;}
.y58{bottom:442.541733pt;}
.y89{bottom:442.795067pt;}
.y106{bottom:450.177333pt;}
.ydd{bottom:459.816267pt;}
.yac{bottom:459.826933pt;}
.y16{bottom:459.832400pt;}
.y57{bottom:459.869733pt;}
.y88{bottom:460.123067pt;}
.y105{bottom:462.847333pt;}
.y104{bottom:475.517333pt;}
.ydc{bottom:477.144267pt;}
.yab{bottom:477.154933pt;}
.y15{bottom:477.160400pt;}
.y56{bottom:477.197733pt;}
.y87{bottom:477.451067pt;}
.y103{bottom:491.967333pt;}
.yaa{bottom:494.482933pt;}
.ydb{bottom:494.488267pt;}
.y14{bottom:494.488400pt;}
.y55{bottom:494.525733pt;}
.y86{bottom:494.779067pt;}
.y13c{bottom:496.453867pt;}
.y102{bottom:504.637333pt;}
.y13b{bottom:509.123867pt;}
.ya9{bottom:511.810933pt;}
.yda{bottom:511.816267pt;}
.y13{bottom:511.816400pt;}
.y54{bottom:511.853733pt;}
.y85{bottom:512.107067pt;}
.y101{bottom:517.307333pt;}
.y13a{bottom:521.793867pt;}
.yd9{bottom:529.144267pt;}
.y12{bottom:529.144400pt;}
.ya8{bottom:529.176267pt;}
.y53{bottom:529.181733pt;}
.y84{bottom:529.435067pt;}
.y100{bottom:533.757333pt;}
.y139{bottom:534.463867pt;}
.yff{bottom:546.427333pt;}
.y11{bottom:546.477733pt;}
.ya7{bottom:546.504267pt;}
.y52{bottom:546.509733pt;}
.yd8{bottom:546.720267pt;}
.y83{bottom:546.763067pt;}
.y137{bottom:547.130533pt;}
.y138{bottom:547.133867pt;}
.y135{bottom:559.797200pt;}
.y136{bottom:559.800533pt;}
.yfe{bottom:562.877333pt;}
.ya6{bottom:563.832267pt;}
.y51{bottom:563.837733pt;}
.yd7{bottom:564.048267pt;}
.y82{bottom:564.091067pt;}
.y134{bottom:572.467200pt;}
.yfd{bottom:575.547333pt;}
.ya5{bottom:581.160267pt;}
.y50{bottom:581.165733pt;}
.y10{bottom:581.171067pt;}
.yd6{bottom:581.376267pt;}
.y81{bottom:581.419067pt;}
.y133{bottom:585.133867pt;}
.yfc{bottom:588.217333pt;}
.y132{bottom:597.800533pt;}
.ya4{bottom:598.488267pt;}
.y4f{bottom:598.493733pt;}
.yf{bottom:598.499067pt;}
.yd5{bottom:598.704267pt;}
.y80{bottom:598.747067pt;}
.yfb{bottom:604.667333pt;}
.ya3{bottom:615.816267pt;}
.y4e{bottom:615.821733pt;}
.ye{bottom:615.827067pt;}
.yd4{bottom:616.032267pt;}
.y7f{bottom:616.075067pt;}
.yfa{bottom:617.337333pt;}
.yf9{bottom:630.007333pt;}
.ya2{bottom:633.144267pt;}
.y131{bottom:633.144400pt;}
.y4d{bottom:633.149733pt;}
.yd{bottom:633.155067pt;}
.yd3{bottom:633.360267pt;}
.y7e{bottom:633.403067pt;}
.yf8{bottom:642.677333pt;}
.y4c{bottom:650.477733pt;}
.yc{bottom:650.483067pt;}
.ya1{bottom:650.573733pt;}
.yd2{bottom:650.688267pt;}
.y7d{bottom:650.731067pt;}
.yf7{bottom:659.127333pt;}
.yb{bottom:667.811067pt;}
.ya0{bottom:667.901733pt;}
.yd1{bottom:668.016267pt;}
.y7c{bottom:668.059067pt;}
.yf6{bottom:671.797333pt;}
.y4b{bottom:681.149733pt;}
.yf5{bottom:684.467333pt;}
.ya{bottom:685.144400pt;}
.y9f{bottom:685.229733pt;}
.yd0{bottom:685.344267pt;}
.y7b{bottom:685.387067pt;}
.y4a{bottom:702.477733pt;}
.y9e{bottom:702.557733pt;}
.ycf{bottom:702.672267pt;}
.y7a{bottom:702.715067pt;}
.yf4{bottom:719.811067pt;}
.y9d{bottom:719.885733pt;}
.yce{bottom:720.000267pt;}
.y79{bottom:720.043067pt;}
.y130{bottom:721.018267pt;}
.y12f{bottom:733.688267pt;}
.y9c{bottom:737.213733pt;}
.ycd{bottom:737.328267pt;}
.y78{bottom:737.371067pt;}
.y12e{bottom:746.358267pt;}
.y49{bottom:754.541733pt;}
.ycc{bottom:754.656267pt;}
.y77{bottom:754.699067pt;}
.y12d{bottom:759.028267pt;}
.y9{bottom:771.816400pt;}
.y48{bottom:771.869733pt;}
.ycb{bottom:771.984267pt;}
.y76{bottom:772.027067pt;}
.y12c{bottom:775.478267pt;}
.y12b{bottom:788.148267pt;}
.y8{bottom:789.144400pt;}
.y47{bottom:789.197733pt;}
.yca{bottom:789.312267pt;}
.y75{bottom:789.355067pt;}
.y12a{bottom:800.818267pt;}
.yf3{bottom:806.509733pt;}
.y46{bottom:806.525733pt;}
.yc9{bottom:806.640267pt;}
.y74{bottom:806.683067pt;}
.y129{bottom:813.488267pt;}
.yf2{bottom:823.837733pt;}
.y45{bottom:823.853733pt;}
.yc8{bottom:823.968267pt;}
.y73{bottom:824.011067pt;}
.y128{bottom:829.938267pt;}
.yf1{bottom:841.165733pt;}
.y44{bottom:841.181733pt;}
.yc7{bottom:841.296267pt;}
.y72{bottom:841.339067pt;}
.y127{bottom:842.608267pt;}
.y7{bottom:851.804400pt;}
.y126{bottom:855.278267pt;}
.yf0{bottom:858.493733pt;}
.y43{bottom:858.509733pt;}
.yc6{bottom:858.624267pt;}
.y71{bottom:858.667067pt;}
.y125{bottom:871.728267pt;}
.y6{bottom:875.804400pt;}
.yef{bottom:875.821733pt;}
.y42{bottom:875.837733pt;}
.yc5{bottom:875.952267pt;}
.y70{bottom:875.995067pt;}
.y124{bottom:884.398267pt;}
.yee{bottom:893.149733pt;}
.y41{bottom:893.165733pt;}
.yc4{bottom:893.280267pt;}
.y6f{bottom:893.323067pt;}
.y123{bottom:900.848267pt;}
.yed{bottom:910.477733pt;}
.y40{bottom:910.493733pt;}
.yc3{bottom:910.608267pt;}
.y6e{bottom:910.651067pt;}
.y122{bottom:913.518267pt;}
.y5{bottom:921.144400pt;}
.y121{bottom:926.188267pt;}
.yec{bottom:927.811067pt;}
.y3f{bottom:927.821733pt;}
.yc2{bottom:927.936267pt;}
.y6d{bottom:927.979067pt;}
.y120{bottom:938.858267pt;}
.y4{bottom:945.144400pt;}
.y3e{bottom:945.149733pt;}
.yc1{bottom:945.264267pt;}
.y6c{bottom:945.307067pt;}
.y11f{bottom:955.308267pt;}
.y3d{bottom:962.477733pt;}
.yc0{bottom:962.592267pt;}
.y6b{bottom:962.635067pt;}
.y11e{bottom:967.978267pt;}
.y3{bottom:1011.169333pt;}
.y3a{bottom:1016.333733pt;}
.y2{bottom:1029.836000pt;}
.y39{bottom:1035.533733pt;}
.he{height:27.029333pt;}
.h2{height:30.128000pt;}
.h4{height:34.432000pt;}
.h11{height:35.559467pt;}
.h10{height:36.040000pt;}
.hf{height:36.320000pt;}
.hc{height:38.442667pt;}
.hb{height:38.741333pt;}
.ha{height:43.016000pt;}
.h8{height:43.248000pt;}
.h7{height:43.584000pt;}
.h9{height:46.005333pt;}
.hd{height:57.664000pt;}
.h3{height:58.112000pt;}
.h6{height:64.560000pt;}
.h5{height:72.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.976400pt;}
.x3{left:90.708667pt;}
.x2{left:98.267733pt;}
.x11{left:102.047967pt;}
.xc{left:127.020133pt;}
.xe{left:137.078667pt;}
.xa{left:278.267467pt;}
.x4{left:282.204800pt;}
.xf{left:283.668933pt;}
.x5{left:338.568000pt;}
.xb{left:381.557600pt;}
.x6{left:406.299200pt;}
.x12{left:417.637800pt;}
.x10{left:421.046667pt;}
.x13{left:467.888267pt;}
.x7{left:520.482800pt;}
.xd{left:551.744800pt;}
.x9{left:556.401867pt;}
.x14{left:639.199733pt;}
.x8{left:655.178000pt;}
}




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