
    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_0d7c8331c1882ee0baf90020.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_26e8a128e887c3a27d3ad6f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.082000;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_ac477a14f3c3af402eb0f51b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_ae0fedcec965076c5656c1cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104000;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_be97e0a02d24d6d9d591a5d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-48.420000px;}
.v3{vertical-align:-36.318000px;}
.v2{vertical-align:-17.358000px;}
.v5{vertical-align:-6.870000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002074px;}
.ls2{letter-spacing:0.005290px;}
.ls3{letter-spacing:10.959600px;}
.ls4{letter-spacing:29.890200px;}
.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;}
}
.ws3{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.057385px;}
.ws46{word-spacing:-0.053798px;}
.ws21{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:7.938220px;}
.wsaa{word-spacing:9.862974px;}
.ws45{word-spacing:9.922750px;}
.ws79{word-spacing:9.982525px;}
.ws65{word-spacing:10.161852px;}
.wsb4{word-spacing:10.341179px;}
.wsbe{word-spacing:10.400954px;}
.ws86{word-spacing:10.520506px;}
.wsa1{word-spacing:10.580281px;}
.ws9a{word-spacing:10.938935px;}
.ws88{word-spacing:11.178037px;}
.ws4f{word-spacing:11.237813px;}
.wsb3{word-spacing:11.357364px;}
.ws57{word-spacing:11.656242px;}
.wsc5{word-spacing:11.727923px;}
.ws7e{word-spacing:11.775793px;}
.ws1f{word-spacing:11.835569px;}
.ws75{word-spacing:11.895344px;}
.ws60{word-spacing:11.955120px;}
.ws87{word-spacing:12.074671px;}
.wsad{word-spacing:12.134447px;}
.wsa0{word-spacing:12.158438px;}
.ws3c{word-spacing:12.373549px;}
.ws81{word-spacing:12.433325px;}
.ws42{word-spacing:12.493100px;}
.ws2f{word-spacing:12.552876px;}
.ws1{word-spacing:12.696422px;}
.wse{word-spacing:12.732203px;}
.ws2d{word-spacing:12.851754px;}
.ws7a{word-spacing:12.911530px;}
.ws44{word-spacing:12.971305px;}
.ws6a{word-spacing:13.090856px;}
.ws71{word-spacing:13.150632px;}
.ws64{word-spacing:13.210408px;}
.ws84{word-spacing:13.234406px;}
.ws4d{word-spacing:13.270183px;}
.ws23{word-spacing:13.329959px;}
.ws13{word-spacing:13.389734px;}
.ws2{word-spacing:13.395802px;}
.ws83{word-spacing:13.509286px;}
.ws62{word-spacing:13.628837px;}
.ws67{word-spacing:13.688612px;}
.ws59{word-spacing:13.748388px;}
.ws2e{word-spacing:13.808164px;}
.ws99{word-spacing:13.987490px;}
.ws85{word-spacing:14.107042px;}
.ws8b{word-spacing:14.286368px;}
.ws12{word-spacing:14.346144px;}
.ws74{word-spacing:14.405920px;}
.ws90{word-spacing:14.471770px;}
.ws18{word-spacing:14.525471px;}
.ws9d{word-spacing:14.645022px;}
.ws72{word-spacing:14.704798px;}
.wsa6{word-spacing:14.740762px;}
.wsc9{word-spacing:14.883592px;}
.ws15{word-spacing:14.884124px;}
.ws55{word-spacing:14.943900px;}
.wsc1{word-spacing:15.063451px;}
.ws73{word-spacing:15.123227px;}
.wsa4{word-spacing:15.183002px;}
.wsb2{word-spacing:15.242778px;}
.ws8c{word-spacing:15.302554px;}
.wsa9{word-spacing:15.362329px;}
.ws5c{word-spacing:15.422105px;}
.ws7b{word-spacing:15.481880px;}
.wsd{word-spacing:15.601432px;}
.ws95{word-spacing:15.661207px;}
.ws16{word-spacing:15.720983px;}
.wsa7{word-spacing:15.900310px;}
.ws3a{word-spacing:15.960085px;}
.ws58{word-spacing:16.079636px;}
.ws19{word-spacing:16.139412px;}
.ws77{word-spacing:16.199188px;}
.ws2c{word-spacing:16.378514px;}
.wsbf{word-spacing:16.438290px;}
.wsca{word-spacing:16.498066px;}
.ws26{word-spacing:16.557841px;}
.ws2b{word-spacing:16.617617px;}
.ws29{word-spacing:16.677392px;}
.ws9f{word-spacing:16.856719px;}
.ws8d{word-spacing:16.916495px;}
.ws7f{word-spacing:16.976270px;}
.wsa5{word-spacing:17.095822px;}
.ws56{word-spacing:17.155597px;}
.ws22{word-spacing:17.275148px;}
.ws36{word-spacing:17.454475px;}
.wsc6{word-spacing:17.473465px;}
.ws76{word-spacing:17.514251px;}
.ws6f{word-spacing:17.633802px;}
.ws63{word-spacing:17.693578px;}
.ws54{word-spacing:17.753353px;}
.wsa{word-spacing:17.861069px;}
.ws7{word-spacing:17.871796px;}
.ws6{word-spacing:17.872031px;}
.ws4{word-spacing:17.875879px;}
.ws5{word-spacing:17.877912px;}
.ws8{word-spacing:17.880226px;}
.wsa8{word-spacing:17.932680px;}
.ws80{word-spacing:17.992456px;}
.ws5d{word-spacing:18.112007px;}
.ws24{word-spacing:18.171782px;}
.wsc7{word-spacing:18.184158px;}
.wsc8{word-spacing:18.231558px;}
.ws89{word-spacing:18.291334px;}
.wsb6{word-spacing:18.351109px;}
.ws5f{word-spacing:18.530436px;}
.wsb5{word-spacing:18.649987px;}
.ws9b{word-spacing:18.668045px;}
.ws39{word-spacing:18.709763px;}
.ws1e{word-spacing:18.829314px;}
.ws1d{word-spacing:18.948865px;}
.wsc{word-spacing:19.008641px;}
.ws66{word-spacing:19.068416px;}
.ws28{word-spacing:19.187968px;}
.wsb7{word-spacing:19.247743px;}
.ws9e{word-spacing:19.307519px;}
.ws6c{word-spacing:19.367294px;}
.ws11{word-spacing:19.427070px;}
.ws35{word-spacing:19.486846px;}
.ws7c{word-spacing:19.546621px;}
.ws8a{word-spacing:19.606397px;}
.ws8e{word-spacing:19.785724px;}
.ws25{word-spacing:19.845499px;}
.ws7d{word-spacing:19.905275px;}
.wsc2{word-spacing:19.965050px;}
.ws3b{word-spacing:20.204153px;}
.ws68{word-spacing:20.263928px;}
.ws41{word-spacing:20.443255px;}
.ws38{word-spacing:20.682358px;}
.wsf{word-spacing:20.742133px;}
.ws37{word-spacing:20.801909px;}
.ws78{word-spacing:20.861684px;}
.ws97{word-spacing:20.981236px;}
.ws92{word-spacing:21.100787px;}
.wsab{word-spacing:21.160562px;}
.ws1c{word-spacing:21.280114px;}
.ws53{word-spacing:21.519216px;}
.ws91{word-spacing:21.638767px;}
.ws27{word-spacing:21.698543px;}
.wsa3{word-spacing:21.758318px;}
.ws61{word-spacing:21.818094px;}
.ws8f{word-spacing:21.877870px;}
.ws51{word-spacing:22.236523px;}
.ws82{word-spacing:22.296299px;}
.wsaf{word-spacing:22.356074px;}
.ws5b{word-spacing:22.475626px;}
.ws98{word-spacing:22.595177px;}
.ws6b{word-spacing:22.654952px;}
.ws4e{word-spacing:22.774504px;}
.wsb8{word-spacing:22.894055px;}
.ws94{word-spacing:22.953830px;}
.ws34{word-spacing:23.073382px;}
.ws43{word-spacing:23.133157px;}
.wsa2{word-spacing:23.192933px;}
.wsb9{word-spacing:23.252708px;}
.ws10{word-spacing:23.372260px;}
.ws96{word-spacing:23.491811px;}
.wsc4{word-spacing:23.551586px;}
.wsae{word-spacing:23.970016px;}
.ws14{word-spacing:24.029791px;}
.ws30{word-spacing:24.149342px;}
.ws5a{word-spacing:24.209118px;}
.ws52{word-spacing:24.268894px;}
.ws3f{word-spacing:24.388445px;}
.wsc3{word-spacing:24.507996px;}
.wsac{word-spacing:24.687323px;}
.ws1a{word-spacing:24.747098px;}
.ws2a{word-spacing:24.986201px;}
.wsb0{word-spacing:25.105752px;}
.wsba{word-spacing:25.165528px;}
.ws6d{word-spacing:25.285079px;}
.ws1b{word-spacing:25.464406px;}
.ws9c{word-spacing:25.524181px;}
.ws6e{word-spacing:25.643732px;}
.ws31{word-spacing:25.882835px;}
.wsc0{word-spacing:26.241488px;}
.ws70{word-spacing:26.301264px;}
.ws93{word-spacing:26.361040px;}
.ws32{word-spacing:26.628550px;}
.ws33{word-spacing:26.659918px;}
.wsbd{word-spacing:26.838824px;}
.wsbc{word-spacing:26.847128px;}
.ws69{word-spacing:27.616327px;}
.ws50{word-spacing:27.735878px;}
.ws5e{word-spacing:27.855430px;}
.ws3d{word-spacing:27.974981px;}
.wsbb{word-spacing:28.214083px;}
.ws3e{word-spacing:28.333634px;}
.ws40{word-spacing:28.453186px;}
.ws4c{word-spacing:28.512961px;}
.wscb{word-spacing:29.529146px;}
.wsb1{word-spacing:31.561517px;}
.ws17{word-spacing:59.715824px;}
.ws47{word-spacing:97.974672px;}
.ws4b{word-spacing:166.407802px;}
.ws48{word-spacing:179.855002px;}
.ws49{word-spacing:387.778003px;}
.ws4a{word-spacing:413.171693px;}
._6{margin-left:-6.515540px;}
._3{margin-left:-4.648863px;}
._2{margin-left:-3.386891px;}
._0{margin-left:-1.936742px;}
._4{width:1.733492px;}
._b{width:3.574607px;}
._7{width:6.505495px;}
._5{width:9.444545px;}
._c{width:10.460730px;}
._26{width:12.253998px;}
._27{width:13.748388px;}
._1{width:14.794560px;}
._a{width:16.876158px;}
._29{width:18.079760px;}
._28{width:19.546470px;}
._9{width:21.758318px;}
._2c{width:24.555842px;}
._25{width:28.815445px;}
._2b{width:29.911910px;}
._24{width:59.775600px;}
._2a{width:69.642202px;}
._19{width:166.461600px;}
._10{width:179.908800px;}
._1a{width:215.986906px;}
._1d{width:246.178627px;}
._17{width:262.897910px;}
._1b{width:278.284253px;}
._e{width:294.877670px;}
._21{width:295.970775px;}
._1f{width:299.523877px;}
._23{width:303.743203px;}
._d{width:310.868909px;}
._20{width:321.364828px;}
._1c{width:324.324940px;}
._12{width:341.820163px;}
._18{width:395.660418px;}
._1e{width:401.267395px;}
._16{width:409.322804px;}
._14{width:422.787955px;}
._11{width:449.685955px;}
._15{width:486.374056px;}
._13{width:505.098307px;}
._8{width:601.412314px;}
._22{width:627.973853px;}
._f{width:633.946675px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:37.060800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:47.820600px;}
.fs8{font-size:52.602600px;}
.fs5{font-size:53.798400px;}
.fs7{font-size:57.384600px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:96.870000px;}
.y4{bottom:97.125005px;}
.y163{bottom:98.356500px;}
.ya8{bottom:111.799500px;}
.y3f{bottom:115.407000px;}
.y162{bottom:116.289000px;}
.y145{bottom:124.261500px;}
.ya7{bottom:129.732000px;}
.y161{bottom:134.221500px;}
.y20{bottom:139.264499px;}
.y3e{bottom:141.555000px;}
.y144{bottom:142.194000px;}
.ya6{bottom:147.664500px;}
.y160{bottom:152.155500px;}
.yf2{bottom:154.441500px;}
.y3d{bottom:159.487500px;}
.y143{bottom:160.128000px;}
.yb4{bottom:161.914500px;}
.ya5{bottom:165.597000px;}
.y11f{bottom:166.461000px;}
.y15f{bottom:170.088000px;}
.yf1{bottom:172.374000px;}
.y3c{bottom:177.420000px;}
.y142{bottom:178.060500px;}
.yb3{bottom:179.848500px;}
.ya4{bottom:183.529500px;}
.yd6{bottom:184.282500px;}
.y11e{bottom:184.395000px;}
.y15e{bottom:188.020500px;}
.y66{bottom:192.273000px;}
.y3b{bottom:195.352500px;}
.y141{bottom:195.993000px;}
.y17{bottom:196.933500px;}
.yb2{bottom:199.506000px;}
.yf0{bottom:201.414000px;}
.ya3{bottom:201.463500px;}
.y11d{bottom:202.327500px;}
.y15d{bottom:205.953000px;}
.yd5{bottom:208.063500px;}
.y104{bottom:208.807500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y65{bottom:210.205500px;}
.y3a{bottom:213.286500px;}
.y140{bottom:213.925500px;}
.yb1{bottom:219.165000px;}
.ya2{bottom:219.396000px;}
.yef{bottom:219.631500px;}
.y11c{bottom:220.260000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y15c{bottom:223.885500px;}
.yd4{bottom:224.502000px;}
.y103{bottom:226.740000px;}
.y64{bottom:228.138000px;}
.y39{bottom:231.219000px;}
.y13f{bottom:231.858000px;}
.y149{bottom:232.852500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.yee{bottom:236.070000px;}
.yb0{bottom:237.097500px;}
.ya1{bottom:237.328500px;}
.y11b{bottom:238.192500px;}
.y15b{bottom:241.818000px;}
.yd3{bottom:244.089000px;}
.y63{bottom:246.070500px;}
.y38{bottom:249.151500px;}
.y13e{bottom:249.792000px;}
.y148{bottom:250.785000px;}
.yed{bottom:254.286000px;}
.ya0{bottom:255.261000px;}
.y102{bottom:255.780000px;}
.y11a{bottom:256.125000px;}
.yaf{bottom:256.756500px;}
.y15a{bottom:259.752000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y62{bottom:264.003000px;}
.yd2{bottom:267.018000px;}
.y37{bottom:267.084000px;}
.y13d{bottom:267.724500px;}
.y147{bottom:268.717500px;}
.yec{bottom:270.724500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y9f{bottom:273.193500px;}
.y101{bottom:273.997500px;}
.y119{bottom:274.057500px;}
.y159{bottom:277.684500px;}
.y61{bottom:281.935500px;}
.yae{bottom:282.160500px;}
.y36{bottom:285.016500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yd1{bottom:285.235500px;}
.y13c{bottom:285.657000px;}
.yeb{bottom:288.940500px;}
.y100{bottom:290.436000px;}
.y146{bottom:290.902500px;}
.y9e{bottom:291.126000px;}
.y158{bottom:295.617000px;}
.y118{bottom:296.242500px;}
.y60{bottom:299.869500px;}
.yad{bottom:300.093000px;}
.yd0{bottom:301.534500px;}
.y13b{bottom:303.589500px;}
.yea{bottom:307.158000px;}
.yff{bottom:308.652000px;}
.y9d{bottom:309.060000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y35{bottom:312.412500px;}
.y157{bottom:313.549500px;}
.y5f{bottom:317.802000px;}
.yac{bottom:318.025500px;}
.ycf{bottom:321.261000px;}
.y13a{bottom:321.522000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yfe{bottom:325.090500px;}
.ye9{bottom:325.374000px;}
.y9c{bottom:326.992500px;}
.y156{bottom:331.482000px;}
.y117{bottom:334.350000px;}
.y5e{bottom:335.734500px;}
.yab{bottom:335.959500px;}
.y139{bottom:339.454500px;}
.yce{bottom:343.260000px;}
.yfd{bottom:343.308000px;}
.ye8{bottom:343.591500px;}
.y9b{bottom:344.925000px;}
.ye{bottom:348.133500px;}
.y155{bottom:349.416000px;}
.y116{bottom:352.282500px;}
.y5d{bottom:353.667000px;}
.yaa{bottom:353.892000px;}
.y138{bottom:357.388500px;}
.yfc{bottom:361.524000px;}
.y9a{bottom:362.857500px;}
.ye7{bottom:363.178500px;}
.y34{bottom:365.334000px;}
.y154{bottom:367.348500px;}
.y5c{bottom:371.599500px;}
.ycd{bottom:376.884000px;}
.yfb{bottom:377.962500px;}
.ya9{bottom:380.566500px;}
.y99{bottom:380.790000px;}
.y115{bottom:381.309000px;}
.y33{bottom:383.266500px;}
.y137{bottom:384.063000px;}
.y153{bottom:385.281000px;}
.yd{bottom:386.785499px;}
.y7f{bottom:388.371000px;}
.ye6{bottom:388.884000px;}
.y5b{bottom:389.532000px;}
.yfa{bottom:397.549500px;}
.y98{bottom:398.724000px;}
.y114{bottom:399.526500px;}
.y152{bottom:403.213500px;}
.y32{bottom:405.451500px;}
.ycc{bottom:406.771500px;}
.ye5{bottom:407.101500px;}
.y5a{bottom:407.466000px;}
.yc{bottom:408.044999px;}
.y7e{bottom:413.641500px;}
.y113{bottom:415.965000px;}
.y97{bottom:416.656500px;}
.y151{bottom:421.146000px;}
.y136{bottom:422.170500px;}
.yf9{bottom:423.256500px;}
.ycb{bottom:424.704000px;}
.ye4{bottom:425.317500px;}
.y59{bottom:425.398500px;}
.y7d{bottom:430.080000px;}
.y7c{bottom:433.293000px;}
.y112{bottom:434.181000px;}
.y96{bottom:434.589000px;}
.y31{bottom:436.834500px;}
.y150{bottom:439.078500px;}
.y135{bottom:440.103000px;}
.yf8{bottom:441.472500px;}
.y58{bottom:443.331000px;}
.ye3{bottom:443.535000px;}
.yca{bottom:444.363000px;}
.y111{bottom:450.619500px;}
.y95{bottom:452.521500px;}
.y30{bottom:454.767000px;}
.y7b{bottom:455.260500px;}
.y14f{bottom:457.012500px;}
.y134{bottom:458.035500px;}
.yf7{bottom:459.690000px;}
.y57{bottom:461.263500px;}
.ye2{bottom:461.751000px;}
.yc9{bottom:462.295500px;}
.y110{bottom:468.837000px;}
.y94{bottom:470.454000px;}
.y2f{bottom:472.699500px;}
.y14e{bottom:474.945000px;}
.y133{bottom:475.968000px;}
.y7a{bottom:476.631000px;}
.yf6{bottom:477.906000px;}
.ye1{bottom:478.051500px;}
.y56{bottom:479.196000px;}
.yc8{bottom:480.228000px;}
.y10f{bottom:487.053000px;}
.y93{bottom:488.386500px;}
.y2e{bottom:490.632000px;}
.y14d{bottom:492.877500px;}
.y132{bottom:493.900500px;}
.yf5{bottom:495.984000px;}
.y55{bottom:497.130000px;}
.ye0{bottom:497.776500px;}
.y79{bottom:498.001500px;}
.yc7{bottom:499.887000px;}
.yb{bottom:502.864502px;}
.y10e{bottom:505.270500px;}
.y92{bottom:506.320500px;}
.y2d{bottom:508.564500px;}
.y14c{bottom:510.810000px;}
.y78{bottom:513.132000px;}
.y54{bottom:515.062500px;}
.yf4{bottom:515.709000px;}
.yc6{bottom:517.819500px;}
.ydf{bottom:519.777000px;}
.ya{bottom:520.864502px;}
.y91{bottom:524.253000px;}
.y10d{bottom:524.857500px;}
.y131{bottom:525.283500px;}
.y2c{bottom:526.497000px;}
.y14b{bottom:528.742500px;}
.y77{bottom:531.475500px;}
.y53{bottom:532.995000px;}
.yc5{bottom:535.752000px;}
.yde{bottom:537.709500px;}
.y9{bottom:538.864499px;}
.y76{bottom:540.741000px;}
.y90{bottom:542.185500px;}
.y130{bottom:543.216000px;}
.y2b{bottom:544.431000px;}
.y14a{bottom:546.675000px;}
.y10c{bottom:550.563000px;}
.y52{bottom:550.927500px;}
.yc4{bottom:553.684500px;}
.yf3{bottom:555.642000px;}
.y8{bottom:556.864499px;}
.y8f{bottom:560.118000px;}
.y75{bottom:562.110000px;}
.y2a{bottom:562.363500px;}
.ydd{bottom:564.609000px;}
.y10b{bottom:568.780500px;}
.y51{bottom:568.860000px;}
.yc3{bottom:571.618500px;}
.y12f{bottom:572.256000px;}
.y8e{bottom:578.050500px;}
.y29{bottom:580.296000px;}
.ydc{bottom:582.541500px;}
.y74{bottom:583.480500px;}
.y50{bottom:586.792500px;}
.y10a{bottom:586.996500px;}
.y12e{bottom:588.694500px;}
.yc2{bottom:591.276000px;}
.y8d{bottom:595.983000px;}
.y28{bottom:598.228500px;}
.ydb{bottom:600.474000px;}
.y109{bottom:603.435000px;}
.y4f{bottom:604.726500px;}
.y73{bottom:605.448000px;}
.y12d{bottom:606.912000px;}
.yc1{bottom:609.208500px;}
.y8c{bottom:613.917000px;}
.y27{bottom:616.161000px;}
.yda{bottom:618.406500px;}
.y108{bottom:621.513000px;}
.y4e{bottom:622.659000px;}
.y12c{bottom:625.128000px;}
.y72{bottom:626.818500px;}
.yc0{bottom:628.867500px;}
.y8b{bottom:631.849500px;}
.y26{bottom:634.095000px;}
.yd9{bottom:636.339000px;}
.y4d{bottom:640.591500px;}
.y107{bottom:641.239500px;}
.y71{bottom:642.135000px;}
.y12b{bottom:643.345500px;}
.y7{bottom:645.510000px;}
.ybf{bottom:646.800000px;}
.y8a{bottom:649.782000px;}
.yd8{bottom:654.271500px;}
.y25{bottom:656.278500px;}
.y70{bottom:657.267000px;}
.y4c{bottom:658.524000px;}
.y12a{bottom:661.561500px;}
.y106{bottom:663.238500px;}
.y6{bottom:666.771000px;}
.y89{bottom:667.714500px;}
.ybe{bottom:672.205500px;}
.y6f{bottom:675.610500px;}
.y4b{bottom:676.456500px;}
.y129{bottom:679.779000px;}
.y105{bottom:681.171000px;}
.y6e{bottom:684.876000px;}
.y88{bottom:685.647000px;}
.ybd{bottom:690.138000px;}
.y4a{bottom:694.389000px;}
.y128{bottom:699.366000px;}
.y24{bottom:700.989000px;}
.y87{bottom:703.579500px;}
.y6d{bottom:706.245000px;}
.ybc{bottom:708.070500px;}
.y49{bottom:712.323000px;}
.y86{bottom:721.513500px;}
.y127{bottom:725.071500px;}
.ybb{bottom:726.003000px;}
.y5{bottom:726.298500px;}
.y6c{bottom:728.212500px;}
.y48{bottom:730.255500px;}
.y85{bottom:739.446000px;}
.y126{bottom:743.289000px;}
.yba{bottom:743.935500px;}
.y23{bottom:744.774000px;}
.y47{bottom:748.188000px;}
.y3{bottom:752.599495px;}
.y84{bottom:757.378500px;}
.y125{bottom:761.505000px;}
.y6b{bottom:761.688000px;}
.yb9{bottom:761.868000px;}
.yd7{bottom:761.869500px;}
.y46{bottom:766.120500px;}
.y6a{bottom:770.953500px;}
.y83{bottom:775.311000px;}
.y124{bottom:779.722500px;}
.yb8{bottom:779.802000px;}
.y45{bottom:784.053000px;}
.y69{bottom:792.322500px;}
.y82{bottom:793.243500px;}
.y123{bottom:796.021500px;}
.yb7{bottom:797.734500px;}
.y44{bottom:801.985500px;}
.y81{bottom:811.177500px;}
.yb6{bottom:815.667000px;}
.y122{bottom:815.748000px;}
.y43{bottom:819.919500px;}
.y68{bottom:823.369500px;}
.y80{bottom:829.110000px;}
.y67{bottom:832.633500px;}
.yb5{bottom:833.599500px;}
.y121{bottom:837.747000px;}
.y42{bottom:837.852000px;}
.y120{bottom:855.679500px;}
.y41{bottom:855.784500px;}
.y2{bottom:879.369000px;}
.y22{bottom:888.306000px;}
.y21{bottom:904.744500px;}
.y1{bottom:966.726000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h11{height:32.835869px;}
.h14{height:38.358259px;}
.h16{height:40.795382px;}
.h12{height:42.369052px;}
.hf{height:42.620003px;}
.h7{height:45.960000px;}
.hc{height:46.966003px;}
.h15{height:47.665382px;}
.h3{height:48.195000px;}
.h18{height:48.217382px;}
.h17{height:48.223382px;}
.h6{height:48.258000px;}
.hd{height:51.144346px;}
.h13{height:52.184099px;}
.h10{height:52.961182px;}
.h2{height:55.152000px;}
.he{height:72.639904px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.hb{height:973.500000px;}
.ha{height:973.701000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:688.500000px;}
.w3{width:688.819500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.039500px;}
.x18{left:91.615500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:114.927000px;}
.x11{left:117.520500px;}
.x16{left:129.871500px;}
.x12{left:131.911500px;}
.x7{left:139.554000px;}
.xf{left:145.273500px;}
.xd{left:149.571000px;}
.xb{left:150.802500px;}
.x1b{left:152.976000px;}
.x17{left:154.468500px;}
.xe{left:155.919000px;}
.x1d{left:157.983000px;}
.x1a{left:159.475500px;}
.x1e{left:163.215000px;}
.x20{left:168.447000px;}
.x1c{left:172.179000px;}
.x19{left:173.673000px;}
.x1f{left:177.411000px;}
.x21{left:182.643000px;}
.x4{left:203.484001px;}
.x13{left:224.646000px;}
.x14{left:258.756000px;}
.x8{left:282.864000px;}
.x9{left:297.961500px;}
.xc{left:302.022000px;}
.x10{left:353.724000px;}
.x3{left:454.959000px;}
.xa{left:539.485500px;}
.x6{left:596.361000px;}
@media print{
.v4{vertical-align:-43.040000pt;}
.v3{vertical-align:-32.282667pt;}
.v2{vertical-align:-15.429333pt;}
.v5{vertical-align:-6.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001843pt;}
.ls2{letter-spacing:0.004702pt;}
.ls3{letter-spacing:9.741867pt;}
.ls4{letter-spacing:26.569067pt;}
.ws3{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.051009pt;}
.ws46{word-spacing:-0.047821pt;}
.ws21{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:7.056195pt;}
.wsaa{word-spacing:8.767088pt;}
.ws45{word-spacing:8.820222pt;}
.ws79{word-spacing:8.873356pt;}
.ws65{word-spacing:9.032757pt;}
.wsb4{word-spacing:9.192159pt;}
.wsbe{word-spacing:9.245293pt;}
.ws86{word-spacing:9.351561pt;}
.wsa1{word-spacing:9.404694pt;}
.ws9a{word-spacing:9.723498pt;}
.ws88{word-spacing:9.936033pt;}
.ws4f{word-spacing:9.989167pt;}
.wsb3{word-spacing:10.095435pt;}
.ws57{word-spacing:10.361104pt;}
.wsc5{word-spacing:10.424820pt;}
.ws7e{word-spacing:10.467372pt;}
.ws1f{word-spacing:10.520506pt;}
.ws75{word-spacing:10.573639pt;}
.ws60{word-spacing:10.626773pt;}
.ws87{word-spacing:10.733041pt;}
.wsad{word-spacing:10.786175pt;}
.wsa0{word-spacing:10.807501pt;}
.ws3c{word-spacing:10.998710pt;}
.ws81{word-spacing:11.051844pt;}
.ws42{word-spacing:11.104978pt;}
.ws2f{word-spacing:11.158112pt;}
.ws1{word-spacing:11.285709pt;}
.wse{word-spacing:11.317514pt;}
.ws2d{word-spacing:11.423781pt;}
.ws7a{word-spacing:11.476915pt;}
.ws44{word-spacing:11.530049pt;}
.ws6a{word-spacing:11.636317pt;}
.ws71{word-spacing:11.689451pt;}
.ws64{word-spacing:11.742585pt;}
.ws84{word-spacing:11.763917pt;}
.ws4d{word-spacing:11.795718pt;}
.ws23{word-spacing:11.848852pt;}
.ws13{word-spacing:11.901986pt;}
.ws2{word-spacing:11.907379pt;}
.ws83{word-spacing:12.008254pt;}
.ws62{word-spacing:12.114522pt;}
.ws67{word-spacing:12.167655pt;}
.ws59{word-spacing:12.220789pt;}
.ws2e{word-spacing:12.273923pt;}
.ws99{word-spacing:12.433325pt;}
.ws85{word-spacing:12.539593pt;}
.ws8b{word-spacing:12.698994pt;}
.ws12{word-spacing:12.752128pt;}
.ws74{word-spacing:12.805262pt;}
.ws90{word-spacing:12.863795pt;}
.ws18{word-spacing:12.911530pt;}
.ws9d{word-spacing:13.017797pt;}
.ws72{word-spacing:13.070931pt;}
.wsa6{word-spacing:13.102899pt;}
.wsc9{word-spacing:13.229859pt;}
.ws15{word-spacing:13.230333pt;}
.ws55{word-spacing:13.283467pt;}
.wsc1{word-spacing:13.389734pt;}
.ws73{word-spacing:13.442868pt;}
.wsa4{word-spacing:13.496002pt;}
.wsb2{word-spacing:13.549136pt;}
.ws8c{word-spacing:13.602270pt;}
.wsa9{word-spacing:13.655404pt;}
.ws5c{word-spacing:13.708538pt;}
.ws7b{word-spacing:13.761671pt;}
.wsd{word-spacing:13.867939pt;}
.ws95{word-spacing:13.921073pt;}
.ws16{word-spacing:13.974207pt;}
.wsa7{word-spacing:14.133609pt;}
.ws3a{word-spacing:14.186742pt;}
.ws58{word-spacing:14.293010pt;}
.ws19{word-spacing:14.346144pt;}
.ws77{word-spacing:14.399278pt;}
.ws2c{word-spacing:14.558679pt;}
.wsbf{word-spacing:14.611813pt;}
.wsca{word-spacing:14.664947pt;}
.ws26{word-spacing:14.718081pt;}
.ws2b{word-spacing:14.771215pt;}
.ws29{word-spacing:14.824349pt;}
.ws9f{word-spacing:14.983750pt;}
.ws8d{word-spacing:15.036884pt;}
.ws7f{word-spacing:15.090018pt;}
.wsa5{word-spacing:15.196286pt;}
.ws56{word-spacing:15.249420pt;}
.ws22{word-spacing:15.355687pt;}
.ws36{word-spacing:15.515089pt;}
.wsc6{word-spacing:15.531969pt;}
.ws76{word-spacing:15.568223pt;}
.ws6f{word-spacing:15.674491pt;}
.ws63{word-spacing:15.727625pt;}
.ws54{word-spacing:15.780758pt;}
.wsa{word-spacing:15.876506pt;}
.ws7{word-spacing:15.886041pt;}
.ws6{word-spacing:15.886250pt;}
.ws4{word-spacing:15.889670pt;}
.ws5{word-spacing:15.891477pt;}
.ws8{word-spacing:15.893534pt;}
.wsa8{word-spacing:15.940160pt;}
.ws80{word-spacing:15.993294pt;}
.ws5d{word-spacing:16.099562pt;}
.ws24{word-spacing:16.152695pt;}
.wsc7{word-spacing:16.163696pt;}
.wsc8{word-spacing:16.205829pt;}
.ws89{word-spacing:16.258963pt;}
.wsb6{word-spacing:16.312097pt;}
.ws5f{word-spacing:16.471499pt;}
.wsb5{word-spacing:16.577766pt;}
.ws9b{word-spacing:16.593818pt;}
.ws39{word-spacing:16.630900pt;}
.ws1e{word-spacing:16.737168pt;}
.ws1d{word-spacing:16.843436pt;}
.wsc{word-spacing:16.896570pt;}
.ws66{word-spacing:16.949703pt;}
.ws28{word-spacing:17.055971pt;}
.wsb7{word-spacing:17.109105pt;}
.ws9e{word-spacing:17.162239pt;}
.ws6c{word-spacing:17.215373pt;}
.ws11{word-spacing:17.268507pt;}
.ws35{word-spacing:17.321641pt;}
.ws7c{word-spacing:17.374774pt;}
.ws8a{word-spacing:17.427908pt;}
.ws8e{word-spacing:17.587310pt;}
.ws25{word-spacing:17.640444pt;}
.ws7d{word-spacing:17.693578pt;}
.wsc2{word-spacing:17.746711pt;}
.ws3b{word-spacing:17.959247pt;}
.ws68{word-spacing:18.012381pt;}
.ws41{word-spacing:18.171782pt;}
.ws38{word-spacing:18.384318pt;}
.wsf{word-spacing:18.437452pt;}
.ws37{word-spacing:18.490586pt;}
.ws78{word-spacing:18.543719pt;}
.ws97{word-spacing:18.649987pt;}
.ws92{word-spacing:18.756255pt;}
.wsab{word-spacing:18.809389pt;}
.ws1c{word-spacing:18.915657pt;}
.ws53{word-spacing:19.128192pt;}
.ws91{word-spacing:19.234460pt;}
.ws27{word-spacing:19.287594pt;}
.wsa3{word-spacing:19.340727pt;}
.ws61{word-spacing:19.393861pt;}
.ws8f{word-spacing:19.446995pt;}
.ws51{word-spacing:19.765798pt;}
.ws82{word-spacing:19.818932pt;}
.wsaf{word-spacing:19.872066pt;}
.ws5b{word-spacing:19.978334pt;}
.ws98{word-spacing:20.084602pt;}
.ws6b{word-spacing:20.137735pt;}
.ws4e{word-spacing:20.244003pt;}
.wsb8{word-spacing:20.350271pt;}
.ws94{word-spacing:20.403405pt;}
.ws34{word-spacing:20.509673pt;}
.ws43{word-spacing:20.562806pt;}
.wsa2{word-spacing:20.615940pt;}
.wsb9{word-spacing:20.669074pt;}
.ws10{word-spacing:20.775342pt;}
.ws96{word-spacing:20.881610pt;}
.wsc4{word-spacing:20.934743pt;}
.wsae{word-spacing:21.306681pt;}
.ws14{word-spacing:21.359814pt;}
.ws30{word-spacing:21.466082pt;}
.ws5a{word-spacing:21.519216pt;}
.ws52{word-spacing:21.572350pt;}
.ws3f{word-spacing:21.678618pt;}
.wsc3{word-spacing:21.784885pt;}
.wsac{word-spacing:21.944287pt;}
.ws1a{word-spacing:21.997421pt;}
.ws2a{word-spacing:22.209956pt;}
.wsb0{word-spacing:22.316224pt;}
.wsba{word-spacing:22.369358pt;}
.ws6d{word-spacing:22.475626pt;}
.ws1b{word-spacing:22.635027pt;}
.ws9c{word-spacing:22.688161pt;}
.ws6e{word-spacing:22.794429pt;}
.ws31{word-spacing:23.006964pt;}
.wsc0{word-spacing:23.325767pt;}
.ws70{word-spacing:23.378901pt;}
.ws93{word-spacing:23.432035pt;}
.ws32{word-spacing:23.669822pt;}
.ws33{word-spacing:23.697705pt;}
.wsbd{word-spacing:23.856733pt;}
.wsbc{word-spacing:23.864114pt;}
.ws69{word-spacing:24.547846pt;}
.ws50{word-spacing:24.654114pt;}
.ws5e{word-spacing:24.760382pt;}
.ws3d{word-spacing:24.866650pt;}
.wsbb{word-spacing:25.079185pt;}
.ws3e{word-spacing:25.185453pt;}
.ws40{word-spacing:25.291721pt;}
.ws4c{word-spacing:25.344854pt;}
.wscb{word-spacing:26.248130pt;}
.wsb1{word-spacing:28.054682pt;}
.ws17{word-spacing:53.080733pt;}
.ws47{word-spacing:87.088597pt;}
.ws4b{word-spacing:147.918046pt;}
.ws48{word-spacing:159.871113pt;}
.ws49{word-spacing:344.691558pt;}
.ws4a{word-spacing:367.263727pt;}
._6{margin-left:-5.791591pt;}
._3{margin-left:-4.132323pt;}
._2{margin-left:-3.010570pt;}
._0{margin-left:-1.721549pt;}
._4{width:1.540882pt;}
._b{width:3.177428pt;}
._7{width:5.782662pt;}
._5{width:8.395151pt;}
._c{width:9.298427pt;}
._26{width:10.892443pt;}
._27{width:12.220789pt;}
._1{width:13.150720pt;}
._a{width:15.001029pt;}
._29{width:16.070898pt;}
._28{width:17.374640pt;}
._9{width:19.340727pt;}
._2c{width:21.827415pt;}
._25{width:25.613729pt;}
._2b{width:26.588365pt;}
._24{width:53.133867pt;}
._2a{width:61.904179pt;}
._19{width:147.965867pt;}
._10{width:159.918933pt;}
._1a{width:191.988361pt;}
._1d{width:218.825446pt;}
._17{width:233.687031pt;}
._1b{width:247.363780pt;}
._e{width:262.113485pt;}
._21{width:263.085133pt;}
._1f{width:266.243446pt;}
._23{width:269.993958pt;}
._d{width:276.327919pt;}
._20{width:285.657625pt;}
._1c{width:288.288835pt;}
._12{width:303.840145pt;}
._18{width:351.698149pt;}
._1e{width:356.682129pt;}
._16{width:363.842492pt;}
._14{width:375.811516pt;}
._11{width:399.720849pt;}
._15{width:432.332494pt;}
._13{width:448.976273pt;}
._8{width:534.588723pt;}
._22{width:558.198980pt;}
._f{width:563.508156pt;}
.fsa{font-size:32.942933pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.507200pt;}
.fs8{font-size:46.757867pt;}
.fs5{font-size:47.820800pt;}
.fs7{font-size:51.008533pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:86.106667pt;}
.y4{bottom:86.333337pt;}
.y163{bottom:87.428000pt;}
.ya8{bottom:99.377333pt;}
.y3f{bottom:102.584000pt;}
.y162{bottom:103.368000pt;}
.y145{bottom:110.454667pt;}
.ya7{bottom:115.317333pt;}
.y161{bottom:119.308000pt;}
.y20{bottom:123.790666pt;}
.y3e{bottom:125.826667pt;}
.y144{bottom:126.394667pt;}
.ya6{bottom:131.257333pt;}
.y160{bottom:135.249333pt;}
.yf2{bottom:137.281333pt;}
.y3d{bottom:141.766667pt;}
.y143{bottom:142.336000pt;}
.yb4{bottom:143.924000pt;}
.ya5{bottom:147.197333pt;}
.y11f{bottom:147.965333pt;}
.y15f{bottom:151.189333pt;}
.yf1{bottom:153.221333pt;}
.y3c{bottom:157.706667pt;}
.y142{bottom:158.276000pt;}
.yb3{bottom:159.865333pt;}
.ya4{bottom:163.137333pt;}
.yd6{bottom:163.806667pt;}
.y11e{bottom:163.906667pt;}
.y15e{bottom:167.129333pt;}
.y66{bottom:170.909333pt;}
.y3b{bottom:173.646667pt;}
.y141{bottom:174.216000pt;}
.y17{bottom:175.052000pt;}
.yb2{bottom:177.338667pt;}
.yf0{bottom:179.034667pt;}
.ya3{bottom:179.078667pt;}
.y11d{bottom:179.846667pt;}
.y15d{bottom:183.069333pt;}
.yd5{bottom:184.945333pt;}
.y104{bottom:185.606667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y65{bottom:186.849333pt;}
.y3a{bottom:189.588000pt;}
.y140{bottom:190.156000pt;}
.yb1{bottom:194.813333pt;}
.ya2{bottom:195.018667pt;}
.yef{bottom:195.228000pt;}
.y11c{bottom:195.786667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y15c{bottom:199.009333pt;}
.yd4{bottom:199.557333pt;}
.y103{bottom:201.546667pt;}
.y64{bottom:202.789333pt;}
.y39{bottom:205.528000pt;}
.y13f{bottom:206.096000pt;}
.y149{bottom:206.980000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.yee{bottom:209.840000pt;}
.yb0{bottom:210.753333pt;}
.ya1{bottom:210.958667pt;}
.y11b{bottom:211.726667pt;}
.y15b{bottom:214.949333pt;}
.yd3{bottom:216.968000pt;}
.y63{bottom:218.729333pt;}
.y38{bottom:221.468000pt;}
.y13e{bottom:222.037333pt;}
.y148{bottom:222.920000pt;}
.yed{bottom:226.032000pt;}
.ya0{bottom:226.898667pt;}
.y102{bottom:227.360000pt;}
.y11a{bottom:227.666667pt;}
.yaf{bottom:228.228000pt;}
.y15a{bottom:230.890667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y62{bottom:234.669333pt;}
.yd2{bottom:237.349333pt;}
.y37{bottom:237.408000pt;}
.y13d{bottom:237.977333pt;}
.y147{bottom:238.860000pt;}
.yec{bottom:240.644000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y9f{bottom:242.838667pt;}
.y101{bottom:243.553333pt;}
.y119{bottom:243.606667pt;}
.y159{bottom:246.830667pt;}
.y61{bottom:250.609333pt;}
.yae{bottom:250.809333pt;}
.y36{bottom:253.348000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yd1{bottom:253.542667pt;}
.y13c{bottom:253.917333pt;}
.yeb{bottom:256.836000pt;}
.y100{bottom:258.165333pt;}
.y146{bottom:258.580000pt;}
.y9e{bottom:258.778667pt;}
.y158{bottom:262.770667pt;}
.y118{bottom:263.326667pt;}
.y60{bottom:266.550667pt;}
.yad{bottom:266.749333pt;}
.yd0{bottom:268.030667pt;}
.y13b{bottom:269.857333pt;}
.yea{bottom:273.029333pt;}
.yff{bottom:274.357333pt;}
.y9d{bottom:274.720000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y35{bottom:277.700000pt;}
.y157{bottom:278.710667pt;}
.y5f{bottom:282.490667pt;}
.yac{bottom:282.689333pt;}
.ycf{bottom:285.565333pt;}
.y13a{bottom:285.797333pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yfe{bottom:288.969333pt;}
.ye9{bottom:289.221333pt;}
.y9c{bottom:290.660000pt;}
.y156{bottom:294.650667pt;}
.y117{bottom:297.200000pt;}
.y5e{bottom:298.430667pt;}
.yab{bottom:298.630667pt;}
.y139{bottom:301.737333pt;}
.yce{bottom:305.120000pt;}
.yfd{bottom:305.162667pt;}
.ye8{bottom:305.414667pt;}
.y9b{bottom:306.600000pt;}
.ye{bottom:309.452000pt;}
.y155{bottom:310.592000pt;}
.y116{bottom:313.140000pt;}
.y5d{bottom:314.370667pt;}
.yaa{bottom:314.570667pt;}
.y138{bottom:317.678667pt;}
.yfc{bottom:321.354667pt;}
.y9a{bottom:322.540000pt;}
.ye7{bottom:322.825333pt;}
.y34{bottom:324.741333pt;}
.y154{bottom:326.532000pt;}
.y5c{bottom:330.310667pt;}
.ycd{bottom:335.008000pt;}
.yfb{bottom:335.966667pt;}
.ya9{bottom:338.281333pt;}
.y99{bottom:338.480000pt;}
.y115{bottom:338.941333pt;}
.y33{bottom:340.681333pt;}
.y137{bottom:341.389333pt;}
.y153{bottom:342.472000pt;}
.yd{bottom:343.809333pt;}
.y7f{bottom:345.218667pt;}
.ye6{bottom:345.674667pt;}
.y5b{bottom:346.250667pt;}
.yfa{bottom:353.377333pt;}
.y98{bottom:354.421333pt;}
.y114{bottom:355.134667pt;}
.y152{bottom:358.412000pt;}
.y32{bottom:360.401333pt;}
.ycc{bottom:361.574667pt;}
.ye5{bottom:361.868000pt;}
.y5a{bottom:362.192000pt;}
.yc{bottom:362.706666pt;}
.y7e{bottom:367.681333pt;}
.y113{bottom:369.746667pt;}
.y97{bottom:370.361333pt;}
.y151{bottom:374.352000pt;}
.y136{bottom:375.262667pt;}
.yf9{bottom:376.228000pt;}
.ycb{bottom:377.514667pt;}
.ye4{bottom:378.060000pt;}
.y59{bottom:378.132000pt;}
.y7d{bottom:382.293333pt;}
.y7c{bottom:385.149333pt;}
.y112{bottom:385.938667pt;}
.y96{bottom:386.301333pt;}
.y31{bottom:388.297333pt;}
.y150{bottom:390.292000pt;}
.y135{bottom:391.202667pt;}
.yf8{bottom:392.420000pt;}
.y58{bottom:394.072000pt;}
.ye3{bottom:394.253333pt;}
.yca{bottom:394.989333pt;}
.y111{bottom:400.550667pt;}
.y95{bottom:402.241333pt;}
.y30{bottom:404.237333pt;}
.y7b{bottom:404.676000pt;}
.y14f{bottom:406.233333pt;}
.y134{bottom:407.142667pt;}
.yf7{bottom:408.613333pt;}
.y57{bottom:410.012000pt;}
.ye2{bottom:410.445333pt;}
.yc9{bottom:410.929333pt;}
.y110{bottom:416.744000pt;}
.y94{bottom:418.181333pt;}
.y2f{bottom:420.177333pt;}
.y14e{bottom:422.173333pt;}
.y133{bottom:423.082667pt;}
.y7a{bottom:423.672000pt;}
.yf6{bottom:424.805333pt;}
.ye1{bottom:424.934667pt;}
.y56{bottom:425.952000pt;}
.yc8{bottom:426.869333pt;}
.y10f{bottom:432.936000pt;}
.y93{bottom:434.121333pt;}
.y2e{bottom:436.117333pt;}
.y14d{bottom:438.113333pt;}
.y132{bottom:439.022667pt;}
.yf5{bottom:440.874667pt;}
.y55{bottom:441.893333pt;}
.ye0{bottom:442.468000pt;}
.y79{bottom:442.668000pt;}
.yc7{bottom:444.344000pt;}
.yb{bottom:446.990669pt;}
.y10e{bottom:449.129333pt;}
.y92{bottom:450.062667pt;}
.y2d{bottom:452.057333pt;}
.y14c{bottom:454.053333pt;}
.y78{bottom:456.117333pt;}
.y54{bottom:457.833333pt;}
.yf4{bottom:458.408000pt;}
.yc6{bottom:460.284000pt;}
.ydf{bottom:462.024000pt;}
.ya{bottom:462.990669pt;}
.y91{bottom:466.002667pt;}
.y10d{bottom:466.540000pt;}
.y131{bottom:466.918667pt;}
.y2c{bottom:467.997333pt;}
.y14b{bottom:469.993333pt;}
.y77{bottom:472.422667pt;}
.y53{bottom:473.773333pt;}
.yc5{bottom:476.224000pt;}
.yde{bottom:477.964000pt;}
.y9{bottom:478.990666pt;}
.y76{bottom:480.658667pt;}
.y90{bottom:481.942667pt;}
.y130{bottom:482.858667pt;}
.y2b{bottom:483.938667pt;}
.y14a{bottom:485.933333pt;}
.y10c{bottom:489.389333pt;}
.y52{bottom:489.713333pt;}
.yc4{bottom:492.164000pt;}
.yf3{bottom:493.904000pt;}
.y8{bottom:494.990666pt;}
.y8f{bottom:497.882667pt;}
.y75{bottom:499.653333pt;}
.y2a{bottom:499.878667pt;}
.ydd{bottom:501.874667pt;}
.y10b{bottom:505.582667pt;}
.y51{bottom:505.653333pt;}
.yc3{bottom:508.105333pt;}
.y12f{bottom:508.672000pt;}
.y8e{bottom:513.822667pt;}
.y29{bottom:515.818667pt;}
.ydc{bottom:517.814667pt;}
.y74{bottom:518.649333pt;}
.y50{bottom:521.593333pt;}
.y10a{bottom:521.774667pt;}
.y12e{bottom:523.284000pt;}
.yc2{bottom:525.578667pt;}
.y8d{bottom:529.762667pt;}
.y28{bottom:531.758667pt;}
.ydb{bottom:533.754667pt;}
.y109{bottom:536.386667pt;}
.y4f{bottom:537.534667pt;}
.y73{bottom:538.176000pt;}
.y12d{bottom:539.477333pt;}
.yc1{bottom:541.518667pt;}
.y8c{bottom:545.704000pt;}
.y27{bottom:547.698667pt;}
.yda{bottom:549.694667pt;}
.y108{bottom:552.456000pt;}
.y4e{bottom:553.474667pt;}
.y12c{bottom:555.669333pt;}
.y72{bottom:557.172000pt;}
.yc0{bottom:558.993333pt;}
.y8b{bottom:561.644000pt;}
.y26{bottom:563.640000pt;}
.yd9{bottom:565.634667pt;}
.y4d{bottom:569.414667pt;}
.y107{bottom:569.990667pt;}
.y71{bottom:570.786667pt;}
.y12b{bottom:571.862667pt;}
.y7{bottom:573.786667pt;}
.ybf{bottom:574.933333pt;}
.y8a{bottom:577.584000pt;}
.yd8{bottom:581.574667pt;}
.y25{bottom:583.358667pt;}
.y70{bottom:584.237333pt;}
.y4c{bottom:585.354667pt;}
.y12a{bottom:588.054667pt;}
.y106{bottom:589.545333pt;}
.y6{bottom:592.685334pt;}
.y89{bottom:593.524000pt;}
.ybe{bottom:597.516000pt;}
.y6f{bottom:600.542667pt;}
.y4b{bottom:601.294667pt;}
.y129{bottom:604.248000pt;}
.y105{bottom:605.485333pt;}
.y6e{bottom:608.778667pt;}
.y88{bottom:609.464000pt;}
.ybd{bottom:613.456000pt;}
.y4a{bottom:617.234667pt;}
.y128{bottom:621.658667pt;}
.y24{bottom:623.101333pt;}
.y87{bottom:625.404000pt;}
.y6d{bottom:627.773333pt;}
.ybc{bottom:629.396000pt;}
.y49{bottom:633.176000pt;}
.y86{bottom:641.345333pt;}
.y127{bottom:644.508000pt;}
.ybb{bottom:645.336000pt;}
.y5{bottom:645.598667pt;}
.y6c{bottom:647.300000pt;}
.y48{bottom:649.116000pt;}
.y85{bottom:657.285333pt;}
.y126{bottom:660.701333pt;}
.yba{bottom:661.276000pt;}
.y23{bottom:662.021333pt;}
.y47{bottom:665.056000pt;}
.y3{bottom:668.977329pt;}
.y84{bottom:673.225333pt;}
.y125{bottom:676.893333pt;}
.y6b{bottom:677.056000pt;}
.yb9{bottom:677.216000pt;}
.yd7{bottom:677.217333pt;}
.y46{bottom:680.996000pt;}
.y6a{bottom:685.292000pt;}
.y83{bottom:689.165333pt;}
.y124{bottom:693.086667pt;}
.yb8{bottom:693.157333pt;}
.y45{bottom:696.936000pt;}
.y69{bottom:704.286667pt;}
.y82{bottom:705.105333pt;}
.y123{bottom:707.574667pt;}
.yb7{bottom:709.097333pt;}
.y44{bottom:712.876000pt;}
.y81{bottom:721.046667pt;}
.yb6{bottom:725.037333pt;}
.y122{bottom:725.109333pt;}
.y43{bottom:728.817333pt;}
.y68{bottom:731.884000pt;}
.y80{bottom:736.986667pt;}
.y67{bottom:740.118667pt;}
.yb5{bottom:740.977333pt;}
.y121{bottom:744.664000pt;}
.y42{bottom:744.757333pt;}
.y120{bottom:760.604000pt;}
.y41{bottom:760.697333pt;}
.y2{bottom:781.661334pt;}
.y22{bottom:789.605333pt;}
.y21{bottom:804.217333pt;}
.y1{bottom:859.312000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h11{height:29.187439pt;}
.h14{height:34.096230pt;}
.h16{height:36.262562pt;}
.h12{height:37.661379pt;}
.hf{height:37.884447pt;}
.h7{height:40.853333pt;}
.hc{height:41.747558pt;}
.h15{height:42.369229pt;}
.h3{height:42.840000pt;}
.h18{height:42.859895pt;}
.h17{height:42.865229pt;}
.h6{height:42.896000pt;}
.hd{height:45.461641pt;}
.h13{height:46.385866pt;}
.h10{height:47.076606pt;}
.h2{height:49.024000pt;}
.he{height:64.568803pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.hb{height:865.333333pt;}
.ha{height:865.512000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:612.000000pt;}
.w3{width:612.284000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590667pt;}
.x18{left:81.436000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:102.157333pt;}
.x11{left:104.462667pt;}
.x16{left:115.441333pt;}
.x12{left:117.254667pt;}
.x7{left:124.048000pt;}
.xf{left:129.132000pt;}
.xd{left:132.952000pt;}
.xb{left:134.046667pt;}
.x1b{left:135.978667pt;}
.x17{left:137.305333pt;}
.xe{left:138.594667pt;}
.x1d{left:140.429333pt;}
.x1a{left:141.756000pt;}
.x1e{left:145.080000pt;}
.x20{left:149.730667pt;}
.x1c{left:153.048000pt;}
.x19{left:154.376000pt;}
.x1f{left:157.698667pt;}
.x21{left:162.349333pt;}
.x4{left:180.874667pt;}
.x13{left:199.685333pt;}
.x14{left:230.005333pt;}
.x8{left:251.434667pt;}
.x9{left:264.854667pt;}
.xc{left:268.464000pt;}
.x10{left:314.421333pt;}
.x3{left:404.408000pt;}
.xa{left:479.542667pt;}
.x6{left:530.098667pt;}
}




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