
    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_317dbe59bb5a742cfb6c6638.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_edc90d35cb6b1bd9cc9c46ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_334e3d69602660c7eacc1443.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_b00aa847ed31a390673dac0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_a4c29ada7fe1a4d498089ae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_8627144f691fe1502fa7fc34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_b2009e882beb24fabe1c92d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.453000;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_2315a4226e0480003d4bd2a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688000;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);}
.v1{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.984915px;}
.ls2{letter-spacing:16.617617px;}
.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;}
}
.ws53{word-spacing:-17.932800px;}
.ws71{word-spacing:-4.303872px;}
.wsac{word-spacing:-4.232141px;}
.ws1f{word-spacing:-4.160410px;}
.ws4a{word-spacing:-4.088678px;}
.ws52{word-spacing:-4.016947px;}
.ws2{word-spacing:-3.945216px;}
.ws65{word-spacing:-3.873485px;}
.ws4d{word-spacing:-3.730022px;}
.wsb0{word-spacing:-3.514829px;}
.ws80{word-spacing:-3.371366px;}
.ws31{word-spacing:-3.227904px;}
.ws4b{word-spacing:-2.940979px;}
.ws17{word-spacing:-2.797517px;}
.ws88{word-spacing:-2.510592px;}
.wsad{word-spacing:-2.223667px;}
.ws45{word-spacing:-2.008474px;}
.ws21{word-spacing:-1.362893px;}
.ws8{word-spacing:-1.219430px;}
.ws47{word-spacing:-1.147699px;}
.ws4e{word-spacing:-1.075968px;}
.ws76{word-spacing:-1.004237px;}
.ws62{word-spacing:-0.932506px;}
.ws5a{word-spacing:-0.860774px;}
.ws5f{word-spacing:-0.789043px;}
.wsb4{word-spacing:-0.717312px;}
.ws29{word-spacing:-0.645581px;}
.ws3f{word-spacing:-0.502118px;}
.ws57{word-spacing:-0.358656px;}
.wsc{word-spacing:-0.286925px;}
.ws99{word-spacing:-0.215194px;}
.ws69{word-spacing:-0.143462px;}
.ws90{word-spacing:-0.077708px;}
.ws2e{word-spacing:-0.071731px;}
.ws2a{word-spacing:0.000000px;}
.ws38{word-spacing:0.071731px;}
.wsa6{word-spacing:0.143462px;}
.ws18{word-spacing:0.286925px;}
.ws25{word-spacing:0.502118px;}
.ws60{word-spacing:0.573850px;}
.ws20{word-spacing:0.717312px;}
.ws6c{word-spacing:0.860774px;}
.ws73{word-spacing:0.932506px;}
.ws4{word-spacing:1.004237px;}
.ws37{word-spacing:1.075968px;}
.ws2f{word-spacing:1.291162px;}
.ws39{word-spacing:1.362893px;}
.ws46{word-spacing:1.578086px;}
.ws3e{word-spacing:1.649818px;}
.ws11{word-spacing:1.721549px;}
.wsd{word-spacing:1.793280px;}
.ws3c{word-spacing:1.865011px;}
.ws66{word-spacing:1.936742px;}
.ws1c{word-spacing:2.008474px;}
.ws6b{word-spacing:2.151936px;}
.wsa3{word-spacing:2.223667px;}
.wsb{word-spacing:2.438861px;}
.ws43{word-spacing:2.510592px;}
.ws7{word-spacing:2.654054px;}
.ws22{word-spacing:2.797517px;}
.ws28{word-spacing:2.869248px;}
.ws12{word-spacing:2.940979px;}
.ws6{word-spacing:3.156173px;}
.wsaf{word-spacing:3.227904px;}
.ws63{word-spacing:3.299635px;}
.ws67{word-spacing:3.371366px;}
.ws2d{word-spacing:3.514829px;}
.ws5{word-spacing:3.586560px;}
.ws89{word-spacing:3.873485px;}
.ws27{word-spacing:4.016947px;}
.wsa1{word-spacing:4.088678px;}
.ws54{word-spacing:4.160410px;}
.ws9{word-spacing:4.232141px;}
.ws1d{word-spacing:4.303872px;}
.wsa7{word-spacing:4.447334px;}
.ws6f{word-spacing:4.519066px;}
.ws8e{word-spacing:4.590797px;}
.ws13{word-spacing:4.662528px;}
.ws15{word-spacing:4.734259px;}
.ws9d{word-spacing:4.782048px;}
.wse{word-spacing:4.877722px;}
.ws64{word-spacing:5.021184px;}
.ws32{word-spacing:5.092915px;}
.ws5e{word-spacing:5.164646px;}
.wsb7{word-spacing:5.200477px;}
.wsa9{word-spacing:5.236378px;}
.ws70{word-spacing:5.308109px;}
.ws1a{word-spacing:5.379840px;}
.ws26{word-spacing:5.451571px;}
.wsc5{word-spacing:5.523302px;}
.wsc7{word-spacing:5.595034px;}
.ws3{word-spacing:5.666765px;}
.ws23{word-spacing:5.810227px;}
.ws40{word-spacing:5.953690px;}
.ws1b{word-spacing:6.097152px;}
.ws6e{word-spacing:6.312346px;}
.ws8f{word-spacing:6.384077px;}
.ws3a{word-spacing:6.455808px;}
.ws83{word-spacing:6.527539px;}
.ws42{word-spacing:7.101389px;}
.ws41{word-spacing:7.244851px;}
.wsca{word-spacing:7.292623px;}
.ws68{word-spacing:7.460045px;}
.ws49{word-spacing:7.603507px;}
.ws8a{word-spacing:7.746970px;}
.ws9f{word-spacing:7.890432px;}
.wsf{word-spacing:7.962163px;}
.ws16{word-spacing:8.033894px;}
.ws33{word-spacing:8.320819px;}
.ws75{word-spacing:8.464282px;}
.ws36{word-spacing:8.536013px;}
.wsb3{word-spacing:8.607744px;}
.ws72{word-spacing:8.679475px;}
.ws6a{word-spacing:8.751206px;}
.ws55{word-spacing:8.822938px;}
.ws91{word-spacing:8.930534px;}
.wsb6{word-spacing:8.966400px;}
.wsb5{word-spacing:9.038131px;}
.ws81{word-spacing:9.109862px;}
.ws86{word-spacing:9.181594px;}
.wsb8{word-spacing:9.396787px;}
.ws3d{word-spacing:9.468518px;}
.ws44{word-spacing:9.683712px;}
.ws34{word-spacing:9.970637px;}
.ws3b{word-spacing:10.042368px;}
.ws61{word-spacing:10.759680px;}
.ws30{word-spacing:11.190067px;}
.wsc0{word-spacing:11.548723px;}
.ws9b{word-spacing:11.763917px;}
.ws35{word-spacing:11.907379px;}
.wsa8{word-spacing:12.122573px;}
.ws58{word-spacing:12.194304px;}
.wsb9{word-spacing:12.266035px;}
.wsc6{word-spacing:12.552960px;}
.ws7d{word-spacing:12.911616px;}
.ws9c{word-spacing:13.126810px;}
.ws1{word-spacing:13.987584px;}
.wsb2{word-spacing:14.202778px;}
.ws4c{word-spacing:14.489702px;}
.wsa5{word-spacing:15.063552px;}
.ws51{word-spacing:15.135283px;}
.ws8d{word-spacing:15.207014px;}
.ws7e{word-spacing:15.709133px;}
.ws5b{word-spacing:15.852595px;}
.ws96{word-spacing:16.498066px;}
.wsbb{word-spacing:16.498176px;}
.ws59{word-spacing:16.713370px;}
.ws6d{word-spacing:17.358950px;}
.ws97{word-spacing:17.861069px;}
.ws24{word-spacing:18.363187px;}
.wsa0{word-spacing:18.650112px;}
.ws87{word-spacing:18.937037px;}
.ws84{word-spacing:20.228198px;}
.wsba{word-spacing:20.873779px;}
.ws5c{word-spacing:21.017242px;}
.ws8b{word-spacing:21.878016px;}
.ws7f{word-spacing:21.949747px;}
.ws74{word-spacing:22.021478px;}
.wsa{word-spacing:22.093210px;}
.ws1e{word-spacing:22.164941px;}
.ws14{word-spacing:22.595328px;}
.wsa2{word-spacing:22.667059px;}
.ws19{word-spacing:22.738790px;}
.ws5d{word-spacing:22.882253px;}
.ws0{word-spacing:23.814659px;}
.ws2b{word-spacing:24.173414px;}
.ws85{word-spacing:24.675533px;}
.wsbc{word-spacing:25.249382px;}
.wsc2{word-spacing:25.392845px;}
.ws10{word-spacing:25.751501px;}
.ws8c{word-spacing:25.823232px;}
.wsbd{word-spacing:27.688243px;}
.ws9e{word-spacing:27.903437px;}
.ws4f{word-spacing:27.975168px;}
.ws77{word-spacing:29.266330px;}
.ws78{word-spacing:30.557491px;}
.ws9a{word-spacing:33.570202px;}
.ws82{word-spacing:33.928858px;}
.ws7a{word-spacing:34.502707px;}
.ws2c{word-spacing:35.745864px;}
.wsa4{word-spacing:35.937331px;}
.ws79{word-spacing:38.950042px;}
.wsbe{word-spacing:40.886784px;}
.wsc8{word-spacing:44.545075px;}
.wsb1{word-spacing:56.237261px;}
.wsbf{word-spacing:69.937920px;}
.ws7c{word-spacing:71.444275px;}
.ws7b{word-spacing:74.241792px;}
.wsaa{word-spacing:89.807462px;}
.wsae{word-spacing:93.896141px;}
.ws48{word-spacing:95.962906px;}
.ws94{word-spacing:101.022000px;}
.ws95{word-spacing:109.984800px;}
.wsc9{word-spacing:110.896435px;}
.wsc4{word-spacing:121.727846px;}
.ws93{word-spacing:127.918800px;}
.ws92{word-spacing:160.804800px;}
.wsc1{word-spacing:173.517773px;}
.wsc3{word-spacing:177.534720px;}
.wsab{word-spacing:207.446630px;}
.ws50{word-spacing:214.926826px;}
.ws98{word-spacing:234.561024px;}
.ws56{word-spacing:242.826826px;}
._c{margin-left:-8.918587px;}
._9{margin-left:-6.599270px;}
._4{margin-left:-5.379840px;}
._0{margin-left:-3.825648px;}
._1{margin-left:-1.912824px;}
._5e{width:1.195512px;}
._e{width:13.126810px;}
._13{width:14.848334px;}
._2b{width:16.043870px;}
._12{width:18.004531px;}
._3{width:19.510886px;}
._b{width:21.232411px;}
._d{width:23.169154px;}
._5{width:24.651614px;}
._14{width:25.847126px;}
._8{width:27.903437px;}
._11{width:29.481523px;}
._6{width:30.844416px;}
._20{width:31.848653px;}
._16{width:33.498446px;}
._2{width:35.076557px;}
._a{width:36.822000px;}
._15{width:38.041430px;}
._23{width:39.260861px;}
._f{width:42.584390px;}
._7{width:45.573206px;}
._29{width:49.111954px;}
._17{width:50.642203px;}
._57{width:53.443670px;}
._1f{width:55.950312px;}
._10{width:57.743592px;}
._26{width:61.114982px;}
._25{width:66.638285px;}
._1e{width:74.118874px;}
._27{width:77.804434px;}
._1a{width:92.056474px;}
._2a{width:102.013334px;}
._28{width:107.238144px;}
._2e{width:109.988400px;}
._58{width:114.707280px;}
._30{width:118.951200px;}
._45{width:136.885200px;}
._24{width:140.857536px;}
._5c{width:160.625208px;}
._1c{width:182.000784px;}
._1d{width:189.060931px;}
._55{width:202.410619px;}
._21{width:209.900784px;}
._22{width:267.355478px;}
._5a{width:273.590563px;}
._56{width:279.354302px;}
._5d{width:319.455878px;}
._54{width:336.141494px;}
._19{width:374.992330px;}
._5b{width:489.537878px;}
._59{width:574.575878px;}
._1b{width:667.364573px;}
._48{width:735.311155px;}
._53{width:744.651878px;}
._35{width:1195.574424px;}
._18{width:1248.604579px;}
._40{width:1346.170478px;}
._36{width:1358.727014px;}
._33{width:1449.367733px;}
._41{width:1456.735776px;}
._44{width:1487.616058px;}
._32{width:1511.271782px;}
._4c{width:1515.483629px;}
._49{width:1528.431110px;}
._4f{width:1584.234384px;}
._50{width:1622.112058px;}
._34{width:1635.920314px;}
._4e{width:1637.904869px;}
._43{width:1639.004755px;}
._3f{width:1653.960710px;}
._52{width:1657.041552px;}
._46{width:1661.958739px;}
._37{width:1669.849171px;}
._47{width:1673.842200px;}
._3a{width:1682.840866px;}
._31{width:1685.845229px;}
._51{width:1702.841923px;}
._39{width:1707.755510px;}
._42{width:1709.803450px;}
._3d{width:1716.721910px;}
._4a{width:1718.730384px;}
._3c{width:1725.596261px;}
._2d{width:1736.663184px;}
._2f{width:1745.633184px;}
._4d{width:1754.595984px;}
._2c{width:1759.549037px;}
._38{width:1770.559776px;}
._4b{width:1772.528784px;}
._3e{width:1805.381674px;}
._3b{width:1856.170963px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:77.708400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y2b{bottom:106.299000px;}
.y7c{bottom:114.792000px;}
.y140{bottom:118.258500px;}
.y2a{bottom:127.818000px;}
.y7b{bottom:137.506500px;}
.y13f{bottom:139.777500px;}
.ya9{bottom:142.539000px;}
.y29{bottom:149.338500px;}
.y7a{bottom:159.025500px;}
.yd6{bottom:159.696000px;}
.y13e{bottom:161.895000px;}
.ya8{bottom:165.255000px;}
.y28{bottom:170.857500px;}
.y79{bottom:180.546000px;}
.y13d{bottom:183.414000px;}
.ya7{bottom:186.774000px;}
.y27{bottom:192.376500px;}
.y78{bottom:202.065000px;}
.y13c{bottom:205.531500px;}
.ya6{bottom:208.891500px;}
.yc4{bottom:209.488500px;}
.y26{bottom:213.895500px;}
.y77{bottom:224.182500px;}
.y13b{bottom:227.050500px;}
.yd5{bottom:228.616500px;}
.ya5{bottom:230.410500px;}
.yc3{bottom:231.007500px;}
.y25{bottom:235.414500px;}
.y76{bottom:245.701500px;}
.y13a{bottom:248.569500px;}
.yd4{bottom:250.135500px;}
.ya4{bottom:251.929500px;}
.yc2{bottom:252.526500px;}
.y105{bottom:256.395000px;}
.y51{bottom:256.869000px;}
.y24{bottom:256.935000px;}
.y75{bottom:267.220500px;}
.y139{bottom:270.687000px;}
.yd3{bottom:272.253000px;}
.ya3{bottom:274.047000px;}
.yc1{bottom:274.644000px;}
.y50{bottom:278.389500px;}
.y23{bottom:278.454000px;}
.y74{bottom:288.739500px;}
.y104{bottom:289.098000px;}
.y138{bottom:292.206000px;}
.yd2{bottom:293.772000px;}
.ya2{bottom:295.566000px;}
.yc0{bottom:296.163000px;}
.y4f{bottom:299.908500px;}
.y22{bottom:299.973000px;}
.y103{bottom:304.974000px;}
.y73{bottom:310.857000px;}
.y137{bottom:314.323500px;}
.yd1{bottom:315.889500px;}
.ya1{bottom:317.085000px;}
.ybf{bottom:317.683500px;}
.y102{bottom:320.779500px;}
.y4e{bottom:321.427500px;}
.y21{bottom:321.492000px;}
.y72{bottom:332.376000px;}
.y101{bottom:335.113500px;}
.yd0{bottom:337.408500px;}
.ya0{bottom:338.604000px;}
.ybe{bottom:339.202500px;}
.y4d{bottom:342.946500px;}
.y20{bottom:343.011000px;}
.y100{bottom:347.641500px;}
.y136{bottom:350.308500px;}
.y71{bottom:353.895000px;}
.ycf{bottom:359.526000px;}
.y9f{bottom:360.721500px;}
.yff{bottom:363.519000px;}
.y4c{bottom:364.465500px;}
.y1f{bottom:364.531500px;}
.y135{bottom:368.241000px;}
.y70{bottom:376.012500px;}
.yfe{bottom:377.853000px;}
.yce{bottom:381.045000px;}
.y9e{bottom:382.240500px;}
.y4b{bottom:385.920000px;}
.y1e{bottom:386.050500px;}
.yfd{bottom:390.358500px;}
.y6f{bottom:397.531500px;}
.ycd{bottom:403.162500px;}
.ybd{bottom:403.759500px;}
.y9d{bottom:404.358000px;}
.yfc{bottom:406.141500px;}
.y4a{bottom:407.439000px;}
.y1d{bottom:407.569500px;}
.y134{bottom:412.602000px;}
.y152{bottom:415.885500px;}
.y6e{bottom:419.649000px;}
.yfb{bottom:421.945500px;}
.ycc{bottom:424.681500px;}
.ybc{bottom:425.278500px;}
.y9c{bottom:425.877000px;}
.y49{bottom:428.959500px;}
.y1c{bottom:429.088500px;}
.y151{bottom:433.819500px;}
.y133{bottom:434.122500px;}
.yfa{bottom:437.821500px;}
.y6d{bottom:441.168000px;}
.y114{bottom:445.774500px;}
.ybb{bottom:446.799000px;}
.y9b{bottom:447.396000px;}
.y48{bottom:450.478500px;}
.y1b{bottom:450.607500px;}
.yf9{bottom:452.155500px;}
.y132{bottom:455.641500px;}
.y6c{bottom:463.285500px;}
.yf8{bottom:464.757000px;}
.ycb{bottom:468.318000px;}
.y150{bottom:468.369000px;}
.y9a{bottom:468.915000px;}
.y47{bottom:471.997500px;}
.y1a{bottom:472.128000px;}
.y131{bottom:477.759000px;}
.y113{bottom:480.324000px;}
.yf7{bottom:480.633000px;}
.y6b{bottom:484.804500px;}
.y14f{bottom:489.888000px;}
.yba{bottom:490.435500px;}
.y99{bottom:491.032500px;}
.y46{bottom:493.516500px;}
.y19{bottom:493.647000px;}
.yf6{bottom:496.437000px;}
.y130{bottom:499.278000px;}
.y112{bottom:501.844500px;}
.y6a{bottom:506.323500px;}
.y14e{bottom:511.408500px;}
.yb9{bottom:511.954500px;}
.yf5{bottom:512.242500px;}
.y98{bottom:512.551500px;}
.y45{bottom:514.971000px;}
.y18{bottom:515.166000px;}
.y12f{bottom:520.797000px;}
.y111{bottom:523.960500px;}
.yf4{bottom:526.576500px;}
.y69{bottom:528.441000px;}
.yb8{bottom:533.473500px;}
.y14d{bottom:533.524500px;}
.y97{bottom:534.070500px;}
.y44{bottom:536.490000px;}
.y17{bottom:536.685000px;}
.yf3{bottom:539.104500px;}
.y12e{bottom:542.914500px;}
.y110{bottom:545.479500px;}
.y68{bottom:549.960000px;}
.yf2{bottom:554.910000px;}
.yb7{bottom:554.992500px;}
.y14c{bottom:555.045000px;}
.yca{bottom:555.591000px;}
.y96{bottom:556.188000px;}
.y43{bottom:558.009000px;}
.y16{bottom:558.204000px;}
.y12d{bottom:564.433500px;}
.y10f{bottom:567.597000px;}
.yf1{bottom:570.714000px;}
.y67{bottom:571.479000px;}
.yb6{bottom:576.511500px;}
.y14b{bottom:576.564000px;}
.yc9{bottom:577.110000px;}
.y95{bottom:577.707000px;}
.y42{bottom:579.529500px;}
.y15{bottom:579.723000px;}
.y12c{bottom:585.952500px;}
.yf0{bottom:586.590000px;}
.y10e{bottom:589.116000px;}
.y66{bottom:593.596500px;}
.yb5{bottom:598.629000px;}
.y14a{bottom:598.680000px;}
.y94{bottom:599.226000px;}
.y41{bottom:601.048500px;}
.y14{bottom:601.243500px;}
.yef{bottom:602.395500px;}
.y12b{bottom:608.070000px;}
.y10d{bottom:611.233500px;}
.y65{bottom:615.115500px;}
.yee{bottom:618.177000px;}
.yb4{bottom:620.148000px;}
.y149{bottom:620.200500px;}
.y93{bottom:621.343500px;}
.y40{bottom:622.567500px;}
.y13{bottom:622.762500px;}
.y12a{bottom:629.589000px;}
.y10c{bottom:633.351000px;}
.yed{bottom:633.960000px;}
.y64{bottom:637.233000px;}
.yb3{bottom:641.667000px;}
.y148{bottom:641.719500px;}
.yc8{bottom:642.265500px;}
.y92{bottom:642.862500px;}
.y3f{bottom:644.022000px;}
.y12{bottom:644.281500px;}
.yec{bottom:649.836000px;}
.y129{bottom:651.108000px;}
.y10b{bottom:654.870000px;}
.y63{bottom:658.752000px;}
.yb2{bottom:663.784500px;}
.y147{bottom:663.837000px;}
.yeb{bottom:664.170000px;}
.y91{bottom:664.383000px;}
.y3e{bottom:665.541000px;}
.y11{bottom:665.800500px;}
.y128{bottom:673.225500px;}
.yea{bottom:676.698000px;}
.y10a{bottom:676.987500px;}
.y62{bottom:680.868000px;}
.yb1{bottom:685.303500px;}
.y146{bottom:685.356000px;}
.y90{bottom:686.499000px;}
.y3d{bottom:687.060000px;}
.y10{bottom:687.319500px;}
.ye9{bottom:692.481000px;}
.y127{bottom:694.744500px;}
.y109{bottom:698.506500px;}
.y61{bottom:702.388500px;}
.y145{bottom:706.875000px;}
.yb0{bottom:707.421000px;}
.y8f{bottom:708.018000px;}
.ye8{bottom:708.285000px;}
.y3c{bottom:708.579000px;}
.yf{bottom:708.840000px;}
.y126{bottom:716.263500px;}
.y108{bottom:720.622500px;}
.ye7{bottom:722.619000px;}
.y60{bottom:724.504500px;}
.yaf{bottom:728.940000px;}
.y144{bottom:728.992500px;}
.y8e{bottom:729.538500px;}
.y3b{bottom:730.099500px;}
.ye{bottom:730.359000px;}
.ye6{bottom:735.220500px;}
.y125{bottom:738.381000px;}
.y107{bottom:742.143000px;}
.y5f{bottom:746.025000px;}
.yae{bottom:750.459000px;}
.y143{bottom:750.511500px;}
.ye5{bottom:751.024500px;}
.y3a{bottom:751.618500px;}
.y8d{bottom:751.654500px;}
.yd{bottom:751.878000px;}
.y124{bottom:759.900000px;}
.y106{bottom:764.259000px;}
.ye4{bottom:766.828500px;}
.y5e{bottom:768.141000px;}
.y142{bottom:772.030500px;}
.yad{bottom:772.576500px;}
.y39{bottom:773.137500px;}
.y8c{bottom:773.175000px;}
.yc{bottom:773.397000px;}
.y123{bottom:781.419000px;}
.ye3{bottom:782.706000px;}
.y5d{bottom:789.660000px;}
.yac{bottom:794.095500px;}
.y141{bottom:794.148000px;}
.y38{bottom:794.592000px;}
.y8b{bottom:794.694000px;}
.yb{bottom:794.916000px;}
.ye2{bottom:797.040000px;}
.y122{bottom:802.938000px;}
.ye1{bottom:809.545500px;}
.y5c{bottom:811.777500px;}
.yc7{bottom:815.614500px;}
.y37{bottom:816.111000px;}
.y8a{bottom:816.213000px;}
.ya{bottom:816.436500px;}
.y121{bottom:825.055500px;}
.ye0{bottom:825.351000px;}
.y5b{bottom:833.296500px;}
.y36{bottom:837.630000px;}
.y89{bottom:837.732000px;}
.y9{bottom:837.955500px;}
.ydf{bottom:841.155000px;}
.y120{bottom:846.574500px;}
.y5a{bottom:855.414000px;}
.yde{bottom:856.936500px;}
.y35{bottom:859.149000px;}
.yab{bottom:859.251000px;}
.y8{bottom:859.474500px;}
.y88{bottom:859.849500px;}
.y11f{bottom:868.093500px;}
.ydd{bottom:872.814000px;}
.y59{bottom:876.933000px;}
.y34{bottom:880.669500px;}
.yc6{bottom:880.770000px;}
.y7{bottom:880.993500px;}
.y87{bottom:881.368500px;}
.ydc{bottom:887.148000px;}
.y11e{bottom:890.211000px;}
.y58{bottom:899.050500px;}
.ydb{bottom:899.676000px;}
.y6{bottom:902.512500px;}
.y86{bottom:902.887500px;}
.y33{bottom:910.830000px;}
.y11d{bottom:911.730000px;}
.yda{bottom:915.459000px;}
.y57{bottom:921.168000px;}
.y5{bottom:924.033000px;}
.y85{bottom:924.406500px;}
.yd9{bottom:931.263000px;}
.y32{bottom:932.349000px;}
.y11c{bottom:933.250500px;}
.y56{bottom:943.284000px;}
.yaa{bottom:945.927000px;}
.y84{bottom:946.524000px;}
.yd8{bottom:947.044500px;}
.y31{bottom:953.868000px;}
.y11b{bottom:955.366500px;}
.yd7{bottom:961.380000px;}
.y83{bottom:968.043000px;}
.y30{bottom:975.387000px;}
.y11a{bottom:976.885500px;}
.y4{bottom:979.126500px;}
.y55{bottom:979.269000px;}
.y82{bottom:989.562000px;}
.y2f{bottom:996.907500px;}
.y119{bottom:999.003000px;}
.y54{bottom:1010.005500px;}
.y81{bottom:1011.082500px;}
.yc5{bottom:1011.679500px;}
.y3{bottom:1014.861000px;}
.y118{bottom:1020.522000px;}
.y2e{bottom:1027.132500px;}
.y53{bottom:1031.524500px;}
.y80{bottom:1033.198500px;}
.y117{bottom:1042.639500px;}
.y52{bottom:1053.045000px;}
.y7f{bottom:1054.719000px;}
.y2{bottom:1057.104000px;}
.y2d{bottom:1074.564000px;}
.y7e{bottom:1076.238000px;}
.y116{bottom:1078.624500px;}
.y1{bottom:1086.993000px;}
.y2c{bottom:1096.083000px;}
.y115{bottom:1096.557000px;}
.y7d{bottom:1098.354000px;}
.hb{height:24.675533px;}
.ha{height:25.105920px;}
.h4{height:31.800699px;}
.h9{height:44.293720px;}
.h6{height:48.992410px;}
.h8{height:49.351066px;}
.h5{height:50.140109px;}
.h3{height:50.211840px;}
.h7{height:54.395880px;}
.h2{height:66.948840px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.558500px;}
.x2{left:130.138500px;}
.xd{left:146.986500px;}
.x1{left:150.282000px;}
.xa{left:152.464500px;}
.x7{left:159.330000px;}
.x5{left:161.575500px;}
.x18{left:174.471000px;}
.x13{left:178.146000px;}
.x8{left:181.558500px;}
.x9{left:186.300000px;}
.xb{left:196.396500px;}
.x14{left:200.686500px;}
.x17{left:205.473000px;}
.x1e{left:307.804500px;}
.x20{left:312.288000px;}
.x1f{left:344.268000px;}
.x1d{left:367.564500px;}
.x19{left:384.340500px;}
.x1b{left:388.824000px;}
.x1c{left:399.544500px;}
.x16{left:405.600000px;}
.x1a{left:420.804000px;}
.x4{left:422.976000px;}
.x3{left:425.520000px;}
.x15{left:442.063500px;}
.x12{left:512.565000px;}
.x11{left:522.454500px;}
.xc{left:539.535000px;}
.xe{left:552.249000px;}
.xf{left:554.079000px;}
.x10{left:575.949000px;}
@media print{
.v1{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.653258pt;}
.ls2{letter-spacing:14.771215pt;}
.ws53{word-spacing:-15.940267pt;}
.ws71{word-spacing:-3.825664pt;}
.wsac{word-spacing:-3.761903pt;}
.ws1f{word-spacing:-3.698142pt;}
.ws4a{word-spacing:-3.634381pt;}
.ws52{word-spacing:-3.570620pt;}
.ws2{word-spacing:-3.506859pt;}
.ws65{word-spacing:-3.443098pt;}
.ws4d{word-spacing:-3.315575pt;}
.wsb0{word-spacing:-3.124292pt;}
.ws80{word-spacing:-2.996770pt;}
.ws31{word-spacing:-2.869248pt;}
.ws4b{word-spacing:-2.614204pt;}
.ws17{word-spacing:-2.486682pt;}
.ws88{word-spacing:-2.231637pt;}
.wsad{word-spacing:-1.976593pt;}
.ws45{word-spacing:-1.785310pt;}
.ws21{word-spacing:-1.211460pt;}
.ws8{word-spacing:-1.083938pt;}
.ws47{word-spacing:-1.020177pt;}
.ws4e{word-spacing:-0.956416pt;}
.ws76{word-spacing:-0.892655pt;}
.ws62{word-spacing:-0.828894pt;}
.ws5a{word-spacing:-0.765133pt;}
.ws5f{word-spacing:-0.701372pt;}
.wsb4{word-spacing:-0.637611pt;}
.ws29{word-spacing:-0.573850pt;}
.ws3f{word-spacing:-0.446327pt;}
.ws57{word-spacing:-0.318805pt;}
.wsc{word-spacing:-0.255044pt;}
.ws99{word-spacing:-0.191283pt;}
.ws69{word-spacing:-0.127522pt;}
.ws90{word-spacing:-0.069074pt;}
.ws2e{word-spacing:-0.063761pt;}
.ws2a{word-spacing:0.000000pt;}
.ws38{word-spacing:0.063761pt;}
.wsa6{word-spacing:0.127522pt;}
.ws18{word-spacing:0.255044pt;}
.ws25{word-spacing:0.446327pt;}
.ws60{word-spacing:0.510089pt;}
.ws20{word-spacing:0.637611pt;}
.ws6c{word-spacing:0.765133pt;}
.ws73{word-spacing:0.828894pt;}
.ws4{word-spacing:0.892655pt;}
.ws37{word-spacing:0.956416pt;}
.ws2f{word-spacing:1.147699pt;}
.ws39{word-spacing:1.211460pt;}
.ws46{word-spacing:1.402743pt;}
.ws3e{word-spacing:1.466505pt;}
.ws11{word-spacing:1.530266pt;}
.wsd{word-spacing:1.594027pt;}
.ws3c{word-spacing:1.657788pt;}
.ws66{word-spacing:1.721549pt;}
.ws1c{word-spacing:1.785310pt;}
.ws6b{word-spacing:1.912832pt;}
.wsa3{word-spacing:1.976593pt;}
.wsb{word-spacing:2.167876pt;}
.ws43{word-spacing:2.231637pt;}
.ws7{word-spacing:2.359159pt;}
.ws22{word-spacing:2.486682pt;}
.ws28{word-spacing:2.550443pt;}
.ws12{word-spacing:2.614204pt;}
.ws6{word-spacing:2.805487pt;}
.wsaf{word-spacing:2.869248pt;}
.ws63{word-spacing:2.933009pt;}
.ws67{word-spacing:2.996770pt;}
.ws2d{word-spacing:3.124292pt;}
.ws5{word-spacing:3.188053pt;}
.ws89{word-spacing:3.443098pt;}
.ws27{word-spacing:3.570620pt;}
.wsa1{word-spacing:3.634381pt;}
.ws54{word-spacing:3.698142pt;}
.ws9{word-spacing:3.761903pt;}
.ws1d{word-spacing:3.825664pt;}
.wsa7{word-spacing:3.953186pt;}
.ws6f{word-spacing:4.016947pt;}
.ws8e{word-spacing:4.080708pt;}
.ws13{word-spacing:4.144469pt;}
.ws15{word-spacing:4.208230pt;}
.ws9d{word-spacing:4.250709pt;}
.wse{word-spacing:4.335753pt;}
.ws64{word-spacing:4.463275pt;}
.ws32{word-spacing:4.527036pt;}
.ws5e{word-spacing:4.590797pt;}
.wsb7{word-spacing:4.622646pt;}
.wsa9{word-spacing:4.654558pt;}
.ws70{word-spacing:4.718319pt;}
.ws1a{word-spacing:4.782080pt;}
.ws26{word-spacing:4.845841pt;}
.wsc5{word-spacing:4.909602pt;}
.wsc7{word-spacing:4.973363pt;}
.ws3{word-spacing:5.037124pt;}
.ws23{word-spacing:5.164646pt;}
.ws40{word-spacing:5.292169pt;}
.ws1b{word-spacing:5.419691pt;}
.ws6e{word-spacing:5.610974pt;}
.ws8f{word-spacing:5.674735pt;}
.ws3a{word-spacing:5.738496pt;}
.ws83{word-spacing:5.802257pt;}
.ws42{word-spacing:6.312346pt;}
.ws41{word-spacing:6.439868pt;}
.wsca{word-spacing:6.482332pt;}
.ws68{word-spacing:6.631151pt;}
.ws49{word-spacing:6.758673pt;}
.ws8a{word-spacing:6.886195pt;}
.ws9f{word-spacing:7.013717pt;}
.wsf{word-spacing:7.077478pt;}
.ws16{word-spacing:7.141239pt;}
.ws33{word-spacing:7.396284pt;}
.ws75{word-spacing:7.523806pt;}
.ws36{word-spacing:7.587567pt;}
.wsb3{word-spacing:7.651328pt;}
.ws72{word-spacing:7.715089pt;}
.ws6a{word-spacing:7.778850pt;}
.ws55{word-spacing:7.842611pt;}
.ws91{word-spacing:7.938253pt;}
.wsb6{word-spacing:7.970133pt;}
.wsb5{word-spacing:8.033894pt;}
.ws81{word-spacing:8.097655pt;}
.ws86{word-spacing:8.161417pt;}
.wsb8{word-spacing:8.352700pt;}
.ws3d{word-spacing:8.416461pt;}
.ws44{word-spacing:8.607744pt;}
.ws34{word-spacing:8.862788pt;}
.ws3b{word-spacing:8.926549pt;}
.ws61{word-spacing:9.564160pt;}
.ws30{word-spacing:9.946726pt;}
.wsc0{word-spacing:10.265532pt;}
.ws9b{word-spacing:10.456815pt;}
.ws35{word-spacing:10.584337pt;}
.wsa8{word-spacing:10.775620pt;}
.ws58{word-spacing:10.839381pt;}
.wsb9{word-spacing:10.903142pt;}
.wsc6{word-spacing:11.158187pt;}
.ws7d{word-spacing:11.476992pt;}
.ws9c{word-spacing:11.668275pt;}
.ws1{word-spacing:12.433408pt;}
.wsb2{word-spacing:12.624691pt;}
.ws4c{word-spacing:12.879735pt;}
.wsa5{word-spacing:13.389824pt;}
.ws51{word-spacing:13.453585pt;}
.ws8d{word-spacing:13.517346pt;}
.ws7e{word-spacing:13.963674pt;}
.ws5b{word-spacing:14.091196pt;}
.ws96{word-spacing:14.664947pt;}
.wsbb{word-spacing:14.665045pt;}
.ws59{word-spacing:14.856329pt;}
.ws6d{word-spacing:15.430178pt;}
.ws97{word-spacing:15.876506pt;}
.ws24{word-spacing:16.322833pt;}
.wsa0{word-spacing:16.577877pt;}
.ws87{word-spacing:16.832922pt;}
.ws84{word-spacing:17.980621pt;}
.wsba{word-spacing:18.554470pt;}
.ws5c{word-spacing:18.681993pt;}
.ws8b{word-spacing:19.447125pt;}
.ws7f{word-spacing:19.510886pt;}
.ws74{word-spacing:19.574647pt;}
.wsa{word-spacing:19.638409pt;}
.ws1e{word-spacing:19.702170pt;}
.ws14{word-spacing:20.084736pt;}
.wsa2{word-spacing:20.148497pt;}
.ws19{word-spacing:20.212258pt;}
.ws5d{word-spacing:20.339780pt;}
.ws0{word-spacing:21.168586pt;}
.ws2b{word-spacing:21.487479pt;}
.ws85{word-spacing:21.933807pt;}
.wsbc{word-spacing:22.443895pt;}
.wsc2{word-spacing:22.571418pt;}
.ws10{word-spacing:22.890223pt;}
.ws8c{word-spacing:22.953984pt;}
.wsbd{word-spacing:24.611772pt;}
.ws9e{word-spacing:24.803055pt;}
.ws4f{word-spacing:24.866816pt;}
.ws77{word-spacing:26.014515pt;}
.ws78{word-spacing:27.162214pt;}
.ws9a{word-spacing:29.840179pt;}
.ws82{word-spacing:30.158985pt;}
.ws7a{word-spacing:30.669073pt;}
.ws2c{word-spacing:31.774101pt;}
.wsa4{word-spacing:31.944294pt;}
.ws79{word-spacing:34.622259pt;}
.wsbe{word-spacing:36.343808pt;}
.wsc8{word-spacing:39.595622pt;}
.wsb1{word-spacing:49.988676pt;}
.wsbf{word-spacing:62.167040pt;}
.ws7c{word-spacing:63.506022pt;}
.ws7b{word-spacing:65.992704pt;}
.wsaa{word-spacing:79.828855pt;}
.wsae{word-spacing:83.463236pt;}
.ws48{word-spacing:85.300361pt;}
.ws94{word-spacing:89.797333pt;}
.ws95{word-spacing:97.764267pt;}
.wsc9{word-spacing:98.574609pt;}
.wsc4{word-spacing:108.202530pt;}
.ws93{word-spacing:113.705600pt;}
.ws92{word-spacing:142.937600pt;}
.wsc1{word-spacing:154.238020pt;}
.wsc3{word-spacing:157.808640pt;}
.wsab{word-spacing:184.397005pt;}
.ws50{word-spacing:191.046067pt;}
.ws98{word-spacing:208.498688pt;}
.ws56{word-spacing:215.846067pt;}
._c{margin-left:-7.927633pt;}
._9{margin-left:-5.866018pt;}
._4{margin-left:-4.782080pt;}
._0{margin-left:-3.400576pt;}
._1{margin-left:-1.700288pt;}
._5e{width:1.062677pt;}
._e{width:11.668275pt;}
._13{width:13.198519pt;}
._2b{width:14.261218pt;}
._12{width:16.004028pt;}
._3{width:17.343010pt;}
._b{width:18.873254pt;}
._d{width:20.594803pt;}
._5{width:21.912546pt;}
._14{width:22.975223pt;}
._8{width:24.803055pt;}
._11{width:26.205798pt;}
._6{width:27.417259pt;}
._20{width:28.309914pt;}
._16{width:29.776397pt;}
._2{width:31.179162pt;}
._a{width:32.730667pt;}
._15{width:33.814605pt;}
._23{width:34.898543pt;}
._f{width:37.852791pt;}
._7{width:40.509517pt;}
._29{width:43.655070pt;}
._17{width:45.015292pt;}
._57{width:47.505485pt;}
._1f{width:49.733611pt;}
._10{width:51.327637pt;}
._26{width:54.324429pt;}
._25{width:59.234031pt;}
._1e{width:65.883443pt;}
._27{width:69.159497pt;}
._1a{width:81.827977pt;}
._2a{width:90.678519pt;}
._28{width:95.322795pt;}
._2e{width:97.767467pt;}
._58{width:101.962027pt;}
._30{width:105.734400pt;}
._45{width:121.675733pt;}
._24{width:125.206699pt;}
._5c{width:142.777963pt;}
._1c{width:161.778475pt;}
._1d{width:168.054161pt;}
._55{width:179.920550pt;}
._21{width:186.578475pt;}
._22{width:237.649314pt;}
._5a{width:243.191612pt;}
._56{width:248.314935pt;}
._5d{width:283.960781pt;}
._54{width:298.792439pt;}
._19{width:333.326515pt;}
._5b{width:435.144781pt;}
._59{width:510.734114pt;}
._1b{width:593.212954pt;}
._48{width:653.609916pt;}
._53{width:661.912781pt;}
._35{width:1062.732821pt;}
._18{width:1109.870737pt;}
._40{width:1196.595981pt;}
._36{width:1207.757346pt;}
._33{width:1288.326874pt;}
._41{width:1294.876245pt;}
._44{width:1322.325385pt;}
._32{width:1343.352695pt;}
._4c{width:1347.096559pt;}
._49{width:1358.605431pt;}
._4f{width:1408.208341pt;}
._50{width:1441.877385pt;}
._34{width:1454.151390pt;}
._4e{width:1455.915439pt;}
._43{width:1456.893116pt;}
._3f{width:1470.187298pt;}
._52{width:1472.925824pt;}
._46{width:1477.296657pt;}
._37{width:1484.310374pt;}
._47{width:1487.859733pt;}
._3a{width:1495.858547pt;}
._31{width:1498.529092pt;}
._51{width:1513.637265pt;}
._39{width:1518.004898pt;}
._42{width:1519.825289pt;}
._3d{width:1525.975031pt;}
._4a{width:1527.760341pt;}
._3c{width:1533.863343pt;}
._2d{width:1543.700608pt;}
._2f{width:1551.673941pt;}
._4d{width:1559.640875pt;}
._2c{width:1564.043588pt;}
._38{width:1573.830912pt;}
._4b{width:1575.581141pt;}
._3e{width:1604.783710pt;}
._3b{width:1649.929745pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:69.074133pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:94.488000pt;}
.y7c{bottom:102.037333pt;}
.y140{bottom:105.118667pt;}
.y2a{bottom:113.616000pt;}
.y7b{bottom:122.228000pt;}
.y13f{bottom:124.246667pt;}
.ya9{bottom:126.701333pt;}
.y29{bottom:132.745333pt;}
.y7a{bottom:141.356000pt;}
.yd6{bottom:141.952000pt;}
.y13e{bottom:143.906667pt;}
.ya8{bottom:146.893333pt;}
.y28{bottom:151.873333pt;}
.y79{bottom:160.485333pt;}
.y13d{bottom:163.034667pt;}
.ya7{bottom:166.021333pt;}
.y27{bottom:171.001333pt;}
.y78{bottom:179.613333pt;}
.y13c{bottom:182.694667pt;}
.ya6{bottom:185.681333pt;}
.yc4{bottom:186.212000pt;}
.y26{bottom:190.129333pt;}
.y77{bottom:199.273333pt;}
.y13b{bottom:201.822667pt;}
.yd5{bottom:203.214667pt;}
.ya5{bottom:204.809333pt;}
.yc3{bottom:205.340000pt;}
.y25{bottom:209.257333pt;}
.y76{bottom:218.401333pt;}
.y13a{bottom:220.950667pt;}
.yd4{bottom:222.342667pt;}
.ya4{bottom:223.937333pt;}
.yc2{bottom:224.468000pt;}
.y105{bottom:227.906667pt;}
.y51{bottom:228.328000pt;}
.y24{bottom:228.386667pt;}
.y75{bottom:237.529333pt;}
.y139{bottom:240.610667pt;}
.yd3{bottom:242.002667pt;}
.ya3{bottom:243.597333pt;}
.yc1{bottom:244.128000pt;}
.y50{bottom:247.457333pt;}
.y23{bottom:247.514667pt;}
.y74{bottom:256.657333pt;}
.y104{bottom:256.976000pt;}
.y138{bottom:259.738667pt;}
.yd2{bottom:261.130667pt;}
.ya2{bottom:262.725333pt;}
.yc0{bottom:263.256000pt;}
.y4f{bottom:266.585333pt;}
.y22{bottom:266.642667pt;}
.y103{bottom:271.088000pt;}
.y73{bottom:276.317333pt;}
.y137{bottom:279.398667pt;}
.yd1{bottom:280.790667pt;}
.ya1{bottom:281.853333pt;}
.ybf{bottom:282.385333pt;}
.y102{bottom:285.137333pt;}
.y4e{bottom:285.713333pt;}
.y21{bottom:285.770667pt;}
.y72{bottom:295.445333pt;}
.y101{bottom:297.878667pt;}
.yd0{bottom:299.918667pt;}
.ya0{bottom:300.981333pt;}
.ybe{bottom:301.513333pt;}
.y4d{bottom:304.841333pt;}
.y20{bottom:304.898667pt;}
.y100{bottom:309.014667pt;}
.y136{bottom:311.385333pt;}
.y71{bottom:314.573333pt;}
.ycf{bottom:319.578667pt;}
.y9f{bottom:320.641333pt;}
.yff{bottom:323.128000pt;}
.y4c{bottom:323.969333pt;}
.y1f{bottom:324.028000pt;}
.y135{bottom:327.325333pt;}
.y70{bottom:334.233333pt;}
.yfe{bottom:335.869333pt;}
.yce{bottom:338.706667pt;}
.y9e{bottom:339.769333pt;}
.y4b{bottom:343.040000pt;}
.y1e{bottom:343.156000pt;}
.yfd{bottom:346.985333pt;}
.y6f{bottom:353.361333pt;}
.ycd{bottom:358.366667pt;}
.ybd{bottom:358.897333pt;}
.y9d{bottom:359.429333pt;}
.yfc{bottom:361.014667pt;}
.y4a{bottom:362.168000pt;}
.y1d{bottom:362.284000pt;}
.y134{bottom:366.757333pt;}
.y152{bottom:369.676000pt;}
.y6e{bottom:373.021333pt;}
.yfb{bottom:375.062667pt;}
.ycc{bottom:377.494667pt;}
.ybc{bottom:378.025333pt;}
.y9c{bottom:378.557333pt;}
.y49{bottom:381.297333pt;}
.y1c{bottom:381.412000pt;}
.y151{bottom:385.617333pt;}
.y133{bottom:385.886667pt;}
.yfa{bottom:389.174667pt;}
.y6d{bottom:392.149333pt;}
.y114{bottom:396.244000pt;}
.ybb{bottom:397.154667pt;}
.y9b{bottom:397.685333pt;}
.y48{bottom:400.425333pt;}
.y1b{bottom:400.540000pt;}
.yf9{bottom:401.916000pt;}
.y132{bottom:405.014667pt;}
.y6c{bottom:411.809333pt;}
.yf8{bottom:413.117333pt;}
.ycb{bottom:416.282667pt;}
.y150{bottom:416.328000pt;}
.y9a{bottom:416.813333pt;}
.y47{bottom:419.553333pt;}
.y1a{bottom:419.669333pt;}
.y131{bottom:424.674667pt;}
.y113{bottom:426.954667pt;}
.yf7{bottom:427.229333pt;}
.y6b{bottom:430.937333pt;}
.y14f{bottom:435.456000pt;}
.yba{bottom:435.942667pt;}
.y99{bottom:436.473333pt;}
.y46{bottom:438.681333pt;}
.y19{bottom:438.797333pt;}
.yf6{bottom:441.277333pt;}
.y130{bottom:443.802667pt;}
.y112{bottom:446.084000pt;}
.y6a{bottom:450.065333pt;}
.y14e{bottom:454.585333pt;}
.yb9{bottom:455.070667pt;}
.yf5{bottom:455.326667pt;}
.y98{bottom:455.601333pt;}
.y45{bottom:457.752000pt;}
.y18{bottom:457.925333pt;}
.y12f{bottom:462.930667pt;}
.y111{bottom:465.742667pt;}
.yf4{bottom:468.068000pt;}
.y69{bottom:469.725333pt;}
.yb8{bottom:474.198667pt;}
.y14d{bottom:474.244000pt;}
.y97{bottom:474.729333pt;}
.y44{bottom:476.880000pt;}
.y17{bottom:477.053333pt;}
.yf3{bottom:479.204000pt;}
.y12e{bottom:482.590667pt;}
.y110{bottom:484.870667pt;}
.y68{bottom:488.853333pt;}
.yf2{bottom:493.253333pt;}
.yb7{bottom:493.326667pt;}
.y14c{bottom:493.373333pt;}
.yca{bottom:493.858667pt;}
.y96{bottom:494.389333pt;}
.y43{bottom:496.008000pt;}
.y16{bottom:496.181333pt;}
.y12d{bottom:501.718667pt;}
.y10f{bottom:504.530667pt;}
.yf1{bottom:507.301333pt;}
.y67{bottom:507.981333pt;}
.yb6{bottom:512.454667pt;}
.y14b{bottom:512.501333pt;}
.yc9{bottom:512.986667pt;}
.y95{bottom:513.517333pt;}
.y42{bottom:515.137333pt;}
.y15{bottom:515.309333pt;}
.y12c{bottom:520.846667pt;}
.yf0{bottom:521.413333pt;}
.y10e{bottom:523.658667pt;}
.y66{bottom:527.641333pt;}
.yb5{bottom:532.114667pt;}
.y14a{bottom:532.160000pt;}
.y94{bottom:532.645333pt;}
.y41{bottom:534.265333pt;}
.y14{bottom:534.438667pt;}
.yef{bottom:535.462667pt;}
.y12b{bottom:540.506667pt;}
.y10d{bottom:543.318667pt;}
.y65{bottom:546.769333pt;}
.yee{bottom:549.490667pt;}
.yb4{bottom:551.242667pt;}
.y149{bottom:551.289333pt;}
.y93{bottom:552.305333pt;}
.y40{bottom:553.393333pt;}
.y13{bottom:553.566667pt;}
.y12a{bottom:559.634667pt;}
.y10c{bottom:562.978667pt;}
.yed{bottom:563.520000pt;}
.y64{bottom:566.429333pt;}
.yb3{bottom:570.370667pt;}
.y148{bottom:570.417333pt;}
.yc8{bottom:570.902667pt;}
.y92{bottom:571.433333pt;}
.y3f{bottom:572.464000pt;}
.y12{bottom:572.694667pt;}
.yec{bottom:577.632000pt;}
.y129{bottom:578.762667pt;}
.y10b{bottom:582.106667pt;}
.y63{bottom:585.557333pt;}
.yb2{bottom:590.030667pt;}
.y147{bottom:590.077333pt;}
.yeb{bottom:590.373333pt;}
.y91{bottom:590.562667pt;}
.y3e{bottom:591.592000pt;}
.y11{bottom:591.822667pt;}
.y128{bottom:598.422667pt;}
.yea{bottom:601.509333pt;}
.y10a{bottom:601.766667pt;}
.y62{bottom:605.216000pt;}
.yb1{bottom:609.158667pt;}
.y146{bottom:609.205333pt;}
.y90{bottom:610.221333pt;}
.y3d{bottom:610.720000pt;}
.y10{bottom:610.950667pt;}
.ye9{bottom:615.538667pt;}
.y127{bottom:617.550667pt;}
.y109{bottom:620.894667pt;}
.y61{bottom:624.345333pt;}
.y145{bottom:628.333333pt;}
.yb0{bottom:628.818667pt;}
.y8f{bottom:629.349333pt;}
.ye8{bottom:629.586667pt;}
.y3c{bottom:629.848000pt;}
.yf{bottom:630.080000pt;}
.y126{bottom:636.678667pt;}
.y108{bottom:640.553333pt;}
.ye7{bottom:642.328000pt;}
.y60{bottom:644.004000pt;}
.yaf{bottom:647.946667pt;}
.y144{bottom:647.993333pt;}
.y8e{bottom:648.478667pt;}
.y3b{bottom:648.977333pt;}
.ye{bottom:649.208000pt;}
.ye6{bottom:653.529333pt;}
.y125{bottom:656.338667pt;}
.y107{bottom:659.682667pt;}
.y5f{bottom:663.133333pt;}
.yae{bottom:667.074667pt;}
.y143{bottom:667.121333pt;}
.ye5{bottom:667.577333pt;}
.y3a{bottom:668.105333pt;}
.y8d{bottom:668.137333pt;}
.yd{bottom:668.336000pt;}
.y124{bottom:675.466667pt;}
.y106{bottom:679.341333pt;}
.ye4{bottom:681.625333pt;}
.y5e{bottom:682.792000pt;}
.y142{bottom:686.249333pt;}
.yad{bottom:686.734667pt;}
.y39{bottom:687.233333pt;}
.y8c{bottom:687.266667pt;}
.yc{bottom:687.464000pt;}
.y123{bottom:694.594667pt;}
.ye3{bottom:695.738667pt;}
.y5d{bottom:701.920000pt;}
.yac{bottom:705.862667pt;}
.y141{bottom:705.909333pt;}
.y38{bottom:706.304000pt;}
.y8b{bottom:706.394667pt;}
.yb{bottom:706.592000pt;}
.ye2{bottom:708.480000pt;}
.y122{bottom:713.722667pt;}
.ye1{bottom:719.596000pt;}
.y5c{bottom:721.580000pt;}
.yc7{bottom:724.990667pt;}
.y37{bottom:725.432000pt;}
.y8a{bottom:725.522667pt;}
.ya{bottom:725.721333pt;}
.y121{bottom:733.382667pt;}
.ye0{bottom:733.645333pt;}
.y5b{bottom:740.708000pt;}
.y36{bottom:744.560000pt;}
.y89{bottom:744.650667pt;}
.y9{bottom:744.849333pt;}
.ydf{bottom:747.693333pt;}
.y120{bottom:752.510667pt;}
.y5a{bottom:760.368000pt;}
.yde{bottom:761.721333pt;}
.y35{bottom:763.688000pt;}
.yab{bottom:763.778667pt;}
.y8{bottom:763.977333pt;}
.y88{bottom:764.310667pt;}
.y11f{bottom:771.638667pt;}
.ydd{bottom:775.834667pt;}
.y59{bottom:779.496000pt;}
.y34{bottom:782.817333pt;}
.yc6{bottom:782.906667pt;}
.y7{bottom:783.105333pt;}
.y87{bottom:783.438667pt;}
.ydc{bottom:788.576000pt;}
.y11e{bottom:791.298667pt;}
.y58{bottom:799.156000pt;}
.ydb{bottom:799.712000pt;}
.y6{bottom:802.233333pt;}
.y86{bottom:802.566667pt;}
.y33{bottom:809.626667pt;}
.y11d{bottom:810.426667pt;}
.yda{bottom:813.741333pt;}
.y57{bottom:818.816000pt;}
.y5{bottom:821.362667pt;}
.y85{bottom:821.694667pt;}
.yd9{bottom:827.789333pt;}
.y32{bottom:828.754667pt;}
.y11c{bottom:829.556000pt;}
.y56{bottom:838.474667pt;}
.yaa{bottom:840.824000pt;}
.y84{bottom:841.354667pt;}
.yd8{bottom:841.817333pt;}
.y31{bottom:847.882667pt;}
.y11b{bottom:849.214667pt;}
.yd7{bottom:854.560000pt;}
.y83{bottom:860.482667pt;}
.y30{bottom:867.010667pt;}
.y11a{bottom:868.342667pt;}
.y4{bottom:870.334667pt;}
.y55{bottom:870.461333pt;}
.y82{bottom:879.610667pt;}
.y2f{bottom:886.140000pt;}
.y119{bottom:888.002667pt;}
.y54{bottom:897.782667pt;}
.y81{bottom:898.740000pt;}
.yc5{bottom:899.270667pt;}
.y3{bottom:902.098667pt;}
.y118{bottom:907.130667pt;}
.y2e{bottom:913.006667pt;}
.y53{bottom:916.910667pt;}
.y80{bottom:918.398667pt;}
.y117{bottom:926.790667pt;}
.y52{bottom:936.040000pt;}
.y7f{bottom:937.528000pt;}
.y2{bottom:939.648000pt;}
.y2d{bottom:955.168000pt;}
.y7e{bottom:956.656000pt;}
.y116{bottom:958.777333pt;}
.y1{bottom:966.216000pt;}
.y2c{bottom:974.296000pt;}
.y115{bottom:974.717333pt;}
.y7d{bottom:976.314667pt;}
.hb{height:21.933807pt;}
.ha{height:22.316373pt;}
.h4{height:28.267288pt;}
.h9{height:39.372195pt;}
.h6{height:43.548809pt;}
.h8{height:43.867614pt;}
.h5{height:44.568986pt;}
.h3{height:44.632747pt;}
.h7{height:48.351893pt;}
.h2{height:59.510080pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.385333pt;}
.x2{left:115.678667pt;}
.xd{left:130.654667pt;}
.x1{left:133.584000pt;}
.xa{left:135.524000pt;}
.x7{left:141.626667pt;}
.x5{left:143.622667pt;}
.x18{left:155.085333pt;}
.x13{left:158.352000pt;}
.x8{left:161.385333pt;}
.x9{left:165.600000pt;}
.xb{left:174.574667pt;}
.x14{left:178.388000pt;}
.x17{left:182.642667pt;}
.x1e{left:273.604000pt;}
.x20{left:277.589333pt;}
.x1f{left:306.016000pt;}
.x1d{left:326.724000pt;}
.x19{left:341.636000pt;}
.x1b{left:345.621333pt;}
.x1c{left:355.150667pt;}
.x16{left:360.533333pt;}
.x1a{left:374.048000pt;}
.x4{left:375.978667pt;}
.x3{left:378.240000pt;}
.x15{left:392.945333pt;}
.x12{left:455.613333pt;}
.x11{left:464.404000pt;}
.xc{left:479.586667pt;}
.xe{left:490.888000pt;}
.xf{left:492.514667pt;}
.x10{left:511.954667pt;}
}




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