
    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_9174c137bacae2f3d5e5595b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.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_59e5d968740839604c6a6f0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_93d1a3ca3ba0df96d0db4d89.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_86add36bf5f715af2732f52b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_917377f2b9bab419e5a1261b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_0ebba5f13abe9f0af4384a63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b767326ba0767c544d224a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_94dfe7f181f1906027edc067.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.780762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4845c61a336692fef28b1bcc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_937985eae980946fc1a16f5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_99b960b12e4efba0d193975d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_08431578b9df9d70c1cc3c22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_889ef866038dfbdda4a7eeb2.woff2')format("woff");}.fff{font-family:fff;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_79206a80a4bd0a913068927c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.995000;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;}
.m2{transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.558353px;}
.ls2{letter-spacing:36.682879px;}
.ls3{letter-spacing:37.132879px;}
.ls4{letter-spacing:37.533785px;}
.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;}
}
.ws5{word-spacing:-48.011882px;}
.ws4{word-spacing:-47.820600px;}
.ws1{word-spacing:-45.011177px;}
.ws44{word-spacing:-38.029123px;}
.ws10{word-spacing:-37.329373px;}
.ws71{word-spacing:-31.256870px;}
.ws76{word-spacing:-26.640022px;}
.wsd{word-spacing:-24.349111px;}
.ws6c{word-spacing:-22.581837px;}
.ws2{word-spacing:-22.416000px;}
.ws5e{word-spacing:-22.236523px;}
.ws39{word-spacing:-21.927291px;}
.ws3a{word-spacing:-21.730927px;}
.ws36{word-spacing:-21.665473px;}
.ws14{word-spacing:-21.605377px;}
.ws4b{word-spacing:-21.207290px;}
.ws6f{word-spacing:-19.832744px;}
.ws37{word-spacing:-19.309107px;}
.ws33{word-spacing:-19.047289px;}
.ws13{word-spacing:-18.981834px;}
.ws35{word-spacing:-18.850925px;}
.ws38{word-spacing:-18.000015px;}
.ws28{word-spacing:-17.869106px;}
.ws6{word-spacing:-16.504103px;}
.ws70{word-spacing:-16.363650px;}
.ws26{word-spacing:-16.232741px;}
.ws25{word-spacing:-16.167286px;}
.ws2c{word-spacing:-14.923649px;}
.ws16{word-spacing:-12.169503px;}
.ws3{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.473949px;}
.ws21{word-spacing:-10.825425px;}
.ws31{word-spacing:-9.752735px;}
.ws29{word-spacing:-9.490917px;}
.ws27{word-spacing:-9.425462px;}
.wsa{word-spacing:-8.640007px;}
.ws11{word-spacing:-8.574553px;}
.ws15{word-spacing:-8.443643px;}
.wsb{word-spacing:-8.050916px;}
.ws12{word-spacing:-7.986111px;}
.wsc{word-spacing:-7.985461px;}
.ws24{word-spacing:-7.854552px;}
.ws2e{word-spacing:-7.527279px;}
.ws30{word-spacing:-7.396370px;}
.ws3c{word-spacing:-7.352399px;}
.ws41{word-spacing:-7.292623px;}
.ws2a{word-spacing:-7.134551px;}
.ws8{word-spacing:-6.545460px;}
.ws2d{word-spacing:-6.480005px;}
.ws2b{word-spacing:-6.437005px;}
.wsf{word-spacing:-6.087278px;}
.ws9{word-spacing:-5.563641px;}
.ws32{word-spacing:-3.338185px;}
.ws2f{word-spacing:-1.178183px;}
.ws75{word-spacing:-1.045173px;}
.ws20{word-spacing:-0.047900px;}
.ws0{word-spacing:0.000000px;}
.ws6b{word-spacing:3.074645px;}
.wse{word-spacing:3.861821px;}
.ws69{word-spacing:3.954463px;}
.ws4f{word-spacing:3.955553px;}
.ws63{word-spacing:3.957736px;}
.ws5f{word-spacing:3.959372px;}
.ws59{word-spacing:3.959920px;}
.ws6e{word-spacing:5.839008px;}
.ws34{word-spacing:6.796777px;}
.ws1b{word-spacing:12.272900px;}
.ws23{word-spacing:12.482693px;}
.ws19{word-spacing:12.535141px;}
.ws18{word-spacing:12.587590px;}
.ws1e{word-spacing:13.059624px;}
.ws1a{word-spacing:13.112073px;}
.ws22{word-spacing:29.498872px;}
.ws17{word-spacing:29.594889px;}
.ws1f{word-spacing:46.882882px;}
.ws77{word-spacing:49.434137px;}
.ws62{word-spacing:49.434971px;}
.ws58{word-spacing:49.435201px;}
.ws7b{word-spacing:49.435559px;}
.ws74{word-spacing:49.435639px;}
.ws45{word-spacing:49.436102px;}
.ws3d{word-spacing:49.437899px;}
.ws68{word-spacing:49.438129px;}
.ws6d{word-spacing:49.438834px;}
.ws5c{word-spacing:49.439096px;}
.ws4e{word-spacing:49.439592px;}
.ws4a{word-spacing:49.439753px;}
.ws49{word-spacing:49.494248px;}
.ws40{word-spacing:49.495900px;}
.ws48{word-spacing:49.496792px;}
.ws43{word-spacing:49.496899px;}
.ws6a{word-spacing:49.497199px;}
.ws55{word-spacing:49.497338px;}
.ws3b{word-spacing:49.498277px;}
.ws56{word-spacing:51.230831px;}
.ws5d{word-spacing:51.232364px;}
.ws57{word-spacing:52.426343px;}
.ws54{word-spacing:53.083874px;}
.ws5b{word-spacing:53.085408px;}
.ws47{word-spacing:59.637164px;}
.ws3f{word-spacing:59.639255px;}
.ws65{word-spacing:59.640796px;}
.ws79{word-spacing:63.183947px;}
.ws7a{word-spacing:67.368239px;}
.ws46{word-spacing:71.746265px;}
.ws78{word-spacing:88.528801px;}
.ws42{word-spacing:94.927498px;}
.ws73{word-spacing:99.865587px;}
.ws72{word-spacing:101.463782px;}
.ws5a{word-spacing:101.887587px;}
.ws3e{word-spacing:126.206583px;}
.ws64{word-spacing:227.728208px;}
.ws1c{word-spacing:244.896875px;}
.ws66{word-spacing:247.888225px;}
.ws1d{word-spacing:251.400442px;}
.ws67{word-spacing:269.684607px;}
.ws60{word-spacing:286.833164px;}
.ws61{word-spacing:298.942265px;}
.ws4d{word-spacing:493.734380px;}
.ws4c{word-spacing:503.683479px;}
.ws52{word-spacing:1206.335768px;}
.ws50{word-spacing:1253.528535px;}
.ws51{word-spacing:1268.714002px;}
.ws53{word-spacing:1285.994017px;}
._6{margin-left:-23.360365px;}
._e{margin-left:-17.458759px;}
._5{margin-left:-14.537462px;}
._4{margin-left:-11.644312px;}
._7{margin-left:-9.038090px;}
._b{margin-left:-7.383825px;}
._c{margin-left:-6.375096px;}
._8{margin-left:-4.712731px;}
._1{margin-left:-3.586548px;}
._0{margin-left:-1.793274px;}
._a{width:1.099273px;}
._2{width:2.510584px;}
._10{width:12.125587px;}
._d{width:14.884194px;}
._16{width:15.901652px;}
._9{width:19.805834px;}
._14{width:32.729981px;}
._12{width:58.171705px;}
._11{width:70.983827px;}
._15{width:72.478555px;}
._4d{width:73.713085px;}
._3c{width:76.025189px;}
._57{width:84.077044px;}
._1a{width:97.732360px;}
._46{width:103.648208px;}
._48{width:104.885483px;}
._2d{width:107.420606px;}
._1e{width:108.495043px;}
._1f{width:109.631506px;}
._22{width:113.224054px;}
._18{width:117.158021px;}
._19{width:126.205111px;}
._52{width:127.394611px;}
._51{width:129.546547px;}
._50{width:131.644685px;}
._4f{width:134.227008px;}
._47{width:141.197227px;}
._58{width:143.195112px;}
._2f{width:144.403180px;}
._1b{width:145.841491px;}
._45{width:162.324719px;}
._17{width:165.814054px;}
._40{width:167.157824px;}
._3f{width:170.094408px;}
._4e{width:174.586867px;}
._3e{width:177.257957px;}
._3d{width:178.393699px;}
._59{width:193.259634px;}
._56{width:199.237200px;}
._42{width:239.834698px;}
._44{width:241.397749px;}
._20{width:262.834899px;}
._32{width:343.124062px;}
._21{width:355.623522px;}
._1c{width:407.398072px;}
._2e{width:433.476693px;}
._53{width:499.717437px;}
._25{width:514.871189px;}
._54{width:521.487819px;}
._43{width:546.481640px;}
._2b{width:579.960697px;}
._4c{width:586.111628px;}
._24{width:713.198627px;}
._35{width:757.975316px;}
._33{width:798.491714px;}
._34{width:807.131721px;}
._36{width:819.764459px;}
._39{width:830.325091px;}
._38{width:862.594209px;}
._4b{width:896.235523px;}
._31{width:908.586351px;}
._2a{width:919.185889px;}
._2c{width:938.625905px;}
._3a{width:977.925214px;}
._29{width:1096.070218px;}
._3b{width:1128.837522px;}
._37{width:1150.201721px;}
._26{width:1199.185577px;}
._f{width:1384.865623px;}
._23{width:1451.984697px;}
._41{width:1518.744268px;}
._28{width:1609.337555px;}
._4a{width:1628.711951px;}
._27{width:1727.483108px;}
._3{width:1793.747444px;}
._49{width:1796.040719px;}
._30{width:1800.030719px;}
._13{width:1801.404719px;}
._55{width:1803.960719px;}
._1d{width:1807.758719px;}
.fc8{color:rgb(10,146,141);}
.fc6{color:rgb(10,146,141);}
.fc7{color:rgb(16,106,175);}
.fc4{color:rgb(16,106,175);}
.fc3{color:rgb(148,130,147);}
.fc2{color:rgb(161,49,87);}
.fc1{color:rgb(79,117,144);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.820600px;}
.fs11{font-size:47.900111px;}
.fs10{font-size:52.448290px;}
.fs13{font-size:53.798400px;}
.fsf{font-size:53.847360px;}
.fsb{font-size:54.122400px;}
.fs12{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:65.454600px;}
.fsa{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fse{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fsd{font-size:148.722600px;}
.fs6{font-size:179.327400px;}
.fs9{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y66{bottom:21.979650px;}
.y65{bottom:35.441490px;}
.y73{bottom:36.081193px;}
.y64{bottom:48.903330px;}
.y83{bottom:56.452500px;}
.y63{bottom:62.365170px;}
.y72{bottom:63.629851px;}
.y5{bottom:66.525004px;}
.y5c{bottom:78.025560px;}
.y71{bottom:79.916273px;}
.y62{bottom:81.596545px;}
.y5b{bottom:91.487400px;}
.y61{bottom:95.058385px;}
.y70{bottom:96.202696px;}
.y4{bottom:97.125005px;}
.y5a{bottom:104.949240px;}
.y60{bottom:108.520225px;}
.y59{bottom:118.411080px;}
.y5f{bottom:125.828482px;}
.y4b{bottom:127.560022px;}
.y6f{bottom:138.126718px;}
.y20{bottom:139.264499px;}
.y5e{bottom:139.290322px;}
.y4a{bottom:147.883522px;}
.y5d{bottom:152.752162px;}
.y6e{bottom:154.280916px;}
.y28{bottom:154.567522px;}
.y49{bottom:168.207022px;}
.y6d{bottom:171.108220px;}
.y58{bottom:175.829719px;}
.y6c{bottom:187.995611px;}
.y48{bottom:188.530522px;}
.ycb{bottom:188.980500px;}
.y57{bottom:189.291559px;}
.y17{bottom:196.933500px;}
.y6b{bottom:204.318094px;}
.yca{bottom:207.186000px;}
.y47{bottom:208.854022px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y6a{bottom:220.604521px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y56{bottom:225.831015px;}
.yc9{bottom:229.098000px;}
.y46{bottom:229.179022px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y69{bottom:236.890948px;}
.y55{bottom:239.292855px;}
.y45{bottom:249.502522px;}
.yc8{bottom:250.593000px;}
.y68{bottom:253.165364px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y75{bottom:260.447175px;}
.y44{bottom:269.826022px;}
.yc7{bottom:272.088000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y74{bottom:273.909015px;}
.y27{bottom:277.383022px;}
.y67{bottom:280.801388px;}
.yf4{bottom:282.705000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y43{bottom:290.149522px;}
.yc6{bottom:293.845500px;}
.yf3{bottom:301.030500px;}
.ya3{bottom:301.653000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yc5{bottom:315.601500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yf2{bottom:323.061000px;}
.ya2{bottom:324.642000px;}
.y26{bottom:325.204522px;}
.yc4{bottom:338.853000px;}
.ya1{bottom:346.137000px;}
.yf1{bottom:347.830500px;}
.ye{bottom:348.133500px;}
.yc3{bottom:359.176500px;}
.y137{bottom:360.952500px;}
.y117{bottom:364.228500px;}
.yf0{bottom:366.156000px;}
.ya0{bottom:367.894500px;}
.y25{bottom:373.024522px;}
.y136{bottom:379.278000px;}
.y116{bottom:382.554000px;}
.yef{bottom:384.481500px;}
.yd{bottom:386.785499px;}
.y9f{bottom:389.650500px;}
.yc2{bottom:398.779500px;}
.y135{bottom:401.308500px;}
.yee{bottom:402.805500px;}
.y115{bottom:404.584500px;}
.yc{bottom:408.044999px;}
.y9e{bottom:412.902000px;}
.yc1{bottom:417.105000px;}
.yed{bottom:421.131000px;}
.y134{bottom:423.066000px;}
.y114{bottom:426.342000px;}
.yc0{bottom:439.135500px;}
.yec{bottom:439.456500px;}
.y24{bottom:444.295521px;}
.y133{bottom:444.822000px;}
.y113{bottom:449.592000px;}
.y9d{bottom:452.488500px;}
.yeb{bottom:457.782000px;}
.ybf{bottom:460.630500px;}
.y132{bottom:468.073500px;}
.y9c{bottom:470.694000px;}
.yea{bottom:476.107500px;}
.ybe{bottom:482.125500px;}
.y131{bottom:488.397000px;}
.y112{bottom:489.162000px;}
.y9b{bottom:492.724500px;}
.ye9{bottom:494.433000px;}
.ybd{bottom:503.883000px;}
.y111{bottom:507.369000px;}
.ye8{bottom:512.758500px;}
.y9a{bottom:513.502500px;}
.yb{bottom:520.864502px;}
.y82{bottom:522.060000px;}
.ybc{bottom:525.639000px;}
.y130{bottom:527.967000px;}
.y110{bottom:529.279500px;}
.ye7{bottom:531.082500px;}
.y99{bottom:531.708000px;}
.ya{bottom:538.864499px;}
.y81{bottom:542.383500px;}
.y12f{bottom:546.292500px;}
.ybb{bottom:548.890500px;}
.ye6{bottom:549.408000px;}
.y10f{bottom:550.774500px;}
.y98{bottom:553.620000px;}
.y9{bottom:556.864499px;}
.y80{bottom:562.708500px;}
.y12e{bottom:564.618000px;}
.ye5{bottom:567.733500px;}
.y42{bottom:571.030522px;}
.y10e{bottom:572.269500px;}
.y97{bottom:575.377500px;}
.y12d{bottom:582.943500px;}
.y7f{bottom:583.032000px;}
.ye4{bottom:586.059000px;}
.yba{bottom:590.410500px;}
.y41{bottom:591.355522px;}
.y10d{bottom:594.027000px;}
.y96{bottom:598.627500px;}
.y7e{bottom:603.355500px;}
.ye3{bottom:604.384500px;}
.y12c{bottom:604.974000px;}
.y40{bottom:611.679022px;}
.yb9{bottom:613.399500px;}
.y10c{bottom:615.783000px;}
.y95{bottom:618.354000px;}
.ye2{bottom:622.710000px;}
.y7d{bottom:623.679000px;}
.y12b{bottom:625.297500px;}
.y3f{bottom:632.002522px;}
.yb8{bottom:634.894500px;}
.y10b{bottom:639.034500px;}
.ye1{bottom:641.034000px;}
.y7c{bottom:644.002500px;}
.y8{bottom:645.510000px;}
.y12a{bottom:647.071500px;}
.yb7{bottom:656.667000px;}
.ye0{bottom:659.359500px;}
.y94{bottom:659.640000px;}
.y7b{bottom:664.327500px;}
.y7{bottom:666.771000px;}
.y129{bottom:667.395000px;}
.yb6{bottom:678.162000px;}
.y10a{bottom:678.637500px;}
.y93{bottom:679.963500px;}
.ydf{bottom:682.885500px;}
.y7a{bottom:684.651000px;}
.y128{bottom:689.167500px;}
.y3e{bottom:692.974522px;}
.y109{bottom:696.843000px;}
.yb5{bottom:699.657000px;}
.y92{bottom:700.287000px;}
.yde{bottom:704.643000px;}
.y79{bottom:704.974500px;}
.y127{bottom:705.606000px;}
.y3d{bottom:713.298022px;}
.y50{bottom:717.984021px;}
.y108{bottom:718.755000px;}
.yb4{bottom:721.414500px;}
.y126{bottom:722.044500px;}
.y78{bottom:725.298000px;}
.y6{bottom:726.298500px;}
.ydd{bottom:726.399000px;}
.y3c{bottom:733.621522px;}
.y125{bottom:738.483000px;}
.y91{bottom:739.857000px;}
.y107{bottom:740.511000px;}
.yb3{bottom:743.170500px;}
.y77{bottom:745.621500px;}
.ydc{bottom:748.156500px;}
.y3{bottom:752.599495px;}
.y3b{bottom:753.945022px;}
.y124{bottom:754.921500px;}
.y4f{bottom:758.632521px;}
.y90{bottom:761.769000px;}
.y106{bottom:762.268500px;}
.y76{bottom:765.946500px;}
.yb2{bottom:766.422000px;}
.ydb{bottom:769.912500px;}
.y3a{bottom:774.268522px;}
.y123{bottom:776.739000px;}
.y105{bottom:785.520000px;}
.y54{bottom:786.269366px;}
.yda{bottom:791.670000px;}
.y39{bottom:794.593522px;}
.y122{bottom:797.064000px;}
.y8f{bottom:802.977000px;}
.yb1{bottom:806.008500px;}
.yd9{bottom:813.426000px;}
.y146{bottom:816.430500px;}
.y121{bottom:817.387500px;}
.y4e{bottom:819.603021px;}
.y8e{bottom:823.300500px;}
.yb0{bottom:824.214000px;}
.y104{bottom:824.929500px;}
.yd8{bottom:835.183500px;}
.y120{bottom:837.711000px;}
.y145{bottom:837.925500px;}
.y103{bottom:842.863500px;}
.y8d{bottom:843.064500px;}
.yaf{bottom:846.126000px;}
.y38{bottom:855.564022px;}
.yd7{bottom:856.939500px;}
.y144{bottom:859.420500px;}
.y102{bottom:861.012000px;}
.y4d{bottom:864.435021px;}
.y8c{bottom:866.053500px;}
.yae{bottom:867.882000px;}
.y23{bottom:867.889522px;}
.y37{bottom:875.887522px;}
.yd6{bottom:878.697000px;}
.y101{bottom:878.946000px;}
.y2{bottom:879.369000px;}
.y11f{bottom:879.853500px;}
.y143{bottom:882.409500px;}
.yad{bottom:889.639500px;}
.y36{bottom:896.212522px;}
.y100{bottom:897.271500px;}
.y11e{bottom:898.179000px;}
.yd5{bottom:901.947000px;}
.y142{bottom:902.016000px;}
.y22{bottom:904.723522px;}
.yac{bottom:912.891000px;}
.yff{bottom:915.595500px;}
.y11d{bottom:916.503000px;}
.y35{bottom:916.536022px;}
.y141{bottom:920.416500px;}
.yd4{bottom:922.272000px;}
.yfe{bottom:933.921000px;}
.y11c{bottom:934.710000px;}
.y34{bottom:936.859522px;}
.y140{bottom:938.815500px;}
.y8b{bottom:946.125000px;}
.yab{bottom:952.198500px;}
.yfd{bottom:952.246500px;}
.y11b{bottom:952.915500px;}
.y33{bottom:957.183022px;}
.y13f{bottom:957.216000px;}
.yd3{bottom:964.086000px;}
.y21{bottom:965.424022px;}
.y1{bottom:966.726000px;}
.yaa{bottom:970.404000px;}
.yfc{bottom:970.572000px;}
.y11a{bottom:971.121000px;}
.y13e{bottom:975.616500px;}
.y32{bottom:977.506522px;}
.y8a{bottom:979.897500px;}
.yd2{bottom:987.075000px;}
.yfb{bottom:988.897500px;}
.y119{bottom:989.521500px;}
.ya9{bottom:992.436000px;}
.y13d{bottom:993.942000px;}
.y31{bottom:997.831522px;}
.y118{bottom:1007.845500px;}
.yd1{bottom:1008.570000px;}
.yfa{bottom:1010.928000px;}
.y13c{bottom:1012.266000px;}
.ya8{bottom:1014.192000px;}
.y89{bottom:1018.155000px;}
.y30{bottom:1018.155022px;}
.yd0{bottom:1030.342500px;}
.y13b{bottom:1030.591500px;}
.yf9{bottom:1031.253000px;}
.ya7{bottom:1037.443500px;}
.y88{bottom:1038.478500px;}
.y2f{bottom:1038.478522px;}
.ycf{bottom:1051.837500px;}
.y13a{bottom:1052.623500px;}
.yf8{bottom:1053.009000px;}
.y87{bottom:1058.802000px;}
.yce{bottom:1073.332500px;}
.y139{bottom:1074.118500px;}
.yf7{bottom:1074.766500px;}
.ya6{bottom:1076.751000px;}
.y86{bottom:1079.125500px;}
.ya5{bottom:1095.076500px;}
.ycd{bottom:1095.090000px;}
.y138{bottom:1095.613500px;}
.yf6{bottom:1096.522500px;}
.y85{bottom:1099.450500px;}
.y2e{bottom:1099.450504px;}
.y53{bottom:1101.406500px;}
.ycc{bottom:1116.846000px;}
.ya4{bottom:1117.108500px;}
.yf5{bottom:1118.280000px;}
.y84{bottom:1119.774000px;}
.y2d{bottom:1119.774004px;}
.y4c{bottom:1130.202010px;}
.y52{bottom:1140.097500px;}
.y2c{bottom:1140.097504px;}
.y2b{bottom:1150.595091px;}
.y2a{bottom:1164.117441px;}
.y29{bottom:1177.648041px;}
.y51{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h19{height:32.744217px;}
.hc{height:35.243782px;}
.h18{height:35.853323px;}
.h15{height:36.809719px;}
.hf{height:38.426904px;}
.h17{height:38.549493px;}
.h16{height:38.593542px;}
.h1c{height:39.757018px;}
.h1b{height:43.576412px;}
.h6{height:45.900000px;}
.h10{height:47.716403px;}
.h3{height:48.195000px;}
.h1a{height:48.370949px;}
.h12{height:48.436404px;}
.he{height:48.460256px;}
.h2{height:55.080000px;}
.h13{height:63.438896px;}
.hb{height:66.082368px;}
.h5{height:78.030000px;}
.h11{height:109.608556px;}
.h4{height:119.055004px;}
.ha{height:132.164294px;}
.hd{height:140.975129px;}
.h14{height:311.308792px;}
.h9{height:543.344577px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:626.017215px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:5.112213px;}
.x6{left:85.039500px;}
.xc{left:98.708130px;}
.xe{left:99.710778px;}
.x1{left:102.045000px;}
.xd{left:103.785381px;}
.x2{left:106.297500px;}
.x8{left:133.938000px;}
.xf{left:139.020000px;}
.x12{left:155.197500px;}
.x10{left:160.905000px;}
.x4{left:203.484001px;}
.x7{left:220.735381px;}
.x16{left:322.939500px;}
.x15{left:325.669500px;}
.x14{left:333.261000px;}
.x17{left:337.284000px;}
.xb{left:385.340753px;}
.x9{left:435.403813px;}
.x3{left:454.959000px;}
.x5{left:552.756000px;}
.x11{left:589.674000px;}
.x13{left:596.800500px;}
.x19{left:720.688500px;}
.x18{left:723.418500px;}
.x1a{left:724.596000px;}
.x1b{left:728.476500px;}
.x1c{left:732.430500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.718536pt;}
.ls2{letter-spacing:32.607004pt;}
.ls3{letter-spacing:33.007004pt;}
.ls4{letter-spacing:33.363365pt;}
.ws5{word-spacing:-42.677229pt;}
.ws4{word-spacing:-42.507200pt;}
.ws1{word-spacing:-40.009935pt;}
.ws44{word-spacing:-33.803665pt;}
.ws10{word-spacing:-33.181665pt;}
.ws71{word-spacing:-27.783885pt;}
.ws76{word-spacing:-23.680020pt;}
.wsd{word-spacing:-21.643654pt;}
.ws6c{word-spacing:-20.072744pt;}
.ws2{word-spacing:-19.925333pt;}
.ws5e{word-spacing:-19.765798pt;}
.ws39{word-spacing:-19.490925pt;}
.ws3a{word-spacing:-19.316380pt;}
.ws36{word-spacing:-19.258198pt;}
.ws14{word-spacing:-19.204780pt;}
.ws4b{word-spacing:-18.850925pt;}
.ws6f{word-spacing:-17.629106pt;}
.ws37{word-spacing:-17.163651pt;}
.ws33{word-spacing:-16.930923pt;}
.ws13{word-spacing:-16.872741pt;}
.ws35{word-spacing:-16.756378pt;}
.ws38{word-spacing:-16.000013pt;}
.ws28{word-spacing:-15.883650pt;}
.ws6{word-spacing:-14.670314pt;}
.ws70{word-spacing:-14.545467pt;}
.ws26{word-spacing:-14.429103pt;}
.ws25{word-spacing:-14.370921pt;}
.ws2c{word-spacing:-13.265466pt;}
.ws16{word-spacing:-10.817336pt;}
.ws3{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.199066pt;}
.ws21{word-spacing:-9.622600pt;}
.ws31{word-spacing:-8.669098pt;}
.ws29{word-spacing:-8.436371pt;}
.ws27{word-spacing:-8.378189pt;}
.wsa{word-spacing:-7.680006pt;}
.ws11{word-spacing:-7.621825pt;}
.ws15{word-spacing:-7.505461pt;}
.wsb{word-spacing:-7.156370pt;}
.ws12{word-spacing:-7.098765pt;}
.wsc{word-spacing:-7.098188pt;}
.ws24{word-spacing:-6.981824pt;}
.ws2e{word-spacing:-6.690915pt;}
.ws30{word-spacing:-6.574551pt;}
.ws3c{word-spacing:-6.535466pt;}
.ws41{word-spacing:-6.482332pt;}
.ws2a{word-spacing:-6.341823pt;}
.ws8{word-spacing:-5.818187pt;}
.ws2d{word-spacing:-5.760005pt;}
.ws2b{word-spacing:-5.721782pt;}
.wsf{word-spacing:-5.410914pt;}
.ws9{word-spacing:-4.945459pt;}
.ws32{word-spacing:-2.967275pt;}
.ws2f{word-spacing:-1.047274pt;}
.ws75{word-spacing:-0.929043pt;}
.ws20{word-spacing:-0.042578pt;}
.ws0{word-spacing:0.000000pt;}
.ws6b{word-spacing:2.733018pt;}
.wse{word-spacing:3.432730pt;}
.ws69{word-spacing:3.515078pt;}
.ws4f{word-spacing:3.516047pt;}
.ws63{word-spacing:3.517988pt;}
.ws5f{word-spacing:3.519442pt;}
.ws59{word-spacing:3.519929pt;}
.ws6e{word-spacing:5.190229pt;}
.ws34{word-spacing:6.041580pt;}
.ws1b{word-spacing:10.909244pt;}
.ws23{word-spacing:11.095727pt;}
.ws19{word-spacing:11.142348pt;}
.ws18{word-spacing:11.188969pt;}
.ws1e{word-spacing:11.608555pt;}
.ws1a{word-spacing:11.655176pt;}
.ws22{word-spacing:26.221220pt;}
.ws17{word-spacing:26.306568pt;}
.ws1f{word-spacing:41.673673pt;}
.ws77{word-spacing:43.941455pt;}
.ws62{word-spacing:43.942196pt;}
.ws58{word-spacing:43.942401pt;}
.ws7b{word-spacing:43.942719pt;}
.ws74{word-spacing:43.942790pt;}
.ws45{word-spacing:43.943202pt;}
.ws3d{word-spacing:43.944799pt;}
.ws68{word-spacing:43.945004pt;}
.ws6d{word-spacing:43.945630pt;}
.ws5c{word-spacing:43.945863pt;}
.ws4e{word-spacing:43.946304pt;}
.ws4a{word-spacing:43.946447pt;}
.ws49{word-spacing:43.994887pt;}
.ws40{word-spacing:43.996355pt;}
.ws48{word-spacing:43.997149pt;}
.ws43{word-spacing:43.997244pt;}
.ws6a{word-spacing:43.997510pt;}
.ws55{word-spacing:43.997634pt;}
.ws3b{word-spacing:43.998468pt;}
.ws56{word-spacing:45.538516pt;}
.ws5d{word-spacing:45.539879pt;}
.ws57{word-spacing:46.601194pt;}
.ws54{word-spacing:47.185666pt;}
.ws5b{word-spacing:47.187029pt;}
.ws47{word-spacing:53.010813pt;}
.ws3f{word-spacing:53.012671pt;}
.ws65{word-spacing:53.014041pt;}
.ws79{word-spacing:56.163508pt;}
.ws7a{word-spacing:59.882879pt;}
.ws46{word-spacing:63.774458pt;}
.ws78{word-spacing:78.692268pt;}
.ws42{word-spacing:84.379998pt;}
.ws73{word-spacing:88.769411pt;}
.ws72{word-spacing:90.190029pt;}
.ws5a{word-spacing:90.566744pt;}
.ws3e{word-spacing:112.183629pt;}
.ws64{word-spacing:202.425074pt;}
.ws1c{word-spacing:217.686111pt;}
.ws66{word-spacing:220.345089pt;}
.ws1d{word-spacing:223.467059pt;}
.ws67{word-spacing:239.719651pt;}
.ws60{word-spacing:254.962813pt;}
.ws61{word-spacing:265.726458pt;}
.ws4d{word-spacing:438.875004pt;}
.ws4c{word-spacing:447.718648pt;}
.ws52{word-spacing:1072.298461pt;}
.ws50{word-spacing:1114.247587pt;}
.ws51{word-spacing:1127.745780pt;}
.ws53{word-spacing:1143.105793pt;}
._6{margin-left:-20.764769pt;}
._e{margin-left:-15.518897pt;}
._5{margin-left:-12.922189pt;}
._4{margin-left:-10.350499pt;}
._7{margin-left:-8.033858pt;}
._b{margin-left:-6.563400pt;}
._c{margin-left:-5.666752pt;}
._8{margin-left:-4.189094pt;}
._1{margin-left:-3.188043pt;}
._0{margin-left:-1.594021pt;}
._a{width:0.977132pt;}
._2{width:2.231630pt;}
._10{width:10.778300pt;}
._d{width:13.230395pt;}
._16{width:14.134802pt;}
._9{width:17.605186pt;}
._14{width:29.093316pt;}
._12{width:51.708182pt;}
._11{width:63.096735pt;}
._15{width:64.425382pt;}
._4d{width:65.522742pt;}
._3c{width:67.577946pt;}
._57{width:74.735150pt;}
._1a{width:86.873209pt;}
._46{width:92.131741pt;}
._48{width:93.231540pt;}
._2d{width:95.484983pt;}
._1e{width:96.440038pt;}
._1f{width:97.450227pt;}
._22{width:100.643603pt;}
._18{width:104.140463pt;}
._19{width:112.182321pt;}
._52{width:113.239654pt;}
._51{width:115.152486pt;}
._50{width:117.017498pt;}
._4f{width:119.312896pt;}
._47{width:125.508646pt;}
._58{width:127.284544pt;}
._2f{width:128.358382pt;}
._1b{width:129.636881pt;}
._45{width:144.288639pt;}
._17{width:147.390270pt;}
._40{width:148.584733pt;}
._3f{width:151.195029pt;}
._4e{width:155.188326pt;}
._3e{width:157.562628pt;}
._3d{width:158.572177pt;}
._59{width:171.786341pt;}
._56{width:177.099733pt;}
._42{width:213.186398pt;}
._44{width:214.575777pt;}
._20{width:233.631021pt;}
._32{width:304.999166pt;}
._21{width:316.109797pt;}
._1c{width:362.131620pt;}
._2e{width:385.312616pt;}
._53{width:444.193277pt;}
._25{width:457.663279pt;}
._54{width:463.544728pt;}
._43{width:485.761458pt;}
._2b{width:515.520620pt;}
._4c{width:520.988114pt;}
._24{width:633.954335pt;}
._35{width:673.755837pt;}
._33{width:709.770412pt;}
._34{width:717.450419pt;}
._36{width:728.679519pt;}
._39{width:738.066748pt;}
._38{width:766.750408pt;}
._4b{width:796.653798pt;}
._31{width:807.632312pt;}
._2a{width:817.054124pt;}
._2c{width:834.334138pt;}
._3a{width:869.266857pt;}
._29{width:974.284638pt;}
._3b{width:1003.411131pt;}
._37{width:1022.401530pt;}
._26{width:1065.942735pt;}
._f{width:1230.991665pt;}
._23{width:1290.653064pt;}
._41{width:1349.994905pt;}
._28{width:1430.522271pt;}
._4a{width:1447.743957pt;}
._27{width:1535.540541pt;}
._3{width:1594.442173pt;}
._49{width:1596.480639pt;}
._30{width:1600.027306pt;}
._13{width:1601.248639pt;}
._55{width:1603.520639pt;}
._1d{width:1606.896639pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.507200pt;}
.fs11{font-size:42.577877pt;}
.fs10{font-size:46.620702pt;}
.fs13{font-size:47.820800pt;}
.fsf{font-size:47.864320pt;}
.fsb{font-size:48.108800pt;}
.fs12{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.181867pt;}
.fsa{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fsd{font-size:132.197867pt;}
.fs6{font-size:159.402133pt;}
.fs9{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:19.537466pt;}
.y65{bottom:31.503546pt;}
.y73{bottom:32.072171pt;}
.y64{bottom:43.469626pt;}
.y83{bottom:50.180000pt;}
.y63{bottom:55.435706pt;}
.y72{bottom:56.559867pt;}
.y5{bottom:59.133337pt;}
.y5c{bottom:69.356054pt;}
.y71{bottom:71.036687pt;}
.y62{bottom:72.530262pt;}
.y5b{bottom:81.322134pt;}
.y61{bottom:84.496342pt;}
.y70{bottom:85.513507pt;}
.y4{bottom:86.333337pt;}
.y5a{bottom:93.288214pt;}
.y60{bottom:96.462422pt;}
.y59{bottom:105.254294pt;}
.y5f{bottom:111.847540pt;}
.y4b{bottom:113.386686pt;}
.y6f{bottom:122.779305pt;}
.y20{bottom:123.790666pt;}
.y5e{bottom:123.813620pt;}
.y4a{bottom:131.452019pt;}
.y5d{bottom:135.779700pt;}
.y6e{bottom:137.138592pt;}
.y28{bottom:137.393353pt;}
.y49{bottom:149.517353pt;}
.y6d{bottom:152.096196pt;}
.y58{bottom:156.293083pt;}
.y6c{bottom:167.107210pt;}
.y48{bottom:167.582686pt;}
.ycb{bottom:167.982667pt;}
.y57{bottom:168.259163pt;}
.y17{bottom:175.052000pt;}
.y6b{bottom:181.616084pt;}
.yca{bottom:184.165333pt;}
.y47{bottom:185.648019pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y6a{bottom:196.092907pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y56{bottom:200.738680pt;}
.yc9{bottom:203.642667pt;}
.y46{bottom:203.714686pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y69{bottom:210.569732pt;}
.y55{bottom:212.704760pt;}
.y45{bottom:221.780019pt;}
.yc8{bottom:222.749333pt;}
.y68{bottom:225.035879pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y75{bottom:231.508600pt;}
.y44{bottom:239.845353pt;}
.yc7{bottom:241.856000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y74{bottom:243.474680pt;}
.y27{bottom:246.562687pt;}
.y67{bottom:249.601234pt;}
.yf4{bottom:251.293333pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y43{bottom:257.910686pt;}
.yc6{bottom:261.196000pt;}
.yf3{bottom:267.582667pt;}
.ya3{bottom:268.136000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yc5{bottom:280.534667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yf2{bottom:287.165333pt;}
.ya2{bottom:288.570667pt;}
.y26{bottom:289.070687pt;}
.yc4{bottom:301.202667pt;}
.ya1{bottom:307.677333pt;}
.yf1{bottom:309.182667pt;}
.ye{bottom:309.452000pt;}
.yc3{bottom:319.268000pt;}
.y137{bottom:320.846667pt;}
.y117{bottom:323.758667pt;}
.yf0{bottom:325.472000pt;}
.ya0{bottom:327.017333pt;}
.y25{bottom:331.577353pt;}
.y136{bottom:337.136000pt;}
.y116{bottom:340.048000pt;}
.yef{bottom:341.761333pt;}
.yd{bottom:343.809333pt;}
.y9f{bottom:346.356000pt;}
.yc2{bottom:354.470667pt;}
.y135{bottom:356.718667pt;}
.yee{bottom:358.049333pt;}
.y115{bottom:359.630667pt;}
.yc{bottom:362.706666pt;}
.y9e{bottom:367.024000pt;}
.yc1{bottom:370.760000pt;}
.yed{bottom:374.338667pt;}
.y134{bottom:376.058667pt;}
.y114{bottom:378.970667pt;}
.yc0{bottom:390.342667pt;}
.yec{bottom:390.628000pt;}
.y24{bottom:394.929352pt;}
.y133{bottom:395.397333pt;}
.y113{bottom:399.637333pt;}
.y9d{bottom:402.212000pt;}
.yeb{bottom:406.917333pt;}
.ybf{bottom:409.449333pt;}
.y132{bottom:416.065333pt;}
.y9c{bottom:418.394667pt;}
.yea{bottom:423.206667pt;}
.ybe{bottom:428.556000pt;}
.y131{bottom:434.130667pt;}
.y112{bottom:434.810667pt;}
.y9b{bottom:437.977333pt;}
.ye9{bottom:439.496000pt;}
.ybd{bottom:447.896000pt;}
.y111{bottom:450.994667pt;}
.ye8{bottom:455.785333pt;}
.y9a{bottom:456.446667pt;}
.yb{bottom:462.990669pt;}
.y82{bottom:464.053333pt;}
.ybc{bottom:467.234667pt;}
.y130{bottom:469.304000pt;}
.y110{bottom:470.470667pt;}
.ye7{bottom:472.073333pt;}
.y99{bottom:472.629333pt;}
.ya{bottom:478.990666pt;}
.y81{bottom:482.118667pt;}
.y12f{bottom:485.593333pt;}
.ybb{bottom:487.902667pt;}
.ye6{bottom:488.362667pt;}
.y10f{bottom:489.577333pt;}
.y98{bottom:492.106667pt;}
.y9{bottom:494.990666pt;}
.y80{bottom:500.185333pt;}
.y12e{bottom:501.882667pt;}
.ye5{bottom:504.652000pt;}
.y42{bottom:507.582686pt;}
.y10e{bottom:508.684000pt;}
.y97{bottom:511.446667pt;}
.y12d{bottom:518.172000pt;}
.y7f{bottom:518.250667pt;}
.ye4{bottom:520.941333pt;}
.yba{bottom:524.809333pt;}
.y41{bottom:525.649353pt;}
.y10d{bottom:528.024000pt;}
.y96{bottom:532.113333pt;}
.y7e{bottom:536.316000pt;}
.ye3{bottom:537.230667pt;}
.y12c{bottom:537.754667pt;}
.y40{bottom:543.714686pt;}
.yb9{bottom:545.244000pt;}
.y10c{bottom:547.362667pt;}
.y95{bottom:549.648000pt;}
.ye2{bottom:553.520000pt;}
.y7d{bottom:554.381333pt;}
.y12b{bottom:555.820000pt;}
.y3f{bottom:561.780019pt;}
.yb8{bottom:564.350667pt;}
.y10b{bottom:568.030667pt;}
.ye1{bottom:569.808000pt;}
.y7c{bottom:572.446667pt;}
.y8{bottom:573.786667pt;}
.y12a{bottom:575.174667pt;}
.yb7{bottom:583.704000pt;}
.ye0{bottom:586.097333pt;}
.y94{bottom:586.346667pt;}
.y7b{bottom:590.513333pt;}
.y7{bottom:592.685334pt;}
.y129{bottom:593.240000pt;}
.yb6{bottom:602.810667pt;}
.y10a{bottom:603.233333pt;}
.y93{bottom:604.412000pt;}
.ydf{bottom:607.009333pt;}
.y7a{bottom:608.578667pt;}
.y128{bottom:612.593333pt;}
.y3e{bottom:615.977353pt;}
.y109{bottom:619.416000pt;}
.yb5{bottom:621.917333pt;}
.y92{bottom:622.477333pt;}
.yde{bottom:626.349333pt;}
.y79{bottom:626.644000pt;}
.y127{bottom:627.205333pt;}
.y3d{bottom:634.042686pt;}
.y50{bottom:638.208019pt;}
.y108{bottom:638.893333pt;}
.yb4{bottom:641.257333pt;}
.y126{bottom:641.817333pt;}
.y78{bottom:644.709333pt;}
.y6{bottom:645.598667pt;}
.ydd{bottom:645.688000pt;}
.y3c{bottom:652.108019pt;}
.y125{bottom:656.429333pt;}
.y91{bottom:657.650667pt;}
.y107{bottom:658.232000pt;}
.yb3{bottom:660.596000pt;}
.y77{bottom:662.774667pt;}
.ydc{bottom:665.028000pt;}
.y3{bottom:668.977329pt;}
.y3b{bottom:670.173353pt;}
.y124{bottom:671.041333pt;}
.y4f{bottom:674.340019pt;}
.y90{bottom:677.128000pt;}
.y106{bottom:677.572000pt;}
.y76{bottom:680.841333pt;}
.yb2{bottom:681.264000pt;}
.ydb{bottom:684.366667pt;}
.y3a{bottom:688.238686pt;}
.y123{bottom:690.434667pt;}
.y105{bottom:698.240000pt;}
.y54{bottom:698.906103pt;}
.yda{bottom:703.706667pt;}
.y39{bottom:706.305353pt;}
.y122{bottom:708.501333pt;}
.y8f{bottom:713.757333pt;}
.yb1{bottom:716.452000pt;}
.yd9{bottom:723.045333pt;}
.y146{bottom:725.716000pt;}
.y121{bottom:726.566667pt;}
.y4e{bottom:728.536019pt;}
.y8e{bottom:731.822667pt;}
.yb0{bottom:732.634667pt;}
.y104{bottom:733.270667pt;}
.yd8{bottom:742.385333pt;}
.y120{bottom:744.632000pt;}
.y145{bottom:744.822667pt;}
.y103{bottom:749.212000pt;}
.y8d{bottom:749.390667pt;}
.yaf{bottom:752.112000pt;}
.y38{bottom:760.501353pt;}
.yd7{bottom:761.724000pt;}
.y144{bottom:763.929333pt;}
.y102{bottom:765.344000pt;}
.y4d{bottom:768.386685pt;}
.y8c{bottom:769.825333pt;}
.yae{bottom:771.450667pt;}
.y23{bottom:771.457353pt;}
.y37{bottom:778.566686pt;}
.yd6{bottom:781.064000pt;}
.y101{bottom:781.285333pt;}
.y2{bottom:781.661334pt;}
.y11f{bottom:782.092000pt;}
.y143{bottom:784.364000pt;}
.yad{bottom:790.790667pt;}
.y36{bottom:796.633353pt;}
.y100{bottom:797.574667pt;}
.y11e{bottom:798.381333pt;}
.yd5{bottom:801.730667pt;}
.y142{bottom:801.792000pt;}
.y22{bottom:804.198687pt;}
.yac{bottom:811.458667pt;}
.yff{bottom:813.862667pt;}
.y11d{bottom:814.669333pt;}
.y35{bottom:814.698686pt;}
.y141{bottom:818.148000pt;}
.yd4{bottom:819.797333pt;}
.yfe{bottom:830.152000pt;}
.y11c{bottom:830.853333pt;}
.y34{bottom:832.764019pt;}
.y140{bottom:834.502667pt;}
.y8b{bottom:841.000000pt;}
.yab{bottom:846.398667pt;}
.yfd{bottom:846.441333pt;}
.y11b{bottom:847.036000pt;}
.y33{bottom:850.829353pt;}
.y13f{bottom:850.858667pt;}
.yd3{bottom:856.965333pt;}
.y21{bottom:858.154687pt;}
.y1{bottom:859.312000pt;}
.yaa{bottom:862.581333pt;}
.yfc{bottom:862.730667pt;}
.y11a{bottom:863.218667pt;}
.y13e{bottom:867.214667pt;}
.y32{bottom:868.894686pt;}
.y8a{bottom:871.020000pt;}
.yd2{bottom:877.400000pt;}
.yfb{bottom:879.020000pt;}
.y119{bottom:879.574667pt;}
.ya9{bottom:882.165333pt;}
.y13d{bottom:883.504000pt;}
.y31{bottom:886.961353pt;}
.y118{bottom:895.862667pt;}
.yd1{bottom:896.506667pt;}
.yfa{bottom:898.602667pt;}
.y13c{bottom:899.792000pt;}
.ya8{bottom:901.504000pt;}
.y89{bottom:905.026667pt;}
.y30{bottom:905.026686pt;}
.yd0{bottom:915.860000pt;}
.y13b{bottom:916.081333pt;}
.yf9{bottom:916.669333pt;}
.ya7{bottom:922.172000pt;}
.y88{bottom:923.092000pt;}
.y2f{bottom:923.092019pt;}
.ycf{bottom:934.966667pt;}
.y13a{bottom:935.665333pt;}
.yf8{bottom:936.008000pt;}
.y87{bottom:941.157333pt;}
.yce{bottom:954.073333pt;}
.y139{bottom:954.772000pt;}
.yf7{bottom:955.348000pt;}
.ya6{bottom:957.112000pt;}
.y86{bottom:959.222667pt;}
.ya5{bottom:973.401333pt;}
.ycd{bottom:973.413333pt;}
.y138{bottom:973.878667pt;}
.yf6{bottom:974.686667pt;}
.y85{bottom:977.289333pt;}
.y2e{bottom:977.289337pt;}
.y53{bottom:979.028000pt;}
.ycc{bottom:992.752000pt;}
.ya4{bottom:992.985333pt;}
.yf5{bottom:994.026667pt;}
.y84{bottom:995.354667pt;}
.y2d{bottom:995.354670pt;}
.y4c{bottom:1004.624009pt;}
.y52{bottom:1013.420000pt;}
.y2c{bottom:1013.420003pt;}
.y2b{bottom:1022.751192pt;}
.y2a{bottom:1034.771059pt;}
.y29{bottom:1046.798259pt;}
.y51{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h19{height:29.105970pt;}
.hc{height:31.327806pt;}
.h18{height:31.869621pt;}
.h15{height:32.719750pt;}
.hf{height:34.157248pt;}
.h17{height:34.266216pt;}
.h16{height:34.305370pt;}
.h1c{height:35.339571pt;}
.h1b{height:38.734589pt;}
.h6{height:40.800000pt;}
.h10{height:42.414581pt;}
.h3{height:42.840000pt;}
.h1a{height:42.996399pt;}
.h12{height:43.054581pt;}
.he{height:43.075783pt;}
.h2{height:48.960000pt;}
.h13{height:56.390130pt;}
.hb{height:58.739883pt;}
.h5{height:69.360000pt;}
.h11{height:97.429828pt;}
.h4{height:105.826671pt;}
.ha{height:117.479372pt;}
.hd{height:125.311226pt;}
.h14{height:276.718926pt;}
.h9{height:482.972957pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:556.459746pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:4.544189pt;}
.x6{left:75.590667pt;}
.xc{left:87.740560pt;}
.xe{left:88.631802pt;}
.x1{left:90.706667pt;}
.xd{left:92.253672pt;}
.x2{left:94.486667pt;}
.x8{left:119.056000pt;}
.xf{left:123.573333pt;}
.x12{left:137.953333pt;}
.x10{left:143.026667pt;}
.x4{left:180.874667pt;}
.x7{left:196.209228pt;}
.x16{left:287.057333pt;}
.x15{left:289.484000pt;}
.x14{left:296.232000pt;}
.x17{left:299.808000pt;}
.xb{left:342.525114pt;}
.x9{left:387.025612pt;}
.x3{left:404.408000pt;}
.x5{left:491.338667pt;}
.x11{left:524.154667pt;}
.x13{left:530.489333pt;}
.x19{left:640.612000pt;}
.x18{left:643.038667pt;}
.x1a{left:644.085333pt;}
.x1b{left:647.534667pt;}
.x1c{left:651.049333pt;}
}




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