
    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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_131ee6617f7f286b66c0a863.woff')format("woff");}.ff3{font-family:ff3;line-height:1.046000;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_f95f26f69eb05e0a51a97883.woff')format("woff");}.ff4{font-family:ff4;line-height:1.004000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_aaebcbe5311d19b9377483fc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093413;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_3c558a77054e64430dad6bf3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_b9f0beb0f191076b26ca56c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e9ca3ef233604661dc7797e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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;}
.m1{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);}
.m3{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);}
.m2{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,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);}
.v1{vertical-align:-8.854800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:54.000000px;}
.ls1f{letter-spacing:-2.700000px;}
.ls2f{letter-spacing:-1.998000px;}
.ls38{letter-spacing:-1.728000px;}
.ls9{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.540000px;}
.ls42{letter-spacing:-0.378000px;}
.ls29{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.108000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.005400px;}
.ls39{letter-spacing:0.027000px;}
.lsd{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.093600px;}
.ls2{letter-spacing:0.095400px;}
.ls3{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.135000px;}
.ls25{letter-spacing:0.158400px;}
.ls26{letter-spacing:0.159000px;}
.ls4{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.186000px;}
.ls17{letter-spacing:0.186600px;}
.ls16{letter-spacing:0.189000px;}
.ls1{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.222600px;}
.ls36{letter-spacing:0.243000px;}
.ls30{letter-spacing:0.270000px;}
.ls2b{letter-spacing:0.297000px;}
.ls14{letter-spacing:0.311400px;}
.lsc{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.351000px;}
.ls6{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.435600px;}
.ls1e{letter-spacing:0.451800px;}
.ls43{letter-spacing:0.486000px;}
.ls34{letter-spacing:0.539400px;}
.ls7{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.541800px;}
.ls2d{letter-spacing:0.560400px;}
.ls2e{letter-spacing:0.561000px;}
.ls1d{letter-spacing:0.567000px;}
.ls21{letter-spacing:0.594000px;}
.lse{letter-spacing:0.648000px;}
.ls3b{letter-spacing:0.678000px;}
.lsf{letter-spacing:0.702000px;}
.ls1a{letter-spacing:0.732600px;}
.lsa{letter-spacing:0.756000px;}
.ls10{letter-spacing:0.810000px;}
.ls40{letter-spacing:0.833400px;}
.ls3a{letter-spacing:0.864000px;}
.ls33{letter-spacing:0.918000px;}
.ls44{letter-spacing:0.945000px;}
.ls3e{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.134000px;}
.ls41{letter-spacing:1.242000px;}
.ls45{letter-spacing:1.296000px;}
.ls3f{letter-spacing:1.323000px;}
.ls11{letter-spacing:1.404000px;}
.ls12{letter-spacing:1.407000px;}
.ls1b{letter-spacing:4.672800px;}
.ls20{letter-spacing:4.698000px;}
.ls31{letter-spacing:4.842600px;}
.ls15{letter-spacing:4.890600px;}
.ls35{letter-spacing:4.921200px;}
.ls23{letter-spacing:5.130000px;}
.ls2a{letter-spacing:5.139000px;}
.ls2c{letter-spacing:5.203800px;}
.ls27{letter-spacing:96.267600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(4,208,232),0 0.015em rgb(4,208,232),0.015em 0 rgb(4,208,232),0 -0.015em  rgb(4,208,232);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(4,208,232);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2e{word-spacing:-108.603600px;}
.ws5f{word-spacing:-14.823000px;}
.ws5a{word-spacing:-14.472000px;}
.ws49{word-spacing:-14.418000px;}
.ws5e{word-spacing:-14.364000px;}
.ws1b{word-spacing:-14.310000px;}
.ws59{word-spacing:-14.229000px;}
.ws5b{word-spacing:-14.202000px;}
.ws54{word-spacing:-14.040000px;}
.ws5c{word-spacing:-13.986000px;}
.ws1a{word-spacing:-13.878000px;}
.ws11{word-spacing:-12.336000px;}
.ws20{word-spacing:-11.616000px;}
.ws0{word-spacing:-9.828000px;}
.ws24{word-spacing:-5.130000px;}
.ws1e{word-spacing:-4.698000px;}
.ws10{word-spacing:-1.404000px;}
.ws57{word-spacing:-1.350000px;}
.ws60{word-spacing:-1.296000px;}
.ws58{word-spacing:-1.242000px;}
.ws4c{word-spacing:-1.134000px;}
.ws56{word-spacing:-1.080000px;}
.ws4a{word-spacing:-0.918000px;}
.ws55{word-spacing:-0.864000px;}
.wsf{word-spacing:-0.810000px;}
.wsa{word-spacing:-0.756000px;}
.wse{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.648000px;}
.ws1f{word-spacing:-0.594000px;}
.ws9{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.378000px;}
.ws1c{word-spacing:-0.336000px;}
.wsc{word-spacing:-0.324000px;}
.ws43{word-spacing:-0.270000px;}
.ws3{word-spacing:-0.216000px;}
.ws5{word-spacing:-0.162000px;}
.ws4{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.108000px;}
.ws31{word-spacing:0.270000px;}
.ws5d{word-spacing:0.378000px;}
.ws42{word-spacing:0.540000px;}
.ws8{word-spacing:1.080000px;}
.ws4b{word-spacing:1.728000px;}
.ws34{word-spacing:1.998000px;}
.ws1d{word-spacing:2.700000px;}
.ws2b{word-spacing:21.915000px;}
.ws2d{word-spacing:21.915600px;}
.ws46{word-spacing:22.533600px;}
.ws3a{word-spacing:28.299600px;}
.ws33{word-spacing:34.299600px;}
.ws48{word-spacing:34.917600px;}
.ws17{word-spacing:37.843200px;}
.ws23{word-spacing:43.079400px;}
.ws27{word-spacing:43.080000px;}
.ws51{word-spacing:43.841400px;}
.ws4d{word-spacing:45.521400px;}
.ws2f{word-spacing:46.731000px;}
.ws28{word-spacing:55.463400px;}
.ws12{word-spacing:56.456400px;}
.ws2c{word-spacing:59.115000px;}
.ws32{word-spacing:59.115600px;}
.ws45{word-spacing:59.733600px;}
.ws3b{word-spacing:64.107600px;}
.ws52{word-spacing:70.337400px;}
.ws4e{word-spacing:71.820000px;}
.ws53{word-spacing:77.925000px;}
.ws4f{word-spacing:78.924600px;}
.ws26{word-spacing:80.279400px;}
.ws29{word-spacing:83.883600px;}
.ws2a{word-spacing:83.931600px;}
.ws44{word-spacing:84.501600px;}
.ws47{word-spacing:84.549600px;}
.ws3d{word-spacing:100.299600px;}
.ws39{word-spacing:102.061800px;}
.ws25{word-spacing:105.047400px;}
.ws21{word-spacing:105.048000px;}
.ws22{word-spacing:105.095400px;}
.ws35{word-spacing:118.525800px;}
.ws19{word-spacing:125.514000px;}
.ws40{word-spacing:126.123600px;}
.ws14{word-spacing:129.464400px;}
.ws15{word-spacing:140.394000px;}
.ws16{word-spacing:142.828200px;}
.ws36{word-spacing:149.575200px;}
.ws38{word-spacing:152.983200px;}
.ws41{word-spacing:176.557800px;}
.ws37{word-spacing:178.999200px;}
.ws18{word-spacing:181.530000px;}
.ws13{word-spacing:182.154000px;}
.ws3c{word-spacing:191.437800px;}
.ws3f{word-spacing:209.149800px;}
.ws50{word-spacing:225.215400px;}
.ws3e{word-spacing:231.229800px;}
.wsd{word-spacing:835.385607px;}
._36{margin-left:-96.270000px;}
._5{margin-left:-14.823600px;}
._8{margin-left:-13.376400px;}
._d{margin-left:-11.638200px;}
._7{margin-left:-5.343000px;}
._c{margin-left:-4.249800px;}
._6{margin-left:-2.996400px;}
._0{margin-left:-1.879800px;}
._1{width:1.170000px;}
._4{width:2.388600px;}
._3{width:3.938400px;}
._2{width:5.000400px;}
._9{width:6.042600px;}
._b{width:8.046000px;}
._5b{width:9.059400px;}
._46{width:10.470600px;}
._5c{width:11.766600px;}
._e{width:17.539200px;}
._a{width:23.382000px;}
._37{width:34.251000px;}
._35{width:46.635000px;}
._19{width:50.179200px;}
._18{width:52.861800px;}
._2f{width:55.416000px;}
._34{width:59.199000px;}
._1a{width:60.335400px;}
._30{width:64.423200px;}
._45{width:67.824600px;}
._31{width:70.483200px;}
._11{width:72.432600px;}
._3d{width:75.997200px;}
._1f{width:77.130000px;}
._2c{width:79.321800px;}
._2b{width:81.141600px;}
._f{width:83.164200px;}
._24{width:86.529000px;}
._22{width:88.275600px;}
._20{width:89.775000px;}
._28{width:91.705800px;}
._13{width:93.571200px;}
._49{width:95.229000px;}
._12{width:96.253800px;}
._15{width:97.535400px;}
._42{width:101.706000px;}
._10{width:103.727400px;}
._32{width:106.155000px;}
._38{width:107.671200px;}
._4f{width:110.224200px;}
._53{width:111.356400px;}
._3b{width:113.643600px;}
._48{width:115.077000px;}
._2d{width:116.520600px;}
._2a{width:118.294200px;}
._39{width:119.835600px;}
._4e{width:120.958800px;}
._56{width:123.482400px;}
._3e{width:128.173800px;}
._54{width:132.029400px;}
._26{width:133.104600px;}
._40{width:137.470200px;}
._23{width:138.906000px;}
._1e{width:141.800400px;}
._25{width:144.234000px;}
._1b{width:145.440600px;}
._4c{width:147.965400px;}
._51{width:149.146200px;}
._4a{width:150.278400px;}
._16{width:156.172200px;}
._4d{width:158.927400px;}
._1c{width:160.458000px;}
._1d{width:166.329600px;}
._21{width:168.330000px;}
._17{width:170.543400px;}
._14{width:180.988200px;}
._33{width:190.939200px;}
._43{width:195.277800px;}
._2e{width:206.476800px;}
._3c{width:211.501800px;}
._3f{width:219.373800px;}
._57{width:222.047400px;}
._5a{width:224.687400px;}
._59{width:227.711400px;}
._41{width:231.613800px;}
._4b{width:245.279400px;}
._3a{width:246.877800px;}
._50{width:253.151400px;}
._55{width:256.943400px;}
._58{width:265.391400px;}
._52{width:278.687400px;}
._47{width:280.655400px;}
._29{width:350.812800px;}
._27{width:366.364800px;}
._44{width:369.766800px;}
.fc3{color:transparent;}
.fc2{color:rgb(4,208,232);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:49.199400px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.515900px;}
.y1{bottom:45.610500px;}
.y5e{bottom:76.110150px;}
.y1e{bottom:76.110300px;}
.y10c{bottom:81.705450px;}
.y79{bottom:83.081550px;}
.yb4{bottom:83.160750px;}
.yb6{bottom:87.587550px;}
.y5d{bottom:94.110150px;}
.y1d{bottom:94.110300px;}
.y10b{bottom:104.115900px;}
.y78{bottom:104.641500px;}
.y3a{bottom:104.930700px;}
.yb5{bottom:109.572600px;}
.y5c{bottom:112.110150px;}
.y1c{bottom:112.110300px;}
.y10a{bottom:117.615900px;}
.y3{bottom:121.196400px;}
.y23{bottom:121.375050px;}
.yb3{bottom:123.072600px;}
.y77{bottom:126.201300px;}
.y5b{bottom:130.110150px;}
.y1b{bottom:130.110300px;}
.y39{bottom:133.345800px;}
.y108{bottom:140.026200px;}
.yb2{bottom:145.598700px;}
.y76{bottom:147.761250px;}
.y5a{bottom:148.110150px;}
.y1a{bottom:148.110300px;}
.y107{bottom:153.526200px;}
.yb1{bottom:154.083750px;}
.y75{bottom:161.261250px;}
.y38{bottom:163.972200px;}
.y59{bottom:166.110150px;}
.y32{bottom:166.110300px;}
.y106{bottom:167.026200px;}
.yb0{bottom:167.583750px;}
.y109{bottom:171.615900px;}
.y74{bottom:174.761250px;}
.y105{bottom:180.526200px;}
.yaf{bottom:181.083750px;}
.y58{bottom:184.110150px;}
.y31{bottom:184.110300px;}
.y73{bottom:188.261250px;}
.y36{bottom:192.384900px;}
.y104{bottom:194.026200px;}
.y126{bottom:196.643850px;}
.y72{bottom:201.761250px;}
.y57{bottom:202.110150px;}
.y19{bottom:202.110300px;}
.yae{bottom:203.068950px;}
.y103{bottom:207.526200px;}
.yad{bottom:211.554000px;}
.y56{bottom:220.110150px;}
.y18{bottom:220.110300px;}
.y125{bottom:223.306200px;}
.y71{bottom:223.321200px;}
.yac{bottom:225.054000px;}
.y102{bottom:229.936500px;}
.y55{bottom:238.110150px;}
.y17{bottom:238.110300px;}
.yab{bottom:238.554000px;}
.y101{bottom:238.846800px;}
.y70{bottom:244.881150px;}
.y124{bottom:249.968400px;}
.y100{bottom:252.346800px;}
.y54{bottom:256.110150px;}
.y30{bottom:256.110300px;}
.y6f{bottom:258.381150px;}
.yaa{bottom:260.539200px;}
.yff{bottom:265.846800px;}
.ya9{bottom:269.024250px;}
.y6e{bottom:271.881150px;}
.y53{bottom:274.110150px;}
.y16{bottom:274.110300px;}
.y123{bottom:276.630750px;}
.ya8{bottom:282.524250px;}
.y6d{bottom:285.381150px;}
.yfd{bottom:288.257100px;}
.y52{bottom:292.110150px;}
.y2f{bottom:292.110300px;}
.yfe{bottom:292.846800px;}
.ya7{bottom:296.024250px;}
.yfc{bottom:301.757100px;}
.y122{bottom:303.293100px;}
.y6c{bottom:306.941100px;}
.ycd{bottom:310.110150px;}
.y15{bottom:310.110300px;}
.y3b{bottom:310.830450px;}
.yfb{bottom:315.257100px;}
.ya6{bottom:318.009450px;}
.ya5{bottom:326.494650px;}
.ycc{bottom:328.110150px;}
.y14{bottom:328.110300px;}
.y6b{bottom:328.501050px;}
.yfa{bottom:328.757100px;}
.y121{bottom:329.955300px;}
.ydf{bottom:333.448200px;}
.y35{bottom:337.758000px;}
.ya4{bottom:339.994650px;}
.y6a{bottom:342.001050px;}
.y51{bottom:344.695200px;}
.ycb{bottom:346.110150px;}
.y13{bottom:346.110300px;}
.y91{bottom:347.512500px;}
.yf8{bottom:351.167400px;}
.ya3{bottom:353.494650px;}
.y69{bottom:355.501050px;}
.y120{bottom:356.617650px;}
.yde{bottom:357.134100px;}
.yca{bottom:364.110150px;}
.y12{bottom:364.110300px;}
.yf7{bottom:364.667400px;}
.y50{bottom:368.381100px;}
.y68{bottom:369.001050px;}
.y90{bottom:369.072450px;}
.yf9{bottom:369.257100px;}
.ya2{bottom:375.479700px;}
.yf6{bottom:378.167400px;}
.ydd{bottom:380.820000px;}
.yc9{bottom:382.110150px;}
.y11{bottom:382.110300px;}
.y11f{bottom:383.280000px;}
.y67{bottom:390.561000px;}
.y8f{bottom:390.632400px;}
.yf5{bottom:391.667400px;}
.y4f{bottom:392.067150px;}
.ya1{bottom:397.107900px;}
.yc8{bottom:400.110150px;}
.y10{bottom:400.110300px;}
.ydc{bottom:404.505900px;}
.yf4{bottom:405.167400px;}
.y11e{bottom:409.942200px;}
.y66{bottom:412.189200px;}
.y8e{bottom:412.192350px;}
.y4e{bottom:415.752900px;}
.yc7{bottom:418.110150px;}
.yf{bottom:418.110300px;}
.y8d{bottom:425.692350px;}
.yf2{bottom:427.577700px;}
.ydb{bottom:428.191800px;}
.yf3{bottom:432.167400px;}
.y9f{bottom:432.352350px;}
.y65{bottom:433.817400px;}
.yc6{bottom:436.110150px;}
.ye{bottom:436.110300px;}
.y11d{bottom:436.604550px;}
.y63{bottom:436.769100px;}
.y8c{bottom:439.192350px;}
.y4d{bottom:439.438950px;}
.yf1{bottom:441.077700px;}
.y9e{bottom:445.852350px;}
.y62{bottom:450.269100px;}
.yda{bottom:451.877700px;}
.y8b{bottom:452.692350px;}
.yc5{bottom:454.110150px;}
.yd{bottom:454.110300px;}
.yf0{bottom:454.577700px;}
.y4c{bottom:463.124850px;}
.y11c{bottom:463.266750px;}
.y61{bottom:463.769100px;}
.yef{bottom:468.077700px;}
.yc4{bottom:472.110150px;}
.yc{bottom:472.110300px;}
.y8a{bottom:474.252300px;}
.yd9{bottom:475.563600px;}
.y60{bottom:477.269100px;}
.ya0{bottom:481.096800px;}
.y4b{bottom:486.810750px;}
.y11b{bottom:489.556350px;}
.yc3{bottom:490.110150px;}
.yb{bottom:490.110300px;}
.yee{bottom:490.488150px;}
.y89{bottom:495.812250px;}
.yd8{bottom:499.249500px;}
.yed{bottom:499.398450px;}
.y64{bottom:501.848850px;}
.y9d{bottom:502.725150px;}
.yc2{bottom:508.110150px;}
.ya{bottom:508.110300px;}
.y88{bottom:509.312250px;}
.y4a{bottom:510.496650px;}
.yec{bottom:512.898450px;}
.y115{bottom:514.265850px;}
.y9c{bottom:519.225150px;}
.y11a{bottom:521.015850px;}
.y87{bottom:522.812250px;}
.yd7{bottom:522.935550px;}
.y5f{bottom:523.477200px;}
.yc1{bottom:526.110150px;}
.y9{bottom:526.110300px;}
.yeb{bottom:526.398450px;}
.y114{bottom:527.765850px;}
.y49{bottom:534.182550px;}
.y118{bottom:534.515850px;}
.y10f{bottom:535.661100px;}
.y86{bottom:536.312250px;}
.y111{bottom:541.265850px;}
.y8{bottom:544.110300px;}
.yd6{bottom:546.621450px;}
.y117{bottom:548.015850px;}
.yea{bottom:548.808750px;}
.y85{bottom:549.812250px;}
.y110{bottom:554.765850px;}
.y48{bottom:557.868450px;}
.y116{bottom:561.515850px;}
.y9b{bottom:562.110150px;}
.y2e{bottom:562.110300px;}
.y113{bottom:568.265850px;}
.yd5{bottom:570.307350px;}
.yc0{bottom:570.940350px;}
.ye9{bottom:571.219050px;}
.y84{bottom:571.372200px;}
.y119{bottom:575.015850px;}
.y9a{bottom:580.110150px;}
.y7{bottom:580.110300px;}
.y47{bottom:581.554350px;}
.y112{bottom:581.765850px;}
.ye8{bottom:584.719050px;}
.ybf{bottom:592.500300px;}
.y83{bottom:592.932150px;}
.yd4{bottom:593.993250px;}
.y99{bottom:598.110150px;}
.y2d{bottom:598.110300px;}
.y46{bottom:605.240250px;}
.y10e{bottom:605.997750px;}
.ybe{bottom:606.000300px;}
.y82{bottom:606.432150px;}
.ye7{bottom:607.129350px;}
.yd3{bottom:607.493250px;}
.y98{bottom:616.110150px;}
.y2c{bottom:616.110300px;}
.y6{bottom:619.485300px;}
.y10d{bottom:622.497750px;}
.ybd{bottom:627.560100px;}
.y81{bottom:627.991950px;}
.y45{bottom:628.994550px;}
.ye6{bottom:629.608050px;}
.yd2{bottom:631.247400px;}
.y97{bottom:634.110150px;}
.y2b{bottom:634.110300px;}
.y43{bottom:635.744550px;}
.y5{bottom:637.485300px;}
.yd1{bottom:637.997400px;}
.y3f{bottom:642.494550px;}
.ybc{bottom:649.120050px;}
.y42{bottom:649.244550px;}
.y80{bottom:649.551900px;}
.ye5{bottom:652.086600px;}
.y96{bottom:652.110150px;}
.y2a{bottom:652.110300px;}
.y41{bottom:654.371700px;}
.y4{bottom:655.485300px;}
.y44{bottom:655.994550px;}
.ybb{bottom:662.620050px;}
.y7f{bottom:663.051900px;}
.yd0{bottom:668.501700px;}
.ye3{bottom:669.700950px;}
.y95{bottom:670.110150px;}
.y29{bottom:670.110300px;}
.y40{bottom:679.748700px;}
.ye2{bottom:683.200950px;}
.yba{bottom:684.180000px;}
.y7e{bottom:684.611850px;}
.ycf{bottom:685.001700px;}
.y94{bottom:688.110150px;}
.y28{bottom:688.110300px;}
.y2{bottom:704.520150px;}
.yb9{bottom:705.739950px;}
.y93{bottom:706.110150px;}
.y27{bottom:706.110300px;}
.y7d{bottom:706.171800px;}
.y3e{bottom:706.476450px;}
.yb8{bottom:719.239950px;}
.y7c{bottom:719.671800px;}
.ye4{bottom:723.293700px;}
.y92{bottom:724.110150px;}
.y26{bottom:724.110300px;}
.yb7{bottom:740.799900px;}
.y7b{bottom:741.231750px;}
.y3d{bottom:742.110150px;}
.y22{bottom:742.110300px;}
.ye1{bottom:745.772400px;}
.y21{bottom:755.610300px;}
.y3c{bottom:760.110150px;}
.y25{bottom:760.110300px;}
.yce{bottom:761.584350px;}
.ye0{bottom:762.272400px;}
.y7a{bottom:762.859950px;}
.y20{bottom:769.110300px;}
.y34{bottom:787.749900px;}
.y24{bottom:788.056950px;}
.y1f{bottom:796.110300px;}
.y33{bottom:799.749900px;}
.h7{height:33.978000px;}
.hc{height:36.576000px;}
.ha{height:37.489943px;}
.h2{height:38.304000px;}
.hb{height:39.408000px;}
.h4{height:43.092000px;}
.h6{height:43.686000px;}
.h5{height:44.334000px;}
.h8{height:48.060000px;}
.h3{height:62.244000px;}
.hd{height:63.576000px;}
.he{height:90.576000px;}
.h9{height:222.852000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w2{width:370.474500px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x11{left:28.689000px;}
.xa{left:36.097500px;}
.x5{left:63.779550px;}
.x13{left:68.031450px;}
.x3b{left:70.880250px;}
.x39{left:78.023550px;}
.x6{left:85.039350px;}
.x3a{left:93.543300px;}
.x2{left:99.705450px;}
.x4{left:106.299150px;}
.xc{left:117.663600px;}
.xe{left:124.402500px;}
.x14{left:136.057950px;}
.xd{left:139.106400px;}
.x10{left:148.245300px;}
.x37{left:157.263300px;}
.xf{left:158.802750px;}
.xb{left:163.652250px;}
.x19{left:165.826800px;}
.x1a{left:184.217100px;}
.x1b{left:219.779100px;}
.x31{left:221.952750px;}
.x16{left:224.300850px;}
.x2f{left:230.456700px;}
.x32{left:237.774900px;}
.x25{left:239.398350px;}
.x1c{left:255.340950px;}
.x9{left:256.949400px;}
.x12{left:263.641650px;}
.x33{left:268.200300px;}
.x26{left:269.669250px;}
.x1d{left:290.902950px;}
.x34{left:298.625700px;}
.x1{left:300.539850px;}
.x38{left:310.246350px;}
.x17{left:312.543600px;}
.x1e{left:326.464800px;}
.x35{left:329.051250px;}
.x27{left:330.210900px;}
.x36{left:359.476650px;}
.x28{left:360.481800px;}
.x1f{left:362.026800px;}
.x8{left:364.475700px;}
.x7{left:382.467000px;}
.x29{left:390.752550px;}
.x30{left:393.732300px;}
.x18{left:396.235350px;}
.x20{left:397.588650px;}
.x2a{left:421.023450px;}
.x21{left:433.150500px;}
.x2b{left:451.294350px;}
.x22{left:468.712350px;}
.x15{left:478.346250px;}
.x2c{left:481.565100px;}
.x23{left:504.274350px;}
.x2d{left:511.836000px;}
.x24{left:539.836200px;}
.x2e{left:542.106900px;}
.x3{left:592.254900px;}
@media print{
.v1{vertical-align:-7.870933pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:48.000000pt;}
.ls1f{letter-spacing:-2.400000pt;}
.ls2f{letter-spacing:-1.776000pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls42{letter-spacing:-0.336000pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.004800pt;}
.ls39{letter-spacing:0.024000pt;}
.lsd{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.083200pt;}
.ls2{letter-spacing:0.084800pt;}
.ls3{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.120000pt;}
.ls25{letter-spacing:0.140800pt;}
.ls26{letter-spacing:0.141333pt;}
.ls4{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.165333pt;}
.ls17{letter-spacing:0.165867pt;}
.ls16{letter-spacing:0.168000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.197867pt;}
.ls36{letter-spacing:0.216000pt;}
.ls30{letter-spacing:0.240000pt;}
.ls2b{letter-spacing:0.264000pt;}
.ls14{letter-spacing:0.276800pt;}
.lsc{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.312000pt;}
.ls6{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.387200pt;}
.ls1e{letter-spacing:0.401600pt;}
.ls43{letter-spacing:0.432000pt;}
.ls34{letter-spacing:0.479467pt;}
.ls7{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.481600pt;}
.ls2d{letter-spacing:0.498133pt;}
.ls2e{letter-spacing:0.498667pt;}
.ls1d{letter-spacing:0.504000pt;}
.ls21{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.576000pt;}
.ls3b{letter-spacing:0.602667pt;}
.lsf{letter-spacing:0.624000pt;}
.ls1a{letter-spacing:0.651200pt;}
.lsa{letter-spacing:0.672000pt;}
.ls10{letter-spacing:0.720000pt;}
.ls40{letter-spacing:0.740800pt;}
.ls3a{letter-spacing:0.768000pt;}
.ls33{letter-spacing:0.816000pt;}
.ls44{letter-spacing:0.840000pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls37{letter-spacing:1.008000pt;}
.ls41{letter-spacing:1.104000pt;}
.ls45{letter-spacing:1.152000pt;}
.ls3f{letter-spacing:1.176000pt;}
.ls11{letter-spacing:1.248000pt;}
.ls12{letter-spacing:1.250667pt;}
.ls1b{letter-spacing:4.153600pt;}
.ls20{letter-spacing:4.176000pt;}
.ls31{letter-spacing:4.304533pt;}
.ls15{letter-spacing:4.347200pt;}
.ls35{letter-spacing:4.374400pt;}
.ls23{letter-spacing:4.560000pt;}
.ls2a{letter-spacing:4.568000pt;}
.ls2c{letter-spacing:4.625600pt;}
.ls27{letter-spacing:85.571200pt;}
.ws2e{word-spacing:-96.536533pt;}
.ws5f{word-spacing:-13.176000pt;}
.ws5a{word-spacing:-12.864000pt;}
.ws49{word-spacing:-12.816000pt;}
.ws5e{word-spacing:-12.768000pt;}
.ws1b{word-spacing:-12.720000pt;}
.ws59{word-spacing:-12.648000pt;}
.ws5b{word-spacing:-12.624000pt;}
.ws54{word-spacing:-12.480000pt;}
.ws5c{word-spacing:-12.432000pt;}
.ws1a{word-spacing:-12.336000pt;}
.ws11{word-spacing:-10.965333pt;}
.ws20{word-spacing:-10.325333pt;}
.ws0{word-spacing:-8.736000pt;}
.ws24{word-spacing:-4.560000pt;}
.ws1e{word-spacing:-4.176000pt;}
.ws10{word-spacing:-1.248000pt;}
.ws57{word-spacing:-1.200000pt;}
.ws60{word-spacing:-1.152000pt;}
.ws58{word-spacing:-1.104000pt;}
.ws4c{word-spacing:-1.008000pt;}
.ws56{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.816000pt;}
.ws55{word-spacing:-0.768000pt;}
.wsf{word-spacing:-0.720000pt;}
.wsa{word-spacing:-0.672000pt;}
.wse{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws1f{word-spacing:-0.528000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.336000pt;}
.ws1c{word-spacing:-0.298667pt;}
.wsc{word-spacing:-0.288000pt;}
.ws43{word-spacing:-0.240000pt;}
.ws3{word-spacing:-0.192000pt;}
.ws5{word-spacing:-0.144000pt;}
.ws4{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.096000pt;}
.ws31{word-spacing:0.240000pt;}
.ws5d{word-spacing:0.336000pt;}
.ws42{word-spacing:0.480000pt;}
.ws8{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.536000pt;}
.ws34{word-spacing:1.776000pt;}
.ws1d{word-spacing:2.400000pt;}
.ws2b{word-spacing:19.480000pt;}
.ws2d{word-spacing:19.480533pt;}
.ws46{word-spacing:20.029867pt;}
.ws3a{word-spacing:25.155200pt;}
.ws33{word-spacing:30.488533pt;}
.ws48{word-spacing:31.037867pt;}
.ws17{word-spacing:33.638400pt;}
.ws23{word-spacing:38.292800pt;}
.ws27{word-spacing:38.293333pt;}
.ws51{word-spacing:38.970133pt;}
.ws4d{word-spacing:40.463467pt;}
.ws2f{word-spacing:41.538667pt;}
.ws28{word-spacing:49.300800pt;}
.ws12{word-spacing:50.183467pt;}
.ws2c{word-spacing:52.546667pt;}
.ws32{word-spacing:52.547200pt;}
.ws45{word-spacing:53.096533pt;}
.ws3b{word-spacing:56.984533pt;}
.ws52{word-spacing:62.522133pt;}
.ws4e{word-spacing:63.840000pt;}
.ws53{word-spacing:69.266667pt;}
.ws4f{word-spacing:70.155200pt;}
.ws26{word-spacing:71.359467pt;}
.ws29{word-spacing:74.563200pt;}
.ws2a{word-spacing:74.605867pt;}
.ws44{word-spacing:75.112533pt;}
.ws47{word-spacing:75.155200pt;}
.ws3d{word-spacing:89.155200pt;}
.ws39{word-spacing:90.721600pt;}
.ws25{word-spacing:93.375467pt;}
.ws21{word-spacing:93.376000pt;}
.ws22{word-spacing:93.418133pt;}
.ws35{word-spacing:105.356267pt;}
.ws19{word-spacing:111.568000pt;}
.ws40{word-spacing:112.109867pt;}
.ws14{word-spacing:115.079467pt;}
.ws15{word-spacing:124.794667pt;}
.ws16{word-spacing:126.958400pt;}
.ws36{word-spacing:132.955733pt;}
.ws38{word-spacing:135.985067pt;}
.ws41{word-spacing:156.940267pt;}
.ws37{word-spacing:159.110400pt;}
.ws18{word-spacing:161.360000pt;}
.ws13{word-spacing:161.914667pt;}
.ws3c{word-spacing:170.166933pt;}
.ws3f{word-spacing:185.910933pt;}
.ws50{word-spacing:200.191467pt;}
.ws3e{word-spacing:205.537600pt;}
.wsd{word-spacing:742.564984pt;}
._36{margin-left:-85.573333pt;}
._5{margin-left:-13.176533pt;}
._8{margin-left:-11.890133pt;}
._d{margin-left:-10.345067pt;}
._7{margin-left:-4.749333pt;}
._c{margin-left:-3.777600pt;}
._6{margin-left:-2.663467pt;}
._0{margin-left:-1.670933pt;}
._1{width:1.040000pt;}
._4{width:2.123200pt;}
._3{width:3.500800pt;}
._2{width:4.444800pt;}
._9{width:5.371200pt;}
._b{width:7.152000pt;}
._5b{width:8.052800pt;}
._46{width:9.307200pt;}
._5c{width:10.459200pt;}
._e{width:15.590400pt;}
._a{width:20.784000pt;}
._37{width:30.445333pt;}
._35{width:41.453333pt;}
._19{width:44.603733pt;}
._18{width:46.988267pt;}
._2f{width:49.258667pt;}
._34{width:52.621333pt;}
._1a{width:53.631467pt;}
._30{width:57.265067pt;}
._45{width:60.288533pt;}
._31{width:62.651733pt;}
._11{width:64.384533pt;}
._3d{width:67.553067pt;}
._1f{width:68.560000pt;}
._2c{width:70.508267pt;}
._2b{width:72.125867pt;}
._f{width:73.923733pt;}
._24{width:76.914667pt;}
._22{width:78.467200pt;}
._20{width:79.800000pt;}
._28{width:81.516267pt;}
._13{width:83.174400pt;}
._49{width:84.648000pt;}
._12{width:85.558933pt;}
._15{width:86.698133pt;}
._42{width:90.405333pt;}
._10{width:92.202133pt;}
._32{width:94.360000pt;}
._38{width:95.707733pt;}
._4f{width:97.977067pt;}
._53{width:98.983467pt;}
._3b{width:101.016533pt;}
._48{width:102.290667pt;}
._2d{width:103.573867pt;}
._2a{width:105.150400pt;}
._39{width:106.520533pt;}
._4e{width:107.518933pt;}
._56{width:109.762133pt;}
._3e{width:113.932267pt;}
._54{width:117.359467pt;}
._26{width:118.315200pt;}
._40{width:122.195733pt;}
._23{width:123.472000pt;}
._1e{width:126.044800pt;}
._25{width:128.208000pt;}
._1b{width:129.280533pt;}
._4c{width:131.524800pt;}
._51{width:132.574400pt;}
._4a{width:133.580800pt;}
._16{width:138.819733pt;}
._4d{width:141.268800pt;}
._1c{width:142.629333pt;}
._1d{width:147.848533pt;}
._21{width:149.626667pt;}
._17{width:151.594133pt;}
._14{width:160.878400pt;}
._33{width:169.723733pt;}
._43{width:173.580267pt;}
._2e{width:183.534933pt;}
._3c{width:188.001600pt;}
._3f{width:194.998933pt;}
._57{width:197.375467pt;}
._5a{width:199.722133pt;}
._59{width:202.410133pt;}
._41{width:205.878933pt;}
._4b{width:218.026133pt;}
._3a{width:219.446933pt;}
._50{width:225.023467pt;}
._55{width:228.394133pt;}
._58{width:235.903467pt;}
._52{width:247.722133pt;}
._47{width:249.471467pt;}
._29{width:311.833600pt;}
._27{width:325.657600pt;}
._44{width:328.681600pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:43.732800pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.680800pt;}
.y1{bottom:40.542667pt;}
.y5e{bottom:67.653467pt;}
.y1e{bottom:67.653600pt;}
.y10c{bottom:72.627067pt;}
.y79{bottom:73.850267pt;}
.yb4{bottom:73.920667pt;}
.yb6{bottom:77.855600pt;}
.y5d{bottom:83.653467pt;}
.y1d{bottom:83.653600pt;}
.y10b{bottom:92.547467pt;}
.y78{bottom:93.014667pt;}
.y3a{bottom:93.271733pt;}
.yb5{bottom:97.397867pt;}
.y5c{bottom:99.653467pt;}
.y1c{bottom:99.653600pt;}
.y10a{bottom:104.547467pt;}
.y3{bottom:107.730133pt;}
.y23{bottom:107.888933pt;}
.yb3{bottom:109.397867pt;}
.y77{bottom:112.178933pt;}
.y5b{bottom:115.653467pt;}
.y1b{bottom:115.653600pt;}
.y39{bottom:118.529600pt;}
.y108{bottom:124.467733pt;}
.yb2{bottom:129.421067pt;}
.y76{bottom:131.343333pt;}
.y5a{bottom:131.653467pt;}
.y1a{bottom:131.653600pt;}
.y107{bottom:136.467733pt;}
.yb1{bottom:136.963333pt;}
.y75{bottom:143.343333pt;}
.y38{bottom:145.753067pt;}
.y59{bottom:147.653467pt;}
.y32{bottom:147.653600pt;}
.y106{bottom:148.467733pt;}
.yb0{bottom:148.963333pt;}
.y109{bottom:152.547467pt;}
.y74{bottom:155.343333pt;}
.y105{bottom:160.467733pt;}
.yaf{bottom:160.963333pt;}
.y58{bottom:163.653467pt;}
.y31{bottom:163.653600pt;}
.y73{bottom:167.343333pt;}
.y36{bottom:171.008800pt;}
.y104{bottom:172.467733pt;}
.y126{bottom:174.794533pt;}
.y72{bottom:179.343333pt;}
.y57{bottom:179.653467pt;}
.y19{bottom:179.653600pt;}
.yae{bottom:180.505733pt;}
.y103{bottom:184.467733pt;}
.yad{bottom:188.048000pt;}
.y56{bottom:195.653467pt;}
.y18{bottom:195.653600pt;}
.y125{bottom:198.494400pt;}
.y71{bottom:198.507733pt;}
.yac{bottom:200.048000pt;}
.y102{bottom:204.388000pt;}
.y55{bottom:211.653467pt;}
.y17{bottom:211.653600pt;}
.yab{bottom:212.048000pt;}
.y101{bottom:212.308267pt;}
.y70{bottom:217.672133pt;}
.y124{bottom:222.194133pt;}
.y100{bottom:224.308267pt;}
.y54{bottom:227.653467pt;}
.y30{bottom:227.653600pt;}
.y6f{bottom:229.672133pt;}
.yaa{bottom:231.590400pt;}
.yff{bottom:236.308267pt;}
.ya9{bottom:239.132667pt;}
.y6e{bottom:241.672133pt;}
.y53{bottom:243.653467pt;}
.y16{bottom:243.653600pt;}
.y123{bottom:245.894000pt;}
.ya8{bottom:251.132667pt;}
.y6d{bottom:253.672133pt;}
.yfd{bottom:256.228533pt;}
.y52{bottom:259.653467pt;}
.y2f{bottom:259.653600pt;}
.yfe{bottom:260.308267pt;}
.ya7{bottom:263.132667pt;}
.yfc{bottom:268.228533pt;}
.y122{bottom:269.593867pt;}
.y6c{bottom:272.836533pt;}
.ycd{bottom:275.653467pt;}
.y15{bottom:275.653600pt;}
.y3b{bottom:276.293733pt;}
.yfb{bottom:280.228533pt;}
.ya6{bottom:282.675067pt;}
.ya5{bottom:290.217467pt;}
.ycc{bottom:291.653467pt;}
.y14{bottom:291.653600pt;}
.y6b{bottom:292.000933pt;}
.yfa{bottom:292.228533pt;}
.y121{bottom:293.293600pt;}
.ydf{bottom:296.398400pt;}
.y35{bottom:300.229333pt;}
.ya4{bottom:302.217467pt;}
.y6a{bottom:304.000933pt;}
.y51{bottom:306.395733pt;}
.ycb{bottom:307.653467pt;}
.y13{bottom:307.653600pt;}
.y91{bottom:308.900000pt;}
.yf8{bottom:312.148800pt;}
.ya3{bottom:314.217467pt;}
.y69{bottom:316.000933pt;}
.y120{bottom:316.993467pt;}
.yde{bottom:317.452533pt;}
.yca{bottom:323.653467pt;}
.y12{bottom:323.653600pt;}
.yf7{bottom:324.148800pt;}
.y50{bottom:327.449867pt;}
.y68{bottom:328.000933pt;}
.y90{bottom:328.064400pt;}
.yf9{bottom:328.228533pt;}
.ya2{bottom:333.759733pt;}
.yf6{bottom:336.148800pt;}
.ydd{bottom:338.506667pt;}
.yc9{bottom:339.653467pt;}
.y11{bottom:339.653600pt;}
.y11f{bottom:340.693333pt;}
.y67{bottom:347.165333pt;}
.y8f{bottom:347.228800pt;}
.yf5{bottom:348.148800pt;}
.y4f{bottom:348.504133pt;}
.ya1{bottom:352.984800pt;}
.yc8{bottom:355.653467pt;}
.y10{bottom:355.653600pt;}
.ydc{bottom:359.560800pt;}
.yf4{bottom:360.148800pt;}
.y11e{bottom:364.393067pt;}
.y66{bottom:366.390400pt;}
.y8e{bottom:366.393200pt;}
.y4e{bottom:369.558133pt;}
.yc7{bottom:371.653467pt;}
.yf{bottom:371.653600pt;}
.y8d{bottom:378.393200pt;}
.yf2{bottom:380.069067pt;}
.ydb{bottom:380.614933pt;}
.yf3{bottom:384.148800pt;}
.y9f{bottom:384.313200pt;}
.y65{bottom:385.615467pt;}
.yc6{bottom:387.653467pt;}
.ye{bottom:387.653600pt;}
.y11d{bottom:388.092933pt;}
.y63{bottom:388.239200pt;}
.y8c{bottom:390.393200pt;}
.y4d{bottom:390.612400pt;}
.yf1{bottom:392.069067pt;}
.y9e{bottom:396.313200pt;}
.y62{bottom:400.239200pt;}
.yda{bottom:401.669067pt;}
.y8b{bottom:402.393200pt;}
.yc5{bottom:403.653467pt;}
.yd{bottom:403.653600pt;}
.yf0{bottom:404.069067pt;}
.y4c{bottom:411.666533pt;}
.y11c{bottom:411.792667pt;}
.y61{bottom:412.239200pt;}
.yef{bottom:416.069067pt;}
.yc4{bottom:419.653467pt;}
.yc{bottom:419.653600pt;}
.y8a{bottom:421.557600pt;}
.yd9{bottom:422.723200pt;}
.y60{bottom:424.239200pt;}
.ya0{bottom:427.641600pt;}
.y4b{bottom:432.720667pt;}
.y11b{bottom:435.161200pt;}
.yc3{bottom:435.653467pt;}
.yb{bottom:435.653600pt;}
.yee{bottom:435.989467pt;}
.y89{bottom:440.722000pt;}
.yd8{bottom:443.777333pt;}
.yed{bottom:443.909733pt;}
.y64{bottom:446.087867pt;}
.y9d{bottom:446.866800pt;}
.yc2{bottom:451.653467pt;}
.ya{bottom:451.653600pt;}
.y88{bottom:452.722000pt;}
.y4a{bottom:453.774800pt;}
.yec{bottom:455.909733pt;}
.y115{bottom:457.125200pt;}
.y9c{bottom:461.533467pt;}
.y11a{bottom:463.125200pt;}
.y87{bottom:464.722000pt;}
.yd7{bottom:464.831600pt;}
.y5f{bottom:465.313067pt;}
.yc1{bottom:467.653467pt;}
.y9{bottom:467.653600pt;}
.yeb{bottom:467.909733pt;}
.y114{bottom:469.125200pt;}
.y49{bottom:474.828933pt;}
.y118{bottom:475.125200pt;}
.y10f{bottom:476.143200pt;}
.y86{bottom:476.722000pt;}
.y111{bottom:481.125200pt;}
.y8{bottom:483.653600pt;}
.yd6{bottom:485.885733pt;}
.y117{bottom:487.125200pt;}
.yea{bottom:487.830000pt;}
.y85{bottom:488.722000pt;}
.y110{bottom:493.125200pt;}
.y48{bottom:495.883067pt;}
.y116{bottom:499.125200pt;}
.y9b{bottom:499.653467pt;}
.y2e{bottom:499.653600pt;}
.y113{bottom:505.125200pt;}
.yd5{bottom:506.939867pt;}
.yc0{bottom:507.502533pt;}
.ye9{bottom:507.750267pt;}
.y84{bottom:507.886400pt;}
.y119{bottom:511.125200pt;}
.y9a{bottom:515.653467pt;}
.y7{bottom:515.653600pt;}
.y47{bottom:516.937200pt;}
.y112{bottom:517.125200pt;}
.ye8{bottom:519.750267pt;}
.ybf{bottom:526.666933pt;}
.y83{bottom:527.050800pt;}
.yd4{bottom:527.994000pt;}
.y99{bottom:531.653467pt;}
.y2d{bottom:531.653600pt;}
.y46{bottom:537.991333pt;}
.y10e{bottom:538.664667pt;}
.ybe{bottom:538.666933pt;}
.y82{bottom:539.050800pt;}
.ye7{bottom:539.670533pt;}
.yd3{bottom:539.994000pt;}
.y98{bottom:547.653467pt;}
.y2c{bottom:547.653600pt;}
.y6{bottom:550.653600pt;}
.y10d{bottom:553.331333pt;}
.ybd{bottom:557.831200pt;}
.y81{bottom:558.215067pt;}
.y45{bottom:559.106267pt;}
.ye6{bottom:559.651600pt;}
.yd2{bottom:561.108800pt;}
.y97{bottom:563.653467pt;}
.y2b{bottom:563.653600pt;}
.y43{bottom:565.106267pt;}
.y5{bottom:566.653600pt;}
.yd1{bottom:567.108800pt;}
.y3f{bottom:571.106267pt;}
.ybc{bottom:576.995600pt;}
.y42{bottom:577.106267pt;}
.y80{bottom:577.379467pt;}
.ye5{bottom:579.632533pt;}
.y96{bottom:579.653467pt;}
.y2a{bottom:579.653600pt;}
.y41{bottom:581.663733pt;}
.y4{bottom:582.653600pt;}
.y44{bottom:583.106267pt;}
.ybb{bottom:588.995600pt;}
.y7f{bottom:589.379467pt;}
.yd0{bottom:594.223733pt;}
.ye3{bottom:595.289733pt;}
.y95{bottom:595.653467pt;}
.y29{bottom:595.653600pt;}
.y40{bottom:604.221067pt;}
.ye2{bottom:607.289733pt;}
.yba{bottom:608.160000pt;}
.y7e{bottom:608.543867pt;}
.ycf{bottom:608.890400pt;}
.y94{bottom:611.653467pt;}
.y28{bottom:611.653600pt;}
.y2{bottom:626.240133pt;}
.yb9{bottom:627.324400pt;}
.y93{bottom:627.653467pt;}
.y27{bottom:627.653600pt;}
.y7d{bottom:627.708267pt;}
.y3e{bottom:627.979067pt;}
.yb8{bottom:639.324400pt;}
.y7c{bottom:639.708267pt;}
.ye4{bottom:642.927733pt;}
.y92{bottom:643.653467pt;}
.y26{bottom:643.653600pt;}
.yb7{bottom:658.488800pt;}
.y7b{bottom:658.872667pt;}
.y3d{bottom:659.653467pt;}
.y22{bottom:659.653600pt;}
.ye1{bottom:662.908800pt;}
.y21{bottom:671.653600pt;}
.y3c{bottom:675.653467pt;}
.y25{bottom:675.653600pt;}
.yce{bottom:676.963867pt;}
.ye0{bottom:677.575467pt;}
.y7a{bottom:678.097733pt;}
.y20{bottom:683.653600pt;}
.y34{bottom:700.222133pt;}
.y24{bottom:700.495067pt;}
.y1f{bottom:707.653600pt;}
.y33{bottom:710.888800pt;}
.h7{height:30.202667pt;}
.hc{height:32.512000pt;}
.ha{height:33.324394pt;}
.h2{height:34.048000pt;}
.hb{height:35.029333pt;}
.h4{height:38.304000pt;}
.h6{height:38.832000pt;}
.h5{height:39.408000pt;}
.h8{height:42.720000pt;}
.h3{height:55.328000pt;}
.hd{height:56.512000pt;}
.he{height:80.512000pt;}
.h9{height:198.090667pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w2{width:329.310667pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x11{left:25.501333pt;}
.xa{left:32.086667pt;}
.x5{left:56.692933pt;}
.x13{left:60.472400pt;}
.x3b{left:63.004667pt;}
.x39{left:69.354267pt;}
.x6{left:75.590533pt;}
.x3a{left:83.149600pt;}
.x2{left:88.627067pt;}
.x4{left:94.488133pt;}
.xc{left:104.589867pt;}
.xe{left:110.580000pt;}
.x14{left:120.940400pt;}
.xd{left:123.650133pt;}
.x10{left:131.773600pt;}
.x37{left:139.789600pt;}
.xf{left:141.158000pt;}
.xb{left:145.468667pt;}
.x19{left:147.401600pt;}
.x1a{left:163.748533pt;}
.x1b{left:195.359200pt;}
.x31{left:197.291333pt;}
.x16{left:199.378533pt;}
.x2f{left:204.850400pt;}
.x32{left:211.355467pt;}
.x25{left:212.798533pt;}
.x1c{left:226.969733pt;}
.x9{left:228.399467pt;}
.x12{left:234.348133pt;}
.x33{left:238.400267pt;}
.x26{left:239.706000pt;}
.x1d{left:258.580400pt;}
.x34{left:265.445067pt;}
.x1{left:267.146533pt;}
.x38{left:275.774533pt;}
.x17{left:277.816533pt;}
.x1e{left:290.190933pt;}
.x35{left:292.490000pt;}
.x27{left:293.520800pt;}
.x36{left:319.534800pt;}
.x28{left:320.428267pt;}
.x1f{left:321.801600pt;}
.x8{left:323.978400pt;}
.x7{left:339.970667pt;}
.x29{left:347.335600pt;}
.x30{left:349.984267pt;}
.x18{left:352.209200pt;}
.x20{left:353.412133pt;}
.x2a{left:374.243067pt;}
.x21{left:385.022667pt;}
.x2b{left:401.150533pt;}
.x22{left:416.633200pt;}
.x15{left:425.196667pt;}
.x2c{left:428.057867pt;}
.x23{left:448.243867pt;}
.x2d{left:454.965333pt;}
.x24{left:479.854400pt;}
.x2e{left:481.872800pt;}
.x3{left:526.448800pt;}
}




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